|
@@ -0,0 +1,138 @@
|
|
|
+<template>
|
|
|
+ <BasicModal
|
|
|
+ v-bind="$attrs"
|
|
|
+ @register="register"
|
|
|
+ @ok="handSubmit"
|
|
|
+ :title="t('routes.staff.updateBtn')"
|
|
|
+ @visible-change="handleVisibleChange"
|
|
|
+ @cancel="resetFields"
|
|
|
+ >
|
|
|
+ <div class="pt-3px pr-3px">
|
|
|
+ <BasicForm @register="registerForm" />
|
|
|
+ </div>
|
|
|
+ </BasicModal>
|
|
|
+</template>
|
|
|
+<script lang="ts">
|
|
|
+ import { useI18n } from '/@/hooks/web/useI18n';
|
|
|
+ import { encodeStr } from '/@/utils/encodeUtil';
|
|
|
+ import { defineComponent, nextTick } from 'vue';
|
|
|
+ import { BasicModal, useModalInner } from '/@/components/Modal';
|
|
|
+ import { BasicForm, FormSchema, useForm } from '/@/components/Form/index';
|
|
|
+ import { updatePasswordApi } from '/@/api/staff/list';
|
|
|
+ import { useMessage } from '/@/hooks/web/useMessage';
|
|
|
+ import { useUserStore } from '/@/store/modules/user';
|
|
|
+
|
|
|
+ const { createMessage } = useMessage();
|
|
|
+
|
|
|
+ export default defineComponent({
|
|
|
+ components: { BasicModal, BasicForm },
|
|
|
+ props: {
|
|
|
+ userData: { type: Object },
|
|
|
+ },
|
|
|
+ setup(props) {
|
|
|
+ const { t } = useI18n();
|
|
|
+ const userStore = useUserStore();
|
|
|
+ const getUserInfo = userStore.getUserInfo;
|
|
|
+ const schemas: FormSchema[] = [
|
|
|
+ {
|
|
|
+ field: 'id',
|
|
|
+ component: 'Input',
|
|
|
+ label: 'id',
|
|
|
+ show: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'oldPassword',
|
|
|
+ component: 'Input',
|
|
|
+ label: '原密码',
|
|
|
+ labelWidth: 120,
|
|
|
+ required: true,
|
|
|
+ colProps: { span: 18 },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'password',
|
|
|
+ component: 'StrengthMeter',
|
|
|
+ label: '新密码',
|
|
|
+ labelWidth: 120,
|
|
|
+ required: true,
|
|
|
+ rules: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ // @ts-ignore
|
|
|
+ validator: async (rule, value) => {
|
|
|
+ const regPos = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/; // 非中文
|
|
|
+ if (!value) {
|
|
|
+ return Promise.reject('请输入8-16位数字、字母大小写组合');
|
|
|
+ }
|
|
|
+ if (!regPos.test(value)) {
|
|
|
+ /* eslint-disable-next-line */
|
|
|
+ return Promise.reject('请输入8-16位数字、字母大小写组合');
|
|
|
+ }
|
|
|
+ return Promise.resolve();
|
|
|
+ },
|
|
|
+ trigger: 'change',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ componentProps:{
|
|
|
+ maxLength: 16,
|
|
|
+ minLength: 8,
|
|
|
+ placeholder:"请输入8-16位数字、字母大小写组合"
|
|
|
+ },
|
|
|
+ colProps: { span: 18 },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+
|
|
|
+ const [
|
|
|
+ registerForm,
|
|
|
+ {
|
|
|
+ setFieldsValue,
|
|
|
+ validate,
|
|
|
+ resetFields,
|
|
|
+ // setProps
|
|
|
+ },
|
|
|
+ ] = useForm({
|
|
|
+ labelWidth: 120,
|
|
|
+ schemas,
|
|
|
+ showActionButtonGroup: false,
|
|
|
+ actionColOptions: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
+ const [register, { closeModal }] = useModalInner((data) => {
|
|
|
+ data && onDataReceive(data);
|
|
|
+ });
|
|
|
+
|
|
|
+ function onDataReceive(data) {
|
|
|
+ setFieldsValue({
|
|
|
+ id: data.id,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ async function handSubmit() {
|
|
|
+ console.log('getUserInfo',getUserInfo)
|
|
|
+ const { id } = getUserInfo
|
|
|
+ const { password,oldPassword } = await validate();
|
|
|
+ await updatePasswordApi({
|
|
|
+ id,
|
|
|
+ newPassword: encodeStr(window.btoa(password)),
|
|
|
+ oldPassword: encodeStr(window.btoa(oldPassword)),
|
|
|
+ });
|
|
|
+ createMessage.success(t('common.optSuccess'));
|
|
|
+ resetFields();
|
|
|
+ userStore.confirmLoginOut();
|
|
|
+ }
|
|
|
+ function handleVisibleChange(v) {
|
|
|
+ v && props.userData && nextTick(() => onDataReceive(props.userData));
|
|
|
+ }
|
|
|
+
|
|
|
+ return {
|
|
|
+ handSubmit,
|
|
|
+ register,
|
|
|
+ t,
|
|
|
+ schemas,
|
|
|
+ registerForm,
|
|
|
+ handleVisibleChange,
|
|
|
+ resetFields,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ });
|
|
|
+</script>
|