浏览代码

直接处理不显示号码

seimin 2 年之前
父节点
当前提交
15a58166a3
共有 1 个文件被更改,包括 3 次插入9 次删除
  1. 3 9
      src/views/incidentDetails.vue

+ 3 - 9
src/views/incidentDetails.vue

@@ -71,7 +71,7 @@
71
               : "暂无"
71
               : "暂无"
72
           }}
72
           }}
73
         </div>
73
         </div>
74
-        <div>
74
+        <div v-if="data.incident.directProcess != 1">
75
           电话:&nbsp;&nbsp;<a
75
           电话:&nbsp;&nbsp;<a
76
             :href="'tel:' + data.incident.handlingPersonnelUser.phone"
76
             :href="'tel:' + data.incident.handlingPersonnelUser.phone"
77
             v-if="
77
             v-if="
@@ -91,16 +91,10 @@
91
         <!-- <a href="tel:13429850125"><i class="iconfont icon-shouji"></i></a> -->
91
         <!-- <a href="tel:13429850125"><i class="iconfont icon-shouji"></i></a> -->
92
         <i
92
         <i
93
           class="iconfont icon-shouji"
93
           class="iconfont icon-shouji"
94
-          v-if="
95
-            !data.incident.handlingPersonnelUser ||
96
-              !data.incident.handlingPersonnelUser.phone
97
-          "
94
+          v-if="(!data.incident.handlingPersonnelUser || !data.incident.handlingPersonnelUser.phone) && data.incident.directProcess != 1"
98
         ></i>
95
         ></i>
99
         <a
96
         <a
100
-          v-if="
101
-            data.incident.handlingPersonnelUser &&
102
-              data.incident.handlingPersonnelUser.phone
103
-          "
97
+          v-if="data.incident.handlingPersonnelUser && data.incident.handlingPersonnelUser.phone && data.incident.directProcess != 1"
104
           :href="'tel:' + data.incident.handlingPersonnelUser.phone"
98
           :href="'tel:' + data.incident.handlingPersonnelUser.phone"
105
           ><i class="iconfont icon-shouji"></i
99
           ><i class="iconfont icon-shouji"></i
106
         ></a>
100
         ></a>