mirror of https://github.com/certd/certd
chore: 1
parent
732cbc5e92
commit
17d1efa395
|
@ -70,3 +70,6 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
.p-5{
|
.p-5{
|
||||||
padding:5px;
|
padding:5px;
|
||||||
}
|
}
|
||||||
|
.p-10{
|
||||||
|
padding:10px;
|
||||||
|
}
|
|
@ -1,7 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<fs-page>
|
<fs-page class="page-user-profile">
|
||||||
<div class="p-4">
|
<template #header>
|
||||||
<a-descriptions title="我的信息" bordered>
|
<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.userInfoname }}</a-descriptions-item>
|
||||||
<a-descriptions-item label="昵称">{{ userInfo.nickName }}</a-descriptions-item>
|
<a-descriptions-item label="昵称">{{ userInfo.nickName }}</a-descriptions-item>
|
||||||
<a-descriptions-item label="邮箱">{{ userInfo.email }}</a-descriptions-item>
|
<a-descriptions-item label="邮箱">{{ userInfo.email }}</a-descriptions-item>
|
||||||
|
|
|
@ -30,6 +30,7 @@ export class ResetPasswdMiddleware implements IWebMiddleware {
|
||||||
'1号管理员密码已修改为123456,当前为重置密码模式,无法响应请求,请关闭重置密码模式恢复正常服务'
|
'1号管理员密码已修改为123456,当前为重置密码模式,无法响应请求,请关闭重置密码模式恢复正常服务'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
await next();
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue