|
@@ -187,6 +187,14 @@
|
|
|
/>
|
|
/>
|
|
|
</template>
|
|
</template>
|
|
|
</van-cell>
|
|
</van-cell>
|
|
|
|
|
+
|
|
|
|
|
+ <van-cell v-show="point.pointDataSource==2||point.pointDataSource==3">
|
|
|
|
|
+ <template #title>
|
|
|
|
|
+ <pre class="gray-text">边缘主机自动巡查结果:{{ point.exceptionChannelNum }}个通道存在{{point.pointDataSource == 2 ?'录像丢失':'视频质量'}}问题</pre>
|
|
|
|
|
+ <a @click="viewDetails(point)"
|
|
|
|
|
+ :class="{ 'link-color': point.pointDataSource == 2 || point.pointDataSource == 3 }">查看详情</a>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </van-cell>
|
|
|
<van-cell-group v-show="point.resValue">
|
|
<van-cell-group v-show="point.resValue">
|
|
|
<van-field
|
|
<van-field
|
|
|
:rules="[
|
|
:rules="[
|
|
@@ -795,6 +803,9 @@
|
|
|
this.NFCnums = nfcs
|
|
this.NFCnums = nfcs
|
|
|
this.selectArea = area
|
|
this.selectArea = area
|
|
|
},
|
|
},
|
|
|
|
|
+ viewDetails(point){
|
|
|
|
|
+ console.log("point",point)
|
|
|
|
|
+ },
|
|
|
//保存数据
|
|
//保存数据
|
|
|
resumptionDataSave() {
|
|
resumptionDataSave() {
|
|
|
//组装数据
|
|
//组装数据
|
|
@@ -926,6 +937,13 @@
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
|
+
|
|
|
|
|
+.gray-text {
|
|
|
|
|
+ color: #999;
|
|
|
|
|
+}
|
|
|
|
|
+.link-color {
|
|
|
|
|
+ color: #3f51b5;
|
|
|
|
|
+}
|
|
|
.van-progress {
|
|
.van-progress {
|
|
|
z-index: 999;
|
|
z-index: 999;
|
|
|
width: 98%;
|
|
width: 98%;
|