代码备份

master
1178634255 2 years ago
parent 037695dfc0
commit aab4e5701f

@ -135,7 +135,7 @@
size="small" size="small"
placeholder="请输入当前密码" placeholder="请输入当前密码"
type="password" type="password"
v-model="inputQuery.password" v-model="inputQuery.passWord"
@input="change()" @input="change()"
></el-input> ></el-input>
</el-form-item> </el-form-item>
@ -148,7 +148,7 @@
size="small" size="small"
placeholder="请输入新密码" placeholder="请输入新密码"
type="password" type="password"
v-model="inputQuery.password" v-model="inputQuery.newPassword"
@input="change()" @input="change()"
></el-input> ></el-input>
</el-form-item> </el-form-item>
@ -215,7 +215,8 @@ export default {
isVisible: false, isVisible: false,
userInfo: {}, userInfo: {},
inputQuery: { inputQuery: {
password: "", passWord: "",
newPassword: "",
confirmPassword: "", confirmPassword: "",
userName: "", userName: "",
locInvCode: "", locInvCode: "",
@ -285,7 +286,7 @@ export default {
this.loading = false; this.loading = false;
this.$confirm('密码重置成功,请点击确定重新登录', '提示', { this.$confirm('密码重置成功,请点击确定重新登录', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
// cancelButtonText: '', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
this.$store.dispatch('LogOut').then(() => { this.$store.dispatch('LogOut').then(() => {

Loading…
Cancel
Save