|
|
|
@ -102,15 +102,59 @@
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--新增界面-->
|
|
|
|
|
<el-dialog title="修改密码" :visible.sync="passwordFormVisible" width="85%" top="5vh"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:show-close="false"
|
|
|
|
|
:close-on-press-escape="false">
|
|
|
|
|
<el-form :model="passwordFormData" :rules="passwordFormDataRules" ref="passwordFormData">
|
|
|
|
|
<el-form-item label="原始密码" prop="old_password">
|
|
|
|
|
<el-input type="password" v-model="passwordFormData.oldPassword" auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="新密码" prop="new_password">
|
|
|
|
|
<el-input type="password" v-model="passwordFormData.newPassword" auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="确认密码" prop="check_new_password">
|
|
|
|
|
<el-input type="password" v-model="passwordFormData.check_new_password" auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<!-- <el-button @click.native="passwordFormVisible = !passwordFormVisible">取消</el-button> -->
|
|
|
|
|
<el-button type="primary" @click.native="addSubmit('passwordFormData')" :loading="passwordLoading">提交</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import Verify from 'vue2-verify'
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import {password} from "../../api/auth/login";
|
|
|
|
|
import {getAdminId} from "../../utils/auth";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
let validatePass = (rule, value, callback) => {
|
|
|
|
|
if (value === "") {
|
|
|
|
|
callback(new Error("请输入密码"));
|
|
|
|
|
} else {
|
|
|
|
|
if (this.passwordFormData.check_new_password !== "") {
|
|
|
|
|
this.$refs.passwordFormData.validateField("check_new_password");
|
|
|
|
|
}
|
|
|
|
|
callback();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
let validatePass2 = (rule, value, callback) => {
|
|
|
|
|
console.log(this.passwordFormData)
|
|
|
|
|
if (value === "") {
|
|
|
|
|
callback(new Error("请再次输入密码"));
|
|
|
|
|
} else if (value !== this.passwordFormData.newPassword) {
|
|
|
|
|
callback(new Error("两次输入密码不一致!"));
|
|
|
|
|
} else {
|
|
|
|
|
callback();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
let validatePwd = (rule, value, callback) => {
|
|
|
|
|
if (value === "") {
|
|
|
|
|
callback(new Error("请输入密码"));
|
|
|
|
@ -136,9 +180,78 @@ export default {
|
|
|
|
|
showDialog: false, // 显示dialog
|
|
|
|
|
redirect: null, // 回调地址
|
|
|
|
|
hospName: "",
|
|
|
|
|
passwordLoading: false,
|
|
|
|
|
passwordFormVisible: false,
|
|
|
|
|
passwordFormData: {
|
|
|
|
|
oldPassword: "",
|
|
|
|
|
newPassword: "",
|
|
|
|
|
check_new_password: "",
|
|
|
|
|
},
|
|
|
|
|
passwordFormDataRules: {
|
|
|
|
|
oldPassword: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入原始密码",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
newPassword: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入新密码",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
{validator: validatePass, trigger: "blur"},
|
|
|
|
|
],
|
|
|
|
|
check_new_password: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请再次输入密码",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
{validator: validatePass2, trigger: "blur"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
addSubmit(formName) {
|
|
|
|
|
this.$refs[formName].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
this.passwordLoading = true;
|
|
|
|
|
let data = Object.assign({}, this.passwordFormData);
|
|
|
|
|
data.adminId = getAdminId();
|
|
|
|
|
password(data)
|
|
|
|
|
.then((res) => {
|
|
|
|
|
this.passwordLoading = false;
|
|
|
|
|
if (res.code !== 20000) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: res.message,
|
|
|
|
|
type: "error",
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: "修改成功",
|
|
|
|
|
type: "success",
|
|
|
|
|
});
|
|
|
|
|
// 刷新表单
|
|
|
|
|
this.$refs["passwordFormData"].resetFields();
|
|
|
|
|
this.passwordFormVisible = false;
|
|
|
|
|
this.$store.dispatch("loginOut").then(() => {
|
|
|
|
|
location.reload(); // 为了重新实例化vue-router对象 避免bug
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
// this.$message({
|
|
|
|
|
// type: "error",
|
|
|
|
|
// message: "操作失败",
|
|
|
|
|
// });
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
verifyAlert(text) {
|
|
|
|
|
if (text === 'success') {
|
|
|
|
|
this.ruleForm.verificationCode = true;
|
|
|
|
@ -167,16 +280,40 @@ export default {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let path = "/";
|
|
|
|
|
if (this.redirect) {
|
|
|
|
|
path = this.redirect;
|
|
|
|
|
if(response.data.needChangePwd){
|
|
|
|
|
this.$confirm('系统检测到您的密码长时间未修改,为保证您的账号安全建议立即修改密码?', '提示', {
|
|
|
|
|
confirmButtonText: '立即修改',
|
|
|
|
|
cancelButtonText: '忽略',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.passwordFormVisible = true;
|
|
|
|
|
this.passwordFormData = {
|
|
|
|
|
oldPassword: "",
|
|
|
|
|
newPassword: "",
|
|
|
|
|
check_new_password: "",
|
|
|
|
|
};
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
let path = "/";
|
|
|
|
|
if (this.redirect) {
|
|
|
|
|
path = this.redirect;
|
|
|
|
|
}
|
|
|
|
|
console.log("path = " + path);
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "../main",
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}else {
|
|
|
|
|
let path = "/";
|
|
|
|
|
if (this.redirect) {
|
|
|
|
|
path = this.redirect;
|
|
|
|
|
}
|
|
|
|
|
console.log("path = " + path);
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "../main",
|
|
|
|
|
});
|
|
|
|
|
// window.location.replace(path);
|
|
|
|
|
// this.showDialog = true
|
|
|
|
|
}
|
|
|
|
|
console.log("path = " + path);
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "../main",
|
|
|
|
|
});
|
|
|
|
|
// window.location.replace(path);
|
|
|
|
|
// this.showDialog = true
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.ruleForm.verificationCode = false;
|
|
|
|
@ -224,7 +361,7 @@ $light_gray: #eee;
|
|
|
|
|
background-size: 100vw 100vh;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
input:-webkit-autofill {
|
|
|
|
|
.login-form input:-webkit-autofill {
|
|
|
|
|
-webkit-box-shadow: 0 0 0 1000px #293444 inset !important;
|
|
|
|
|
-webkit-text-fill-color: #fff !important;
|
|
|
|
|
}
|
|
|
|
@ -239,17 +376,17 @@ $light_gray: #eee;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
.login-form input {
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
padding: 0.46rem 0.0666rem 0.16rem 0.2rem;
|
|
|
|
|
padding: 0.46rem 0.0666rem 0.16rem 1.5rem;
|
|
|
|
|
color: $dark_gray;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-input {
|
|
|
|
|
.login-form .el-input {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -298,7 +435,7 @@ $light_gray: #eee;
|
|
|
|
|
padding: 10em 10em 15em 10em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form-item {
|
|
|
|
|
.login-form .el-form-item {
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-radius: 0.0666rem;
|
|
|
|
|