2022-01-12 界面异常处理

This commit is contained in:
Jackie
2022-01-12 17:03:44 +08:00
parent 589b9c1f30
commit 2fb79c9d87
4 changed files with 139 additions and 61 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/.idea/

Binary file not shown.

View File

@ -1,6 +1,6 @@
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<html lang="en">
<head>
<meta charset="UTF-8">
<title>授权中心</title>
@ -19,36 +19,45 @@
<div class="logo-image"></div>
</div>
</div>
<div class="card-main">
<div class="main">
<div class="top">
<div class="labe">授权企业详情</div>
</div>
<div class="company">
<div class="company-det">
<div class="company-lint">
<div class="company-name">
<div class="company-logo">
<img src="http://www.crtech.cn/images/logo.png">
<img src="themes/img/logo.png">
</div>
<div style="margin-left: 20px;">{{single.company.name}}</div>
<div style="margin-left: 20px;">{{companyName}}</div>
</div>
<div style="margin: 10px;">
<div class="address">地址:{{single.company.address}}</div>
<div class="des">简介:{{single.company.introduce}}</div>
<div class="address">地址:{{companyAddress}}</div>
<div class="des">简介:{{companyIntroduce}}</div>
<div class="des">授权码:<span style="color: green">已生成</span> <span><el-link
type="primary" :underline="false"
style=" font-size: 12px;margin-left: 8px;" @click="dialogCodeVisible = true">查看</el-link></span></div>
style=" font-size: 12px;margin-left: 8px;"
@click="dialogCodeVisible = true">查看</el-link></span></div>
<div class="des">授权文件:<span style="color: green">正常</span>
<span>
<el-link type="primary" :underline="false" style=" font-size: 12px;margin-left: 8px;" @click="dialogTableVisible = true">更换授权文件</el-link></span></div>
<el-link type="primary" :underline="false"
style=" font-size: 12px;margin-left: 8px;"
@click="dialogTableVisible = true">更换授权文件</el-link>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card-main">
<div class="main">
<div class="top">
@ -56,36 +65,43 @@
</div>
<div class="pubg">
<div class="applist">
<div class="app" v-for="(item,i) in single.applist">
<div class="app" v-for="(item,i) in single.applist" @click="showDetail(item)">
<div class="app-det">
<img :src="item.logo ? item.logo : 'themes/img/mk.png'">
</div>
<div class="app-name">{{item.name}}</div>
<div class="app-des">版本:{{item.version}}</div>
<div class="app-license">{{item.grade == 'custom' ? '定制授权' : item.gradeName}}</div>
<div class="app-time" style="color: green" v-if="new Date().getTime() < new Date(item.expiryTime).getTime()"> {{item.expiryTime | dateFilter('YYYY-MM-DD')}}到期</div>
<div class="app-time" style="color: green"
v-if="new Date().getTime() < new Date(item.expiryTime).getTime()"> {{item.expiryTime |
dateFilter('YYYY-MM-DD')}}到期
</div>
<div v-else style="color: red">已过期</div>
</div>
</div>
</div>
</div>
</div>
<el-dialog title="授权码" :visible.sync="dialogCodeVisible">
<div slot="header" class="clearfix">
<span>本机授权码</span>
<el-button style="float: right; padding: 3px 0;" icon="el-icon-document-copy" @click="copy()" type="text">复制授权码</el-button>
</div>
<div class="demo-input-suffix">
<el-input type="textarea" ref="copy" autosize="true" v-model="single.code" resize="none" readonly="true"></el-input>
<el-button style="float: right; margin-top: -25px" icon="el-icon-document-copy" @click="copy()" type="text">
复制授权码
</el-button>
<el-input type="textarea" ref="copy" autosize="true" v-model="single.code" resize="none"
readonly="true">
</el-input>
</div>
</el-dialog>
<el-dialog title="授权文件修改" :visible.sync="dialogTableVisible">
<div slot="header">
<span>上传授权文件</span>
</div>
<span class="tip"></span>
<div align="center">
<el-upload class="upload-demo" accept enctype="multipart/form-data" drag action="/xinadmin/upload" multiple="false" show-file-list="false"
<el-upload class="upload-demo" accept enctype="multipart/form-data" drag action="/xinadmin/upload"
multiple="false" show-file-list="false"
drag="true" auto-upload="true" limit="1" :on-success="Success">
<i class="el-icon-upload" style="height: 10px;"></i>
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
@ -93,18 +109,35 @@
</el-upload>
</div>
</el-dialog>
<el-dialog :title="rightDialogTitle" :modal-append-to-body="true" :visible.sync="rightDialogVisible"
:close-on-click-modal="false" :close-on-press-escape="false" @close="closeDetail">
<div style="max-height: 500px;overflow-y: auto">
<el-table :data="tableData" size="mini" row-key="code" ref="tableData" border>
<el-table-column prop="description" label="权限"></el-table-column>
<el-table-column prop="value" label="参数"></el-table-column>
</el-table>
</div>
</el-dialog>
</div>
<script>
Vue.filter("dateFilter", function (date, formatPattern) {
return moment(date).format(formatPattern || "YYYY-MM-DD HH:mm:ss");
});
new Vue({
const home = new Vue({
el: '#app',
data() {
return {
single: {},
single: [],
dialogCodeVisible: false,
dialogTableVisible: false
dialogTableVisible: false,
rightDialogVisible: false,
rightDialogTitle: '',
tableData: [],
companyName: '',
companyAddress: '',
companyIntroduce: ''
}
},
created: function () {
@ -113,17 +146,15 @@
},
//绑定方法
methods: {
copy() {
this.$refs.copy.select()
document.execCommand('Copy')
this.$message.success('已复制到剪贴板')
},
singlecode() {
const that = this;
axios.get('/xinadmin/single', {}).then(function (res) {
if (res.data) {
if (res.data.license) {
that.single = res.data;
that.companyName = res.data.company.name;
that.companyAddress = res.data.company.address;
that.companyIntroduce = res.data.company.introduce;
} else {
location.href = "index.jsp"
}
@ -132,9 +163,6 @@
console.log(error)
})
},
uploadfile() {
this.$refs.upload.submit()
},
checkLogin() {
const token = sessionStorage.getItem("token");
if (token == null) {
@ -146,6 +174,14 @@
}
}
},
copy() {
this.$refs.copy.select()
document.execCommand('Copy')
this.$message.success('已复制到剪贴板')
},
uploadfile() {
this.$refs.upload.submit()
},
Success(response, file, fileList) {
if (response.state == "success") {
this.dialogTableVisible = false;
@ -188,6 +224,44 @@
message: response.error
});
}
},
showDetail(item) {
this.rightDialogVisible = true;
this.rightDialogTitle = item.name + "授权参数详情";
let ary = new Array();
let data = item.params;
if (data != null) {
for (let i in data) {
let desc = data[i].name;
let value = data[i].value;
let valueType = data[i].valueType;
if (valueType == "number") {
if (value == -1)
value = "未限制数量";
else
value = "当前允许最大数量为: " + value + " , 请勿超出限制";
} else if (valueType == "boolean") {
if (value == data[i].falseDefault)
value = "未拥有此功能(或权限)";
else if (value == data[i].trueDefault)
value = "已拥有此功能(或权限)";
}
let param = {
code: i,
description: desc,
value: value,
};
ary.push(param);
}
}
this.tableData = ary;
},
closeDetail() {
this.rightDialogVisible = false;
this.rightDialogTitle = '';
this.tableData = [];
}
}
})

