|
|
@@ -75,6 +75,12 @@
|
|
|
<!-- <view class="content-text-row">{{item.jiguan}}</view> -->
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="xinyu-row" v-if="item.xinyong || item.xinyong===0"
|
|
|
+ :class="{
|
|
|
+ 'xinyong-weica': item.xinyong === 0,
|
|
|
+ 'xinyong-zhengchang': item.xinyong === 1,
|
|
|
+ 'xinyong-yichang': item.xinyong === 2
|
|
|
+ }">{{ getXinyongText(item.xinyong) }}</view>
|
|
|
</template>
|
|
|
</uni-list-item>
|
|
|
<uni-load-more :status="data.state" @click="getMore(0)"
|
|
|
@@ -165,6 +171,13 @@
|
|
|
let shareDesc = ref('请点击查看简历详情')
|
|
|
let shareImage = ref('')
|
|
|
|
|
|
+ function getXinyongText(value) {
|
|
|
+ if (value == 0) return '信誉未查';
|
|
|
+ if (value == 1) return '信誉正常';
|
|
|
+ if (value == 2) return '信誉异常';
|
|
|
+ return '';
|
|
|
+ }
|
|
|
+
|
|
|
function updateTimeClick() {
|
|
|
data.sortType = 1
|
|
|
const isFirst = isFirstClickUpdate.value == 'true';
|