Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
SunWuyuan committed Oct 2, 2024
1 parent 0277eb9 commit f15fbfa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/pages/account/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<v-card class="mx-auto" :disabled="UserCardLoading" :loading="UserCardLoading">
<template v-slot:prepend>
<v-avatar class="mb-2">
<v-img :alt="localuserinfo.display_name"
:src="'https://s4-1.wuyuan.1r.ink/user/' + localuserinfo.avatar"></v-img>
<v-img :alt="UserInfo.display_name"
:src="'https://s4-1.wuyuan.1r.ink/user/' + UserInfo.images"></v-img>
</v-avatar>
</template>
<template v-slot:title>
<span class="font-weight-black">{{
localuserinfo.display_name
UserInfo.display_name
}}</span>
</template>
<template v-slot:loader="{ isActive }">
Expand All @@ -20,7 +20,7 @@
<v-chip>
<v-icon icon="mdi-account-circle" start></v-icon>

ID:{{ localuserinfo.userid }}
ID:{{ UserInfo.id }}
</v-chip>
<v-chip>
<v-icon icon="mdi-tag" start></v-icon>
Expand All @@ -35,13 +35,13 @@
</v-card>
</div>
<v-card>
<v-tabs v-model="tab" bg-color="primary">
<v-tabs v-model="tab" >
<v-tab value="userinfo">用户信息</v-tab>
<v-tab value="username">用户名</v-tab>
<v-tab value="password">密码</v-tab>
</v-tabs>

<v-card-text>
<v-card-text >
<v-tabs-window v-model="tab">
<v-tabs-window-item value="userinfo">
<v-form v-model="valid">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/projects/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {
source: "",
order: "view_up",
authorid: "",
type: "",
type: "scratch",
state: "public",
tag: '',
},
Expand Down

0 comments on commit f15fbfa

Please sign in to comment.