|
|
|
<template>
|
|
|
|
<el-dialog
|
|
|
|
:visible.sync="visible"
|
|
|
|
:title="$t('updatePassword.title')"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
:append-to-body="true"
|
|
|
|
>
|
|
|
|
<el-form
|
|
|
|
:model="dataForm"
|
|
|
|
:rules="dataRule"
|
|
|
|
ref="dataForm"
|
|
|
|
@keyup.enter.native="dataFormSubmitHandle()"
|
|
|
|
label-width="120px"
|
|
|
|
>
|
|
|
|
<el-form-item :label="$t('updatePassword.username')">
|
|
|
|
<span>{{ $store.state.user.realName }}</span>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item prop="password" :label="$t('updatePassword.password')">
|
|
|
|
<el-input
|
|
|
|
v-model="dataForm.password"
|
|
|
|
type="password"
|
|
|
|
:placeholder="$t('updatePassword.password')"
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item
|
|
|
|
prop="newPassword"
|
|
|
|
:label="$t('updatePassword.newPassword')"
|
|
|
|
>
|
|
|
|
<el-input
|
|
|
|
v-model="dataForm.newPassword"
|
|
|
|
type="password"
|
|
|
|
placeholder="密码必须8-20个字符,而且同时包含大小写字母和数字"
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item
|
|
|
|
prop="confirmPassword"
|
|
|
|
:label="$t('updatePassword.confirmPassword')"
|
|
|
|
>
|
|
|
|
<el-input
|
|
|
|
v-model="dataForm.confirmPassword"
|
|
|
|
type="password"
|
|
|
|
:placeholder="$t('updatePassword.confirmPassword')"
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<template slot="footer">
|
|
|
|
<el-button @click="visible = false">{{ $t("cancel") }}</el-button>
|
|
|
|
<el-button type="primary" @click="dataFormSubmitHandle()">{{
|
|
|
|
$t("confirm")
|
|
|
|
}}</el-button>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import debounce from "lodash/debounce";
|
|
|
|
import { clearLoginInfo, encryptedData } from "@/utils";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
visible: false,
|
|
|
|
pubKey: "",
|
|
|
|
dataForm: {
|
|
|
|
password: "",
|
|
|
|
newPassword: "",
|
|
|
|
confirmPassword: "",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
dataRule() {
|
|
|
|
var validateConfirmPassword = (rule, value, callback) => {
|
|
|
|
if (this.dataForm.newPassword !== value) {
|
|
|
|
return callback(
|
|
|
|
new Error(this.$t("updatePassword.validate.confirmPassword"))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
callback();
|
|
|
|
};
|
|
|
|
return {
|
|
|
|
password: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: this.$t("validate.required"),
|
|
|
|
trigger: "blur",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
newPassword: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: this.$t("validate.required"),
|
|
|
|
trigger: "blur",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
confirmPassword: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: this.$t("validate.required"),
|
|
|
|
trigger: "blur",
|
|
|
|
},
|
|
|
|
{ validator: validateConfirmPassword, trigger: "blur" },
|
|
|
|
],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
init() {
|
|
|
|
this.visible = true;
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$refs["dataForm"].resetFields();
|
|
|
|
});
|
|
|
|
|
|
|
|
//获取公钥
|
|
|
|
this.getPubKey();
|
|
|
|
},
|
|
|
|
// 获取公钥
|
|
|
|
getPubKey() {
|
|
|
|
this.$http
|
|
|
|
.post("/auth/govweb/getKey")
|
|
|
|
.then(({ data: res }) => {
|
|
|
|
if (res.code !== 0) {
|
|
|
|
return this.$message.error(res.msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.pubKey = res.data; // 获取到公钥;
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
},
|
|
|
|
|
|
|
|
validateComplexity(pwd) {
|
|
|
|
let regex = new RegExp("(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z]).{8,20}");
|
|
|
|
|
|
|
|
if (!regex.test(pwd)) {
|
|
|
|
this.$message({
|
|
|
|
message:
|
|
|
|
"密码必须8-20个字符,而且同时包含大小写字母和数字",
|
|
|
|
type: "error",
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
// 表单提交
|
|
|
|
dataFormSubmitHandle: debounce(
|
|
|
|
function () {
|
|
|
|
this.$refs["dataForm"].validate((valid) => {
|
|
|
|
if (!valid) return false;
|
|
|
|
|
|
|
|
if (!this.validateComplexity(this.dataForm.newPassword)) return false;
|
|
|
|
|
|
|
|
const { pubKey } = this;
|
|
|
|
this.$http
|
|
|
|
.post("/epmetuser/customerstaff/changePassword", {
|
|
|
|
oldPassword: encryptedData(pubKey, this.dataForm.password),
|
|
|
|
newPassword: encryptedData(pubKey, this.dataForm.newPassword),
|
|
|
|
confirmNewPassword: encryptedData(
|
|
|
|
pubKey,
|
|
|
|
this.dataForm.confirmPassword
|
|
|
|
),
|
|
|
|
})
|
|
|
|
.then(({ data: res }) => {
|
|
|
|
if (res.code !== 0) {
|
|
|
|
return this.$message.error(res.msg);
|
|
|
|
}
|
|
|
|
this.$message({
|
|
|
|
message: this.$t("prompt.success"),
|
|
|
|
type: "success",
|
|
|
|
duration: 500,
|
|
|
|
onClose: () => {
|
|
|
|
this.visible = false;
|
|
|
|
clearLoginInfo();
|
|
|
|
this.$router.replace({ name: "login" });
|
|
|
|
},
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
1000,
|
|
|
|
{ leading: true, trailing: false }
|
|
|
|
),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|