Browse Source

xiugai首页字段

newStyle
douzhuo 1 year ago
parent
commit
b57ae0d444
2 changed files with 11 additions and 6 deletions
  1. +10
    -5
      src/page/check/chose.vue
  2. +1
    -1
      src/page/wel.vue

+ 10
- 5
src/page/check/chose.vue View File

@@ -36,11 +36,16 @@
<div class="text-1">{{ item.agentName }}</div>
<div class="text-2">
服务状态:
<span
style="font-size: 12px"
:style="item.residueTime > 0 ? 'color:green;' : 'color:red;'"
>{{ item.residueTime > 0 ? "服务中" : "已过期" }}</span
>
<template v-if="item.lockFlag == 0">
<span
style="font-size: 12px"
:style="item.residueTime > 0 ? 'color:green;' : 'color:red;'"
>{{ item.residueTime > 0 ? "服务中" : "已过期" }}</span
>
</template>
<template v-else>
<span style="font-size: 12px" :style="'color:red;'">已禁用</span>
</template>
</div>
<div class="text-3">
{{ (item.provinceName || "-") + "-" + (item.cityName || "-") }}


+ 1
- 1
src/page/wel.vue View File

@@ -2626,7 +2626,7 @@ export default {
this.cardlist.datalist = res.data.todayStat
this.cardlist.liftlist = res.data.comparedStat
this.cardlist.sequential = res.data.yesterdayStat
})
});
},
//获取设备
findAllZkEquipment() {


Loading…
Cancel
Save