...
|
...
|
@@ -18,9 +18,9 @@ |
|
|
昵称
|
|
|
</view>
|
|
|
<view class="infoCenter">
|
|
|
<input type="text" v-model="userInfo.nickname" placeholder="请输入昵称" placeholder-class="centerInp"/>
|
|
|
<input type="text" :focus="nicknameFocus" v-model="userInfo.nickname" placeholder="请输入昵称" placeholder-class="centerInp"/>
|
|
|
</view>
|
|
|
<view class="infoRight">
|
|
|
<view class="infoRight" @click="nicknameFocus = true">
|
|
|
<image src="../../static/image/my/icon_faqi@2x.png" mode=""></image>
|
|
|
<!-- <image src="../../static/image/right_icon.png" mode=""></image> -->
|
|
|
</view>
|
...
|
...
|
@@ -136,6 +136,7 @@ |
|
|
export default{
|
|
|
data(){
|
|
|
return{
|
|
|
nicknameFocus:false,
|
|
|
chooseImageStatus:false,
|
|
|
imgUrl:this.imgUrl,
|
|
|
showPersonInfo:false,
|
...
|
...
|
@@ -193,7 +194,7 @@ |
|
|
})
|
|
|
},
|
|
|
goService(){
|
|
|
if(this.userInfo.check_status == 2){
|
|
|
if(this.userInfo.check_status == 2 || this.userInfo.check_status == 0){
|
|
|
this.$href('/pages/my/becomeLand')
|
|
|
}else{
|
|
|
this.$href('/pages/my/checkWait')
|
...
|
...
|
|