pull/68/head
xiaojunnuo 2024-06-16 02:12:02 +08:00
parent 732cbc5e92
commit 17d1efa395
3 changed files with 10 additions and 3 deletions

View File

@ -69,4 +69,7 @@ h1, h2, h3, h4, h5, h6 {
.p-5{
padding:5px;
}
.p-10{
padding:10px;
}

View File

@ -1,7 +1,10 @@
<template>
<fs-page>
<div class="p-4">
<a-descriptions title="我的信息" bordered>
<fs-page class="page-user-profile">
<template #header>
<div class="title">我的信息</div>
</template>
<div class="p-10">
<a-descriptions title="" bordered>
<a-descriptions-item label="用户名">{{ userInfo.userInfoname }}</a-descriptions-item>
<a-descriptions-item label="昵称">{{ userInfo.nickName }}</a-descriptions-item>
<a-descriptions-item label="邮箱">{{ userInfo.email }}</a-descriptions-item>

View File

@ -30,6 +30,7 @@ export class ResetPasswdMiddleware implements IWebMiddleware {
'1号管理员密码已修改为123456当前为重置密码模式无法响应请求请关闭重置密码模式恢复正常服务'
);
}
await next();
};
}