feat: 添加登录,注册,忘记密码功能
This commit is contained in:
@@ -112,7 +112,7 @@ function hoverDescription(event, description) {
|
||||
max-width: 238px;
|
||||
}
|
||||
</style>
|
||||
<style scoped lang="scss">
|
||||
<style lang="scss" scoped>
|
||||
.notice-container {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
|
||||
@@ -20,13 +20,13 @@ export interface TabItem {
|
||||
export const noticesData: TabItem[] = [
|
||||
{
|
||||
key: "1",
|
||||
name: $t("status.pureNotify"),
|
||||
name: $t("status:Notify"),
|
||||
list: [],
|
||||
emptyText: $t("status.pureNoNotify")
|
||||
emptyText: $t("status:NoNotify")
|
||||
},
|
||||
{
|
||||
key: "2",
|
||||
name: $t("status.pureMessage"),
|
||||
name: $t("status:Message"),
|
||||
list: [
|
||||
{
|
||||
avatar: "https://xiaoxian521.github.io/hyperlink/svg/smile1.svg",
|
||||
@@ -51,11 +51,11 @@ export const noticesData: TabItem[] = [
|
||||
type: "2"
|
||||
}
|
||||
],
|
||||
emptyText: $t("status.pureNoMessage")
|
||||
emptyText: $t("status:NoMessage")
|
||||
},
|
||||
{
|
||||
key: "3",
|
||||
name: $t("status.pureTodo"),
|
||||
name: $t("status:Todo"),
|
||||
list: [
|
||||
{
|
||||
avatar: "",
|
||||
@@ -94,6 +94,6 @@ export const noticesData: TabItem[] = [
|
||||
type: "3"
|
||||
}
|
||||
],
|
||||
emptyText: $t("status.pureNoTodo")
|
||||
emptyText: $t("status:NoTodo")
|
||||
}
|
||||
];
|
||||
|
||||
@@ -44,7 +44,7 @@ const getLabel = computed(
|
||||
>
|
||||
<el-empty
|
||||
v-if="notices.length === 0"
|
||||
:description="t('status.pureNoMessage')"
|
||||
:description="t('status:NoMessage')"
|
||||
:image-size="60"
|
||||
/>
|
||||
<span v-else>
|
||||
|
||||
Reference in New Issue
Block a user