mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-14 19:52:48 +00:00
116 lines
4.6 KiB
Vue
116 lines
4.6 KiB
Vue
<template>
|
|
<div>
|
|
<el-dropdown @command="clickEvent" :tabindex="1">
|
|
<div class="userinfo flex h-full items-center">
|
|
<el-avatar :size="25" :icon="UserFilled" />
|
|
<div class="user-name pl-[8px]">{{ userStore.userInfo.username }}</div>
|
|
<icon name="element-ArrowDown" class="ml-[5px]" />
|
|
</div>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item command="usercenter"><router-link to="/user/center">账号设置</router-link></el-dropdown-item>
|
|
<el-dropdown-item command="usercenter" @click="changePasswordDialog=true">修改密码</el-dropdown-item>
|
|
<el-dropdown-item command="logout">退出登录</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
|
|
<el-dialog v-model="changePasswordDialog" title="修改密码" width="450px" :before-close="handleClose">
|
|
<div>
|
|
<el-form :model="saveInfo" label-width="90px" ref="formRef" :rules="formRules" class="page-form">
|
|
<el-form-item :label="t('originalPassword')" prop="original_password">
|
|
<el-input v-model="saveInfo.original_password" type="password" :placeholder="t('originalPasswordPlaceholder')" clearable class="input-width" />
|
|
</el-form-item>
|
|
<el-form-item :label="t('newPassword')" prop="password">
|
|
<el-input v-model="saveInfo.password" type="password" :placeholder="t('passwordPlaceholder')" clearable class="input-width" />
|
|
<div class="form-tip">{{t('passwordTip')}}</div>
|
|
</el-form-item>
|
|
<el-form-item :label="t('passwordCopy')" prop="password_copy">
|
|
<el-input v-model="saveInfo.password_copy" type="password" :placeholder="t('passwordPlaceholder')" clearable class="input-width" />
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click="changePasswordDialog = false">{{t('cancel')}}</el-button>
|
|
<el-button type="primary" @click="submitForm(formRef)">{{t('save')}}</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { UserFilled } from '@element-plus/icons-vue'
|
|
import { computed, reactive, ref, onMounted, watch } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import type { FormInstance, FormRules, ElNotification } from 'element-plus'
|
|
import { t } from '@/lang'
|
|
import {getEnv} from '@/app/api/sys'
|
|
import { setUserInfo } from '@/app/api/personal'
|
|
import useUserStore from '@/stores/modules/user'
|
|
|
|
const userStore = useUserStore()
|
|
|
|
const clickEvent = (command: string) => {
|
|
switch (command) {
|
|
case 'logout':
|
|
userStore.logout()
|
|
break
|
|
}
|
|
}
|
|
|
|
|
|
// 修改密码 --- start
|
|
let changePasswordDialog = ref(false)
|
|
const formRef = ref<FormInstance>();
|
|
// 提交信息
|
|
let saveInfo = reactive({
|
|
original_password: '',
|
|
password: '',
|
|
password_copy: ''
|
|
});
|
|
// 表单验证规则
|
|
const formRules = reactive<FormRules>({
|
|
original_password: [
|
|
{ required: true, message: t("originalPasswordPlaceholder"), trigger: "blur" },
|
|
],
|
|
password: [
|
|
{ required: true, message: t("passwordPlaceholder"), trigger: "blur" },
|
|
],
|
|
password_copy: [
|
|
{ required: true, message: t("passwordPlaceholder"), trigger: "blur" },
|
|
]
|
|
});
|
|
const submitForm = (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return
|
|
formEl.validate((valid) => {
|
|
if (valid) {
|
|
let msg = "";
|
|
if (saveInfo.password && !saveInfo.original_password) msg = t('originalPasswordHint');
|
|
if (saveInfo.password && saveInfo.original_password && !saveInfo.password_copy) msg = t('newPasswordHint');
|
|
if (saveInfo.password && saveInfo.original_password && saveInfo.password_copy && saveInfo.password != saveInfo.password_copy) msg = t('doubleCipherHint');
|
|
if (msg) {
|
|
ElNotification({
|
|
type: 'error',
|
|
message: msg,
|
|
})
|
|
return;
|
|
}
|
|
|
|
setUserInfo(saveInfo).then((res: any) => {
|
|
changePasswordDialog.value = false;
|
|
}).catch((err: any) => {
|
|
changePasswordDialog.value = false;
|
|
})
|
|
} else {
|
|
return false
|
|
}
|
|
});
|
|
}
|
|
// 修改密码 --- end
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|