Browse Source

Merge branch 'v0.0.9' of http://10.87.21.221:8000/jzyd_yyds/soc_app into v0.0.9

zhulu 1 year ago
parent
commit
698564b743
1 changed files with 18 additions and 0 deletions
  1. 18 0
      src/views/menu/resumption/detail.vue

+ 18 - 0
src/views/menu/resumption/detail.vue

@@ -187,6 +187,14 @@
                   />
                 </template>
               </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-field
                   :rules="[
@@ -795,6 +803,9 @@
         this.NFCnums = nfcs
         this.selectArea = area
       },
+      viewDetails(point){
+        console.log("point",point)
+      },
       //保存数据
       resumptionDataSave() {
         //组装数据
@@ -926,6 +937,13 @@
 </script>
 
 <style lang="scss" scoped>
+
+.gray-text {
+  color: #999;
+}
+.link-color {
+  color: #3f51b5;
+}
   .van-progress {
     z-index: 999;
     width: 98%;