This commit is contained in:
liuye
2021-12-22 15:18:32 +08:00
parent b5929bc0a7
commit ce45ac0b4f
2 changed files with 3 additions and 1 deletions

View File

@@ -22,7 +22,8 @@
<div class="item border">
<span class="label"><span class="tips">*</span>是否公开</span>
<div class="value" @click="showSelect=true">
<span :class="userInfo.isPublic === '' ? 'color-999' : ''">{{$dict.getLabel('yesOrNo', userInfo.isPublic) || '请选择'}}</span>
<span v-if="userInfo.isPublic !== ''">{{$dict.getLabel('yesOrNo', userInfo.isPublic)}}</span>
<span v-else class="color-999">请选择</span>
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
</div>
</div>

View File

@@ -33,6 +33,7 @@ export default {
},
computed: { ...mapState(['user']) },
mounted() {
console.log(this.user)
this.getList()
},