diff --git a/manager/src/styles/common.scss b/manager/src/styles/common.scss index 0aa5cad0..a170a37d 100644 --- a/manager/src/styles/common.scss +++ b/manager/src/styles/common.scss @@ -196,4 +196,5 @@ $dark_content_color: #d5d5d5; [data-theme="light"] & { color: $light_title_color; } -} \ No newline at end of file +} +@import "./table-common.scss"; \ No newline at end of file diff --git a/manager/src/views/change-password/change-password.vue b/manager/src/views/change-password/change-password.vue index 09503836..a24f9254 100644 --- a/manager/src/views/change-password/change-password.vue +++ b/manager/src/views/change-password/change-password.vue @@ -36,7 +36,7 @@ import { changePass } from "@/api/index"; export default { name: "change-password", components: { - SetPassword, + SetPassword }, data() { const valideRePassword = (rule, value, callback) => { @@ -94,9 +94,11 @@ export default { }; }, methods: { + // 密码强度 changeInputPass(v, grade, strength) { this.strength = strength; }, + // 确认修改密码 saveEditPass() { let params = { password: this.md5(this.editPasswordForm.oldPassword), @@ -125,6 +127,7 @@ export default { } }); }, + // 取消修改密码 cancelEditPass() { this.$store.commit("removeTag", "change_password"); localStorage.pageOpenedList = JSON.stringify( @@ -141,8 +144,7 @@ export default { name: lastPageName, }); }, - }, - mounted() {}, + } }; diff --git a/manager/src/views/distribution/distributionApply.vue b/manager/src/views/distribution/distributionApply.vue index d3f7bba7..83777c0b 100644 --- a/manager/src/views/distribution/distributionApply.vue +++ b/manager/src/views/distribution/distributionApply.vue @@ -1,5 +1,5 @@