123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>服务器私有配置</title>
- <!-- 所有的 css js 资源 -->
- <link rel="stylesheet" href="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">
- <link rel="stylesheet" href="../../static/sa.css">
- <script src="https://unpkg.com/vue@2.6.10/dist/vue.min.js"></script>
- <script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
- <script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>
- <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>
- <script src="https://www.layuicdn.com/layer-v3.1.1/layer.js"></script>
- <script src="../../static/sa.js"></script>
- <script src="../../static/kj/upload-util.js"></script>
- <style type="text/css">
- html,body,.vue-box{height: 100%; overflow: hidden;}
- /* .vue-box{padding: 0px;} */
- .c-panel{height: calc(100% - 4em); position: relative;}
- .c-panel .c-label{width: 10em;}
- .c-panel .el-input{width: 500px;}
- .c-panel .el-textarea{width: 500px;}
- .logo-img{
- width: 35px;
- height: 35px;
- border-radius: 2px;
- vertical-align: middle;
- margin-right: 0.5em;
- cursor: pointer;
- }
- .s-tab{height: 100%; }
- .el-tabs__content{height: calc(100% - 130px); overflow: auto;}
-
- /* 让头像样式小一点 */
- .c-item-mline{width: 600px;}
- .c-item-mline .image-box-2{width: 60px; height: 100px;}
- .c-item-mline .image-box-2 img{width: 60px; height: 60px;}
- .c-item-mline .image-box-2.up_img{height: 60px;}
- .c-item-mline .image-box-2.up_img img{margin: 15px; width: 30px; height: 30px;}
- </style>
- </head>
- <body>
- <div class="vue-box" style="display: none;" :style="'display: block;'">
- <div class="c-panel" v-if="m != null">
- <!-- 提示 -->
- <el-alert style="margin: 10px 0;"
- type="blue" show-icon
- title="Server-Config 非对外开放,用来配置一些敏感信息。"
- >
- </el-alert>
- <!-- tab卡片 -->
- <el-tabs class="s-tab" v-model="activeTab">
- <!-- ---------------------------------- 系统参数 ---------------------------------- -->
- <el-tab-pane label="系统参数" name="tab1">
- <div class="c-item br">
- <label class="c-label">预留信息:</label>
- <el-input v-model="m.reserveInfo"></el-input>
- </div>
- <div style="height: 1px;"></div>
- <sa-item type="img-list" name="新用户默认头像" v-model="m.userDefaultAvatar" br></sa-item>
- <sa-item name="" style="margin-top: -20px;" br>
- <span style="color: #999;">系统将从以上图片中随机选择一张作为新用户头像</span>
- </sa-item>
- </el-tab-pane>
- </el-tabs>
-
- <!-- ---------------------------------- 其它配置 ---------------------------------- -->
- <el-tab-pane label="其它配置" name="tab2">
- <br>
- <span>其它配置</span>
- </el-tab-pane>
- <!-- 确定按钮 -->
- <div style="position: absolute; bottom: 0px; width: calc(100% - 3em); line-height: 80px; background-color: #FFF;">
- <hr style="height: 2px;">
- <div class="c-item">
- <label class="c-label"></label>
- <el-button type="primary" icon="el-icon-check" @click="ok">保存修改</el-button>
- <el-button type="primary" icon="el-icon-refresh-right" @click="f5">重置</el-button>
- </div>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- // 创建一个默认的配置对象
- function create_m() {
- return {
- reserveInfo: '预留信息', // 预留信息
-
- userDefaultAvatar: '', // 新用户默认头像
- }
- }
- </script>
- <script>
- var app = new Vue({
- components: {
- "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
- },
- el: '.vue-box',
- data: {
- sa: sa, // 超级对象
- m: null, //
- activeTab: 'tab1'
- },
- methods: {
- // 初始化配置
- init: function(str) {
- // 获取
- var cfg = sa.JSONParse(str, {}); // 用户配置
- var default_cfg = create_m(); // 默认配置
- // 遍历
- for (var key in default_cfg) {
- if (cfg[key] !== undefined && cfg[key] !== null) {
- default_cfg[key] = cfg[key];
- }
- }
- // 赋值
- this.m = default_cfg;
- },
- // 刷新
- f5: function() {
- sa.ajax('/SpCfg/getCfg', {
- cfgName: 'server_cfg'
- }, function(res) {
- this.init(res.data);
- }.bind(this));
- },
- // 提交
- ok: function() {
- sa.ajax('/SpCfg/updateCfg', {
- cfgName: 'server_cfg',
- cfgValue: JSON.stringify(this.m)
- }, function(res) {
- sa.ok2('保存成功');
- }.bind(this));
- }
- },
- created: function() {
- this.f5();
- }
- })
- </script>
- </body>
- </html>
|