|
@@ -91,36 +91,25 @@ export default {
|
|
|
const PwdArrs = `${PwdStruc}`.split('')
|
|
|
this.PwdLengthBegin = PwdLengthBegin
|
|
|
this.PwdLengthEnd = PwdLengthEnd
|
|
|
- let [a1, a2, a3, a4] = [...PwdArrs]
|
|
|
- a1 = Number(a1)
|
|
|
- a2 = Number(a2)
|
|
|
- a3 = Number(a3)
|
|
|
- a4 = Number(a4)
|
|
|
- if (a1 && a2) {
|
|
|
- this.PwdMessage = '大写字母、小写字母'
|
|
|
- } else if (a1 && a2 && a3) {
|
|
|
- this.PwdMessage = '大写字母、小写字母、特殊字符'
|
|
|
- } else if (a1 && a2 && a3 && a4) {
|
|
|
- this.PwdMessage = '大写字母、小写字母、特殊字符、数字'
|
|
|
- } else if (a1 && a3) {
|
|
|
- this.PwdMessage = '大写字母、特殊字符'
|
|
|
- } else if (a1 && a3 && a4) {
|
|
|
- this.PwdMessage = '大写字母、特殊字符、数字'
|
|
|
- } else if (a1 && a4) {
|
|
|
- this.PwdMessage = '大写字母、数字'
|
|
|
- } else if (a2 && a3) {
|
|
|
- this.PwdMessage = '小写字母、特殊字符'
|
|
|
- } else if (a2 && a3 && a4) {
|
|
|
- this.PwdMessage = '小写字母、特殊字符、数字'
|
|
|
- } else if (a2 && a4) {
|
|
|
- this.PwdMessage = '小写字母、数字'
|
|
|
- } else if (a3 && a4) {
|
|
|
- this.PwdMessage = '特殊字符、数字'
|
|
|
- } else {
|
|
|
- this.PwdMessage = '暂无密码规则'
|
|
|
- }
|
|
|
+ this.PwdMessage = this.getMessage(PwdArrs)
|
|
|
},
|
|
|
methods: {
|
|
|
+ getMessage (datas) {
|
|
|
+ let str = ''
|
|
|
+ if (datas[0] == 1) {
|
|
|
+ str += '大写字母、'
|
|
|
+ }
|
|
|
+ if (datas[1] == 1) {
|
|
|
+ str += '小写字母、'
|
|
|
+ }
|
|
|
+ if (datas[2] == 1) {
|
|
|
+ str += '特殊字符、'
|
|
|
+ }
|
|
|
+ if (datas[3] == 1) {
|
|
|
+ str += '数字'
|
|
|
+ }
|
|
|
+ return str
|
|
|
+ },
|
|
|
//存储数据项-提交
|
|
|
addSubmit (formName) {
|
|
|
this.$refs[formName].validate((valid) => {
|
|
@@ -148,9 +137,10 @@ export default {
|
|
|
//退出系统-确定
|
|
|
async outQd () {
|
|
|
sessionStorage.removeItem("userName")
|
|
|
+ sessionStorage.removeItem("tabViews")
|
|
|
+ await this.$store.dispatch('app/toggleOutcheck', true)
|
|
|
this.$store.dispatch('app/toggleOutflag', false)
|
|
|
- await this.$store.dispatch("user/logout");
|
|
|
- this.$router.push(`/login?redirect=${this.$route.fullPath}`);
|
|
|
+ this.$store.dispatch('tagsView/delAllViews')
|
|
|
},
|
|
|
//修改密码
|
|
|
async editPwd () {
|
|
@@ -190,6 +180,25 @@ export default {
|
|
|
position: fixed;
|
|
|
top: 0;
|
|
|
}
|
|
|
+ ::v-deep .dialog {
|
|
|
+ .dataStoreInfoDialog {
|
|
|
+ .el-form-item__label {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ &::before {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .message {
|
|
|
+ position: absolute;
|
|
|
+ top: 85px;
|
|
|
+ .mg {
|
|
|
+ margin-right: 8px;
|
|
|
+ color: #e6a23c;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
.drawer-bg {
|
|
|
background: #000;
|