View File

@ -27,15 +27,18 @@
background-size: 90%;
background-image: url('themes/img/xin.png');
}
.el-form {
width: 480px;
margin: auto;
margin-top: 40px;
}
.el-input__inner {
border: 0 !important;
padding: 0;
}
.admin {
display: flex;
align-items: center;
@ -76,6 +79,7 @@
width: 80%;
margin: 40px auto;
}
.title {
height: 60px;
width: 100%;
@ -85,6 +89,7 @@
align-items: center;
justify-content: center;
}
.system {
font-size: 20px;
font-weight: 600;
@ -111,15 +116,13 @@
<i class="el-icon-key iconinfo"></i>
<el-input placeholder="请输入密码" ref="pass" v-model="user.pass" type="password" show-password></el-input>
</div>
<div class="remenber">
<el-checkbox-group>
<el-checkbox label="记住密码" name="type"></el-checkbox>
</el-checkbox-group>
<div>
<el-checkbox label="记住密码" name="type" style="float: left" ></el-checkbox>
<div style="float: left;margin-left: 400px;margin-top: -30px;">
<el-button type="text">忘记密码?</el-button>
</div>
</div>
<div style="text-align: center;">
<div style="margin-top: 10px">
<el-button type="primary" style="width: 100%;" @click="login">登陆</el-button>
</div>
</el-form>
@ -138,7 +141,7 @@
}
},
created: function () {
this.checkLogin();
// this.checkLogin();
},
methods: {
login() {