|
|
|
@ -26,8 +26,11 @@ |
|
|
|
<view class="goods-name"> |
|
|
|
<text class="twoline-hide">{{ userList.name }}</text> |
|
|
|
</view> |
|
|
|
<view class="goods-auth-type"> |
|
|
|
<text class="twoline-hide">{{ userList.authType }}</text> |
|
|
|
<view class="goods-auth-type" v-if="userList.name"> |
|
|
|
<view class="twoline-hide"> |
|
|
|
<image class="twoline-hide-image" src="../../static/tabbar/shopping-type.png" mode="widthFix" /> |
|
|
|
<text>{{ userList.authType }}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="goods-auth-num" v-if="total != ''"> |
|
|
|
<text class="twoline-hide">标的数量:{{ total }}</text> |
|
|
|
@ -224,13 +227,20 @@ |
|
|
|
}, |
|
|
|
getUserStateStr(state){ |
|
|
|
let str = '' |
|
|
|
if (state == "1" || state == "3" || state == "7" || state == "0") { |
|
|
|
str = '认证中' |
|
|
|
} else if (state == "2" || state == "4" || state == "5") { |
|
|
|
str = '认证失败' |
|
|
|
} else if (state == "6") { |
|
|
|
str = '认证成功' |
|
|
|
if (state == '0') { |
|
|
|
str = "认证中"; |
|
|
|
} else if (state == '1') { |
|
|
|
str = "认证成功"; |
|
|
|
} else if (state == '2') { |
|
|
|
str = "认证失败"; |
|
|
|
} |
|
|
|
// if (state == "1" || state == "3" || state == "7" || state == "0") { |
|
|
|
// str = '认证中' |
|
|
|
// } else if (state == "2" || state == "4" || state == "5") { |
|
|
|
// str = '认证失败' |
|
|
|
// } else if (state == "6") { |
|
|
|
// str = '认证成功' |
|
|
|
// } |
|
|
|
return str |
|
|
|
}, |
|
|
|
// 初始化订单列表数据 |
|
|
|
@ -366,10 +376,21 @@ |
|
|
|
font-size: 26rpx; |
|
|
|
color: #fbb154; |
|
|
|
font-weight: bold; |
|
|
|
|
|
|
|
image { |
|
|
|
float: left; |
|
|
|
width: 40rpx; |
|
|
|
} |
|
|
|
|
|
|
|
text { |
|
|
|
float: left; |
|
|
|
margin-top: -3rpx; |
|
|
|
margin-left: 20rpx; |
|
|
|
} |
|
|
|
} |
|
|
|
.goods-auth-num { |
|
|
|
float: left; |
|
|
|
margin-left: -75rpx; |
|
|
|
margin-left: -135rpx; |
|
|
|
margin-top: 70rpx; |
|
|
|
font-size: 24rpx; |
|
|
|
color: #d7d7d7; |
|
|
|
|