Commit ee43f0ed authored by 罗林杰's avatar 罗林杰

修改bug

parent b46f5f6a
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<view class="te">{{ userData.memCollege ? userData.memCollege : '' }}</view> <view class="te">{{ userData.memCollege ? userData.memCollege : '' }}</view>
<view class="xian"></view> <view class="xian"></view>
<view class="te"> <view class="te">
{{ userData.memMaxEducation }} {{ userData.memMaxEducation ? userData.memMaxEducation : '' }}
</view> </view>
</view> </view>
</view> </view>
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
<view class="hint"> <view class="hint">
<image :src="baseUrl+'/user/auth.png'" mode="aspectFill"></image> <image :src="baseUrl+'/user/auth.png'" mode="aspectFill"></image>
<view class="t"> <view class="t">
{{ userData.memRealAuthen }} {{ userData.memRealAuthen ? userData.memRealAuthen : '' }}
</view> </view>
</view> </view>
</view> </view>
...@@ -226,7 +226,9 @@ ...@@ -226,7 +226,9 @@
//是否关注 0:未关注 1:已关注 //是否关注 0:未关注 1:已关注
isFollowed: '0', isFollowed: '0',
//用户信息 //用户信息
userData: {}, userData: {
},
//点赞字典数据 //点赞字典数据
userLikeOptions:[], userLikeOptions:[],
//点赞花费金币数 //点赞花费金币数
......
...@@ -371,10 +371,16 @@ export default { ...@@ -371,10 +371,16 @@ export default {
if (res.data.code == 200){ if (res.data.code == 200){
this.$refs.paging.reload(); this.$refs.paging.reload();
this.inputTemp = '' this.inputTemp = ''
} else { } else if (res.data.code == 1003) {
this.showApply = false
this.isMessageConfirm = true; this.isMessageConfirm = true;
this.tipMsg = res.data.message; this.tipMsg = res.data.message;
this.$refs.elmMessage.showDialog(); this.$refs.elmMessage.showDialog();
} else {
uni.showToast({
title: res.data.message,
icon: 'none'
})
} }
}) })
}, },
...@@ -446,11 +452,16 @@ export default { ...@@ -446,11 +452,16 @@ export default {
icon: 'none' icon: 'none'
}) })
this.showApply = false this.showApply = false
} else { } else if (res.data.code == 1003) {
this.showApply = false this.showApply = false
this.isMessageConfirm = true; this.isMessageConfirm = true;
this.tipMsg = res.data.message; this.tipMsg = res.data.message;
this.$refs.elmMessage.showDialog(); this.$refs.elmMessage.showDialog();
} else {
uni.showToast({
title: res.data.message,
icon: 'none'
})
} }
}) })
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment