Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
沈志敏
9 years ago
Commit
425c42f933d558af8aee63f111e7a1b69362c4f0
1 parent
0bf227b5
fix bug
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
public/scss/me/_details.css
public/vue/me/mydetails.vue
public/scss/me/_details.css
View file @
425c42f
...
...
@@ -68,6 +68,7 @@
color
:
#b0b0b0
;
height
:
50px
;
line-height
:
50px
;
width
:
80%
;
}
.gender
{
...
...
public/vue/me/mydetails.vue
View file @
425c42f
...
...
@@ -9,7 +9,7 @@
</label>
</li>
<li>
<label>昵称<input class="nickname" v-model='nickname' maxlength="
20
" @input="setNickname" @change="checkNickname"></label>
<label>昵称<input class="nickname" v-model='nickname' maxlength="
16
" @input="setNickname" @change="checkNickname"></label>
</li>
<li>
<label @click="setAender">性别
...
...
@@ -51,7 +51,7 @@
};
},
computed: {
spanbirthday: function(){
spanbirthday: function()
{
const arr = this.birthday.split('-');
return arr.length === 3 ? `${arr[0]}年${arr[1]}月${arr[2]}日` : '';
...
...
Please
register
or
login
to post a comment