- 添加 .editorconfig 文件统一代码风格 - 配置 .env.development 环境变量文件 - 创建 .env.example 环境变量示例文件 - 设置 .eslintignore 忽略检查规则 - 配置 .eslintrc.js 代码检查规则 - 添加 .gitignore 文件忽略版本控制 - 设置 .prettierignore 忽略格式化规则 - 新增隐私政策HTML页面文件 - 创建API密钥编辑组件基础结构
149 lines
3.6 KiB
Vue
149 lines
3.6 KiB
Vue
<!-- 修改密码弹窗 -->
|
|
<template>
|
|
<ele-modal
|
|
:width="420"
|
|
:title="t('layout.header.password')"
|
|
:visible="visible"
|
|
:confirm-loading="loading"
|
|
:body-style="{ paddingBottom: '16px' }"
|
|
@update:visible="updateVisible"
|
|
@cancel="onCancel"
|
|
@ok="onOk"
|
|
>
|
|
<a-form
|
|
ref="formRef"
|
|
:model="form"
|
|
:rules="rules"
|
|
:label-col="styleResponsive ? { sm: 6 } : { flex: '90px' }"
|
|
:wrapper-col="styleResponsive ? { sm: 18 } : { flex: '1' }"
|
|
>
|
|
<a-form-item :label="t('login.oldPassword')" name="oldPassword">
|
|
<a-input-password
|
|
v-model:value="form.oldPassword"
|
|
placeholder="请输入旧密码"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item :label="t('login.newPassword')" name="password">
|
|
<a-input-password
|
|
v-model:value="form.password"
|
|
placeholder="请输入新密码"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item :label="t('login.confirm')" name="password2">
|
|
<a-input-password
|
|
v-model:value="form.password2"
|
|
placeholder="请再次输入新密码"
|
|
/>
|
|
</a-form-item>
|
|
</a-form>
|
|
</ele-modal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive } from 'vue';
|
|
import { message } from 'ant-design-vue/es';
|
|
import type { FormInstance, Rule } from 'ant-design-vue/es/form';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useThemeStore } from '@/store/modules/theme';
|
|
import useFormData from '@/utils/use-form-data';
|
|
import { updatePassword } from '@/api/layout';
|
|
|
|
// 是否开启响应式布局
|
|
const themeStore = useThemeStore();
|
|
const { styleResponsive } = storeToRefs(themeStore);
|
|
const { t } = useI18n();
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'update:visible', value: boolean): void;
|
|
}>();
|
|
|
|
defineProps<{
|
|
visible: boolean;
|
|
}>();
|
|
|
|
//
|
|
const formRef = ref<FormInstance | null>(null);
|
|
|
|
// 提交loading
|
|
const loading = ref<boolean>(false);
|
|
|
|
// 表单数据
|
|
const { form, resetFields } = useFormData({
|
|
oldPassword: '',
|
|
password: '',
|
|
password2: ''
|
|
});
|
|
|
|
// 表单验证规则
|
|
const rules = reactive<Record<string, Rule[]>>({
|
|
oldPassword: [
|
|
{
|
|
required: true,
|
|
type: 'string',
|
|
message: '请输入旧密码',
|
|
trigger: 'blur'
|
|
}
|
|
],
|
|
password: [
|
|
{
|
|
required: true,
|
|
type: 'string',
|
|
message: '请输入新密码',
|
|
trigger: 'blur'
|
|
}
|
|
],
|
|
password2: [
|
|
{
|
|
required: true,
|
|
type: 'string',
|
|
validator: async (_rule: Rule, value: string) => {
|
|
if (!value) {
|
|
return Promise.reject('请再次输入新密码');
|
|
}
|
|
if (value !== form.password) {
|
|
return Promise.reject('两次输入密码不一致');
|
|
}
|
|
return Promise.resolve();
|
|
},
|
|
trigger: 'blur'
|
|
}
|
|
]
|
|
});
|
|
|
|
/* 修改visible */
|
|
const updateVisible = (value: boolean) => {
|
|
emit('update:visible', value);
|
|
};
|
|
|
|
/* 保存修改 */
|
|
const onOk = () => {
|
|
if (!formRef.value) {
|
|
return;
|
|
}
|
|
formRef.value
|
|
.validate()
|
|
.then(() => {
|
|
loading.value = true;
|
|
updatePassword(form)
|
|
.then((msg) => {
|
|
loading.value = false;
|
|
message.success(msg);
|
|
updateVisible(false);
|
|
})
|
|
.catch((e) => {
|
|
loading.value = false;
|
|
message.error(e.message);
|
|
});
|
|
})
|
|
.catch(() => {});
|
|
};
|
|
|
|
/* 关闭回调 */
|
|
const onCancel = () => {
|
|
resetFields();
|
|
formRef.value?.clearValidate();
|
|
loading.value = false;
|
|
};
|
|
</script>
|