Browse Source

工地监护:去除未监控时间

ZXW 7 years ago
parent
commit
5b9e6057c2

+ 3 - 3
src/widgets/PlanRegion/Widget.ts

@@ -1724,7 +1724,7 @@ class PlanRegion extends BaseWidget {
                 usertoken: this.AppX.appConfig.usertoken,
                 layerids: this.iszgs == true ? JSON.stringify(this.config.layerids_zgs) : JSON.stringify(this.config.layerids),// this.isgw == true ? JSON.stringify(this.config.layerids_gw) : JSON.stringify(this.config.layerids)
                 group_fields: [],
-                statistic_field: (calculateType == 2 ? "PIPELENGTH" : "OBJECTID"),
+                statistic_field: (calculateType == 2 ? "SHAPE.LEN" : "OBJECTID"),
                 statistic_type: ((calculateType == 3 || calculateType == 1) ? 1 : 2),
                 where: "",
                 geometry: this.tempregionjson,
@@ -1762,12 +1762,12 @@ class PlanRegion extends BaseWidget {
         if (data.code == 10000) {
             //替换英文字符
             var data2 = JSON.stringify(data);
-            var data3 = data2.replace(/PIPELENGTH/g, "长度/m");
+            var data3 = data2.replace(/SHAPE.LEN/g, "长度/m");
             var data4 = JSON.parse(data3);
             var length = 0.00;
             for (var i = 0; i < data4.result.rows.length; i++) {
                 for (var k = 0; k < data.result.rows[i].rows.length; k++) {
-                    length = (length + data.result.rows[i].rows[k]["PIPELENGTH"]).toFixed(2) - 0;
+                    length = (length + data.result.rows[i].rows[k]["SHAPE.LEN"]).toFixed(2) - 0;
                 }
             }
             this.pipe_length = length;

+ 3 - 3
src/widgets/PlanRegion/config.json

@@ -36,9 +36,9 @@
         "warnpoint": "5"
     },
     "rangeall": "00",
-    "LengthstatisticService": "/exts/TFExtentionSOE/statistic",
-    "layerids": [17],
-    "layerids_zgs": [17, 31],
+    "LengthstatisticService": "/exts/TFExtentionSOEbinzhou/statistic",
+    "layerids": [13,14,15,16],
+    "layerids_zgs": [13,14,15,16],
     "layerids_gw": [31],
     "gwcode": "0017",
     "managelayerindex": 0,

+ 4 - 8
src/widgets/XJBuildingSiteManage/Widget.html

@@ -80,7 +80,7 @@
                         <col width="4">
                         <col width="4">
                         <col width="4">
-                        <col width="4">
+                        <col class="noWatchTime" width="4">
                         <col width="4">
                         <col width="4">
                     </colgroup>
@@ -98,13 +98,10 @@
                             <th>工地状态</th>
                             <th>监护人</th>
                             <th>监护状态</th>
-
-
-
                             <th>监护开始时间</th>
                             <th>最近监护时间</th>
                             <th>监护时长</th>
-                            <th>未监护时间</th>
+                            <th class="noWatchTime">未监护时间</th>
                             <th>告知书</th>
                             <th>日志</th>
                         </tr>
@@ -118,8 +115,6 @@
                             <col width="2">
                             <col class="company" width="4">
                             <col class="department" width="4">
-
-                            <col width="4">
                             <col width="4">
                             <col width="4">
                             <col width="4">
@@ -128,6 +123,7 @@
                             <col width="4">
                             <col width="4">
                             <col width="4">
+                            <col class="noWatchTime" width="4">
                             <col width="4">
                             <col width="4">
                             <col width="4">
@@ -150,7 +146,7 @@
                                     <td title="%data%">%constructionType%</td>
                                     <td title="%data%">%chargerphone%</td>
                                     <td title="%data%">%createtime%</td>
-                                    <td title="%data%">%createtime%</td>
+                                    <td title="%data%" class="noWatchTime">%createtime%</td>
                                     <td>
                                         <a class="notification">%data%</a>
                                     </td>

+ 5 - 0
src/widgets/XJBuildingSiteManage/css/style.scss

@@ -94,6 +94,11 @@
                 width: 200px
             }
         }
+
+        /*去除监护时间*/
+        .noWatchTime{
+            display: none;
+        }
     }
 
     #XJBuildingSiteManage_additem,