109 lines
2.9 KiB
Java
109 lines
2.9 KiB
Java
<template>
|
||
<div ref="container">
|
||
<a-modal
|
||
:title="title"
|
||
:width="600"
|
||
:visible="visible"
|
||
:confirmLoading="confirmLoading"
|
||
:getContainer="() => $refs.container"
|
||
:maskStyle="{'top':'93px','left':'154px'}"
|
||
:wrapClassName="wrapClassNameInfo()"
|
||
:mask="isDesktop()"
|
||
:maskClosable="false"
|
||
@ok="handleOk"
|
||
@cancel="handleCancel"
|
||
cancelText="取消"
|
||
okText="保存"
|
||
style="top:25%;height:35%;">
|
||
<a-spin :spinning="confirmLoading">
|
||
<a-form :form="form">
|
||
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="新密码">
|
||
<a-input-password placeholder="请输入新密码" v-decorator.trim="[ 'password', validatorRules.password]" />
|
||
</a-form-item>
|
||
</a-form>
|
||
</a-spin>
|
||
</a-modal>
|
||
</div>
|
||
</template>
|
||
<script>
|
||
import md5 from 'md5'
|
||
import pick from 'lodash.pick'
|
||
import { resetPwd } from '@/api/api'
|
||
import {mixinDevice} from '@/utils/mixin'
|
||
export default {
|
||
name: "UserResetModal",
|
||
mixins: [mixinDevice],
|
||
data () {
|
||
return {
|
||
title:"操作",
|
||
visible: false,
|
||
model: {},
|
||
maskStyle: '',
|
||
labelCol: {
|
||
xs: { span: 24 },
|
||
sm: { span: 5 },
|
||
},
|
||
wrapperCol: {
|
||
xs: { span: 24 },
|
||
sm: { span: 16 },
|
||
},
|
||
confirmLoading: false,
|
||
form: this.$form.createForm(this),
|
||
validatorRules:{
|
||
password:{
|
||
rules: [
|
||
{ required: true, message: '请输入新密码!' },
|
||
{ pattern: /^(?=.*[a-z])(?=.*\d).{6,}$/, message: '用户密码至少要有数字和小写字母,并且长度至少6位!' }
|
||
]
|
||
}
|
||
},
|
||
}
|
||
},
|
||
created () {
|
||
},
|
||
methods: {
|
||
add () {
|
||
this.edit({});
|
||
},
|
||
edit (record) {
|
||
this.form.resetFields();
|
||
this.model = Object.assign({}, record);
|
||
this.visible = true;
|
||
this.$nextTick(() => {
|
||
this.form.setFieldsValue(pick(this.model, 'password'))
|
||
});
|
||
},
|
||
close () {
|
||
this.$emit('close');
|
||
this.visible = false;
|
||
},
|
||
handleOk () {
|
||
const that = this;
|
||
// 触发表单验证
|
||
this.form.validateFields((err, values) => {
|
||
if (!err) {
|
||
that.confirmLoading = true;
|
||
let formData = Object.assign(this.model, values);
|
||
let bodyParam = {
|
||
id: formData.id,
|
||
password: md5(formData.password)
|
||
}
|
||
resetPwd(bodyParam).then((res)=>{
|
||
if(res.code === 200){
|
||
that.$emit('ok');
|
||
}else{
|
||
that.$message.warning(res.data.message);
|
||
}
|
||
}).finally(() => {
|
||
that.confirmLoading = false;
|
||
that.close();
|
||
})
|
||
}
|
||
})
|
||
},
|
||
handleCancel () {
|
||
this.close()
|
||
}
|
||
}
|
||
}
|
||
</script> |