招工状态标签优化

This commit is contained in:
zxy
2024-03-10 15:58:51 +08:00
parent 65d9d2e9eb
commit 2ac26e947c

View File

@@ -20,7 +20,9 @@
</view>
</view>
<view class="ask_right">
{{getReviewState(companyitem.reviewState)}}
<u-tag v-if="companyitem.reviewState == 1" :text="getReviewState(companyitem.reviewState)" type="success" plain shape="circle"></u-tag>
<u-tag v-if="companyitem.reviewState == 9" :text="getReviewState(companyitem.reviewState)" type="error" plain shape="circle"></u-tag>
<u-tag v-if="companyitem.reviewState == 0" :text="getReviewState(companyitem.reviewState)" plain shape="circle"></u-tag>
</view>
</view>
<!-- <view class="allName">
@@ -111,7 +113,7 @@ export default {
case 0:
return '待审核'
case 9:
return '驳回'
return '驳回'
}
},
goComment: function (no) {
@@ -213,9 +215,9 @@ export default {
font-size: 24rpx;
color: blue;
background-color: #FFFFFF;
border: 2rpx solid blue;
/* border: 2rpx solid blue; */
border-radius: 6px;
padding: 5rpx 15rpx;
/* padding: 2rpx 10rpx; */
margin-right: 10rpx;
margin-bottom: 10rpx;
}