seimin vor 1 Monat
Ursprung
Commit
ca445058ca

+ 14 - 0
http/api.js

@@ -238,6 +238,13 @@ export function api_inspectionTask(data){
238 238
 }
239 239
 
240 240
 /**
241
+ * 获取巡检点列表
242
+ */
243
+export function api_inspectionNode(data){
244
+  return post("/simple/data/fetchDataList/inspectionNode", data);
245
+}
246
+
247
+/**
241 248
  * 获取巡检执行列表-数量
242 249
  */
243 250
 export function api_listCount(data){
@@ -279,6 +286,13 @@ export function api_addModel(data){
279 286
 }
280 287
 
281 288
 /**
289
+ * 巡检扫一扫
290
+ */
291
+export function api_scanNodeCode(data){
292
+  return post("/inspection/scanNodeCode", data);
293
+}
294
+
295
+/**
282 296
  * 报修端-公告
283 297
  */
284 298
 export function api_getNotice(data){

+ 9 - 0
pages.json

@@ -248,6 +248,15 @@
248 248
      }
249 249
    },
250 250
    {
251
+     "path": "pages/inspection/inspectionScanning/inspectionScanning",
252
+     "style": {
253
+       "h5": {
254
+         "titleNView": false
255
+       },
256
+       "enablePullDownRefresh": true
257
+     }
258
+   },
259
+   {
251 260
      "path": "pages/inspection/inspectionValue/inspectionValue",
252 261
      "style": {
253 262
        "h5": {

+ 91 - 5
pages/inspection/inspectionExecute/inspectionExecute.vue

@@ -40,6 +40,10 @@
40 40
     <view class="zanwu" v-else>
41 41
       <text class="newicon newicon-zanwu"></text>
42 42
     </view>
43
+    <view class="toolbar" @click="scanning()">
44
+      <text class="toolbar-icon newicon newicon-saoma"></text>
45
+      <text class="toolbar-sao">扫一扫</text>
46
+    </view>
43 47
     <InspectionListFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></InspectionListFilter>
44 48
   </view>
45 49
 </template>
@@ -50,7 +54,7 @@
50 54
   import { ref, reactive, computed } from 'vue'
51 55
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
52 56
   import { SM } from "@/http/http.js"
53
-  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode } from "@/http/api.js"
57
+  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_scanNodeCode } from "@/http/api.js"
54 58
   import { filterFormatDate } from '@/filters/filterFormatDate.js'
55 59
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
56 60
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
@@ -81,7 +85,7 @@
81 85
 
82 86
   const assignFlag = ref(false);//指派权限
83 87
   const qiangdan = ref(false);//接单权限
84
-
88
+  
85 89
   // 转换协同人
86 90
   const computedSynergetic = computed(() => (synergetic) => {
87 91
     return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
@@ -101,6 +105,63 @@
101 105
       acceptDate: [],
102 106
     },//筛选框数据
103 107
   })
108
+  
109
+  // 扫一扫
110
+  function scanning(){
111
+    uni.showLoading({
112
+      title: "加载中",
113
+      mask: true,
114
+    });
115
+    SM().then((ress1) => {
116
+      // ----------------------------------
117
+      let postData = {
118
+        queryTask: 'all',
119
+        code: ress1,
120
+        idx: 0,
121
+        sum: 1,
122
+        assignAccount: loginUserStore.loginUser.user.account,
123
+      };
124
+      api_scanNodeCode(postData).then((res) => {
125
+        if (res.status == 200) {
126
+          if(res.totalNum == 1){
127
+            let data = res.list[0];
128
+            let postData = {
129
+              code: ress1,
130
+              taskId: data.id,
131
+              account: loginUserStore.loginUser.user.account,
132
+            };
133
+            api_scanCode(postData).then((res) => {
134
+              uni.hideLoading();
135
+              if (res.status == 200) {
136
+                inspectionValueStore.setInspectionValueData(res.data);
137
+                uni.navigateTo({
138
+                  url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
139
+                })
140
+              } else {
141
+                uni.showToast({
142
+                  icon: 'none',
143
+                  title: res.msg || '请求数据失败!'
144
+                });
145
+              }
146
+            });
147
+          }else{
148
+            uni.hideLoading();
149
+            uni.navigateTo({
150
+              url: `/pages/inspection/inspectionScanning/inspectionScanning?inspectionNodeCode=${res.data.code}&inspectionNodeName=${res.data.name}`
151
+            })
152
+          }
153
+        } else {
154
+          uni.hideLoading();
155
+          uni.showToast({
156
+            icon: 'none',
157
+            title: res.msg || '请求数据失败!'
158
+          });
159
+        }
160
+      });
161
+    }).catch(err=>{
162
+      uni.hideLoading();
163
+    });
164
+  }
104 165
 
105 166
   // 巡检项
106 167
   function toInspectionValue(data){
@@ -296,6 +357,31 @@
296 357
 </script>
297 358
 
298 359
 <style lang="scss" scoped>
360
+.toolbar {
361
+  position: fixed;
362
+  left: 0;
363
+  bottom: var(--window-bottom);
364
+  z-index: 99;
365
+  width: 100%;
366
+  height: 88rpx;
367
+  display: flex;
368
+  justify-content: center;
369
+  align-items: center;
370
+  box-sizing: border-box;
371
+  border-radius: 4rpx;
372
+  background-color: #E5E8ED;
373
+
374
+  .toolbar-icon {
375
+    font-size: 52rpx;
376
+    margin-right: 16rpx;
377
+    color: #49B856;
378
+  }
379
+
380
+  .toolbar-sao {
381
+    font-size: 36rpx;
382
+    color: #333;
383
+  }
384
+}
299 385
 page{
300 386
   height: calc(100vh - var(--window-bottom));
301 387
 }
@@ -334,7 +420,7 @@ page{
334 420
     }
335 421
   }
336 422
   .body{
337
-    margin-bottom: var(--window-bottom);
423
+    margin-bottom: calc(var(--window-bottom) + 88rpx);
338 424
     margin-top: 88rpx;
339 425
     border-top: 6rpx solid #EBEBEB;
340 426
     .body_item{
@@ -395,10 +481,10 @@ page{
395 481
   }
396 482
   .zanwu{
397 483
     box-sizing: border-box;
398
-    margin-bottom: var(--window-bottom);
484
+    margin-bottom: calc(var(--window-bottom) + 88rpx);
399 485
     margin-top: 88rpx;
400 486
     border-top: 6rpx solid #EBEBEB;
401
-    height: calc(100vh - var(--window-bottom) - 88rpx);
487
+    height: calc(100vh - var(--window-bottom) - 176rpx);
402 488
     display: flex;
403 489
     justify-content: center;
404 490
     background-color: #F7F7F7;

+ 382 - 0
pages/inspection/inspectionScanning/inspectionScanning.vue

@@ -0,0 +1,382 @@
1
+<template>
2
+  <view class="incidentList">
3
+    <view class="title">{{dataInfo.inspectionNodeName}}</view>
4
+    <view class="head">
5
+      <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
6
+        {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
7
+      </view>
8
+    </view>
9
+    <view class="body" v-if="dataInfo.list.length">
10
+      <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
11
+        <view class="body_item_head ellipsis-multiline">
12
+          <text class="sign" v-if="dataInfo.tabActiveId == 1" :class="{signRed: data.exception == 1}">{{data.exception == 1 ? '异常' : '正常'}}</text>{{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
13
+        </view>
14
+
15
+        <view class="body_item_content">
16
+          <view class="body_item_content_p" v-if="data.inspectionDTO">
17
+            <text class="name ellipsis">计划标题:{{data.inspectionDTO.name}}</text>
18
+          </view>
19
+          <view class="body_item_content_p" v-if="data.signType">
20
+            <text class="name ellipsis">签到方式:{{data.signType.name}}</text>
21
+          </view>
22
+          <view class="body_item_content_p" v-if="data.userDTO || data.groupDTO">
23
+            <text class="name ellipsis">执行人或组:{{ data.userDTO?.name || data.groupDTO?.groupName }}</text>
24
+          </view>
25
+          <view class="body_item_content_p" v-if="data.status || data.addTime">
26
+            <text class="name ellipsis">状态:{{ data.status?.name}}</text>
27
+            <text class="date">{{formatDate(data.addTime, 'yyyy-MM-dd HH:mm')}}</text>
28
+          </view>
29
+        </view>
30
+
31
+        <view class="body_item_foot">
32
+          <view class="btns pt0">
33
+            <button v-if="data.status.value === '1' && dataInfo.tabActiveId === 0" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
34
+          </view>
35
+        </view>
36
+      </view>
37
+    </view>
38
+    <view class="zanwu" v-else>
39
+      <text class="newicon newicon-zanwu"></text>
40
+    </view>
41
+  </view>
42
+</template>
43
+
44
+<script setup>
45
+  import { startOfDay, endOfDay, format, add } from 'date-fns'
46
+  import { ref, reactive, computed } from 'vue'
47
+  import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
48
+  import { SM } from "@/http/http.js"
49
+  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode } from "@/http/api.js"
50
+  import { filterFormatDate } from '@/filters/filterFormatDate.js'
51
+  import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
52
+  import { computedStateStyle } from '@/filters/computedStateStyle.js'
53
+  import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
54
+  import { defaultColor } from '@/static/js/theme.js'
55
+  import { useSetTitle } from '@/share/useSetTitle.js'
56
+  import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
57
+  import { useLoginUserStore } from '@/stores/loginUser'
58
+  import { useIncidentNumStore } from '@/stores/incidentNum'
59
+  import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
60
+  import { useInspectionValueStore } from '@/stores/inspectionValue'
61
+  import { useSetTabbar } from '@/share/useSetTabbar.js'
62
+
63
+  useSetTitle();
64
+  const loginUserStore = useLoginUserStore();
65
+  const incidentNumStore = useIncidentNumStore();
66
+  const inspectionListSearchStore = useInspectionListSearchStore();
67
+  const inspectionValueStore = useInspectionValueStore();
68
+  const { formatDate }  = filterFormatDate();
69
+  const { priorityStyle }  = computedPriorityStyle();
70
+  const { stateStyle }  = computedStateStyle();
71
+  const { currentLogOverTime }  = computedCurrentLogOverTime();
72
+  const { makePhoneCall }  = useMakePhoneCall();
73
+  const { setTabbar }  = useSetTabbar();
74
+
75
+  // 主题颜色
76
+  const primaryColor = ref(defaultColor)
77
+  
78
+  // 数据
79
+  const dataInfo = reactive({
80
+    tabs: [{id: 0, name: '巡检工单', value: 'all', num: ''}, {id: 1, name: '历史工单', value: '', num: ''}],
81
+    tabActiveId: 0,//当前选择的tab
82
+    list: [],//工单列表
83
+    idx: 0,//页码
84
+    hasMore: true,//是否有更多数据
85
+    inspectionNodeDTO: {},
86
+    inspectionNodeCode: '',
87
+    inspectionNodeName: '',
88
+  })
89
+  
90
+  // 巡检项
91
+  function toInspectionValue(data){
92
+    uni.showLoading({
93
+      title: "加载中",
94
+      mask: true,
95
+    });
96
+    // 'inspection|$|1bd0c704-0962-4ed4-b5a6-b5bda3d78231'
97
+    // 'inspection|$|bc9f61af-99c8-4c86-88f9-f29dd3fc43c0'
98
+		// 'inspection|$|92e7bb9a-5f58-42f6-991a-fcd67247e295'
99
+    SM().then((ress1) => {
100
+      let postData = {
101
+        code: ress1,
102
+        taskId: data.id,
103
+        account: loginUserStore.loginUser.user.account,
104
+      };
105
+      api_scanCode(postData).then((res) => {
106
+        uni.hideLoading();
107
+        if (res.status == 200) {
108
+          inspectionValueStore.setInspectionValueData(res.data);
109
+          uni.navigateTo({
110
+            url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
111
+          })
112
+        } else {
113
+          uni.showToast({
114
+            icon: 'none',
115
+            title: res.msg || '请求数据失败!'
116
+          });
117
+        }
118
+      });
119
+    }).catch(err=>{
120
+      uni.hideLoading();
121
+    });
122
+  }
123
+
124
+  // 点击tab
125
+  function clickTab(tabId){
126
+    dataInfo.tabActiveId = tabId;
127
+    getList(0);
128
+  }
129
+
130
+  // 获取列表信息
131
+  function getList(idx){
132
+    uni.showLoading({
133
+      title: "加载中",
134
+      mask: true,
135
+    });
136
+    dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
137
+    if(dataInfo.idx === 0){
138
+      dataInfo.list = [];
139
+    }
140
+    let tabActiveObj = dataInfo.tabs.find(v => v.id == dataInfo.tabActiveId);
141
+    let tabActiveObjIndex = dataInfo.tabs.findIndex(v => v.id == dataInfo.tabActiveId);
142
+    let postData = {
143
+        "idx": dataInfo.idx,
144
+        "sum": 10,
145
+        "inspectionTask": {
146
+          "queryTask": tabActiveObj.value || undefined,
147
+          "assignAccount": tabActiveObj.id == 0 ? loginUserStore.loginUser.user.account : undefined,
148
+          "inspectionNodeDTO":{
149
+            code: dataInfo.inspectionNodeCode,
150
+          }
151
+        }
152
+    }
153
+
154
+    api_inspectionTask(postData).then(res => {
155
+      uni.hideLoading();
156
+      uni.stopPullDownRefresh();
157
+      if(res.status == 200){
158
+        let list = res.list || [];
159
+        dataInfo.tabs[tabActiveObjIndex].num = res.totalNum;
160
+        if(list.length){
161
+          dataInfo.hasMore = true;
162
+          dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
163
+          dataInfo.inspectionNodeDTO = list[0].inspectionNodeDTO;
164
+        }else{
165
+          dataInfo.hasMore = false;
166
+          dataInfo.inspectionNodeDTO = {};
167
+        }
168
+      }else{
169
+        uni.showToast({
170
+          icon: 'none',
171
+          title: res.msg || '请求数据失败!'
172
+        });
173
+      }
174
+    })
175
+
176
+    getCount(tabActiveObj.id);
177
+  }
178
+
179
+  // 获取列表数量
180
+  function getCount(id){
181
+    dataInfo.tabs.forEach(v => {
182
+      if(v.id != id){
183
+        let tabActiveObj = v;
184
+        let postData = {
185
+            "idx": 0,
186
+            "sum": 1,
187
+            "inspectionTask": {
188
+              "queryTask": tabActiveObj.value || undefined,
189
+              "assignAccount": tabActiveObj.id == 0 ? loginUserStore.loginUser.user.account : undefined,
190
+              "inspectionNodeDTO":{
191
+                code: dataInfo.inspectionNodeCode,
192
+              }
193
+            }
194
+        }
195
+        api_inspectionTask(postData).then(res => {
196
+          if(res.status == 200){
197
+            v.num = res.totalNum;
198
+          }else{
199
+            uni.showToast({
200
+              icon: 'none',
201
+              title: res.msg || '请求数据失败!'
202
+            });
203
+          }
204
+        })
205
+      }
206
+    })
207
+  }
208
+  
209
+  onLoad((option) => {
210
+    dataInfo.inspectionNodeCode = option.inspectionNodeCode;
211
+    dataInfo.inspectionNodeName = option.inspectionNodeName;
212
+    getList(0);
213
+  })
214
+
215
+  onPullDownRefresh(() => {
216
+    getList(0)
217
+  })
218
+
219
+  onReachBottom(() => {
220
+    dataInfo.idx += 1;
221
+    if (dataInfo.hasMore) {
222
+      getList(); // 当触底时加载更多数据
223
+    }
224
+  })
225
+</script>
226
+
227
+<style lang="scss" scoped>
228
+.toolbar {
229
+  position: fixed;
230
+  left: 0;
231
+  bottom: var(--window-bottom);
232
+  z-index: 99;
233
+  width: 100%;
234
+  height: 88rpx;
235
+  display: flex;
236
+  justify-content: center;
237
+  align-items: center;
238
+  box-sizing: border-box;
239
+  border-radius: 4rpx;
240
+  background-color: #E5E8ED;
241
+
242
+  .toolbar-icon {
243
+    font-size: 52rpx;
244
+    margin-right: 16rpx;
245
+    color: #49B856;
246
+  }
247
+
248
+  .toolbar-sao {
249
+    font-size: 36rpx;
250
+    color: #333;
251
+  }
252
+}
253
+.incidentList{
254
+  display: flex;
255
+  flex-direction: column;
256
+  justify-content: space-between;
257
+  .title{
258
+    width: 100%;
259
+    height: 88rpx;
260
+    position: fixed;
261
+    z-index: 99;
262
+    display: flex;
263
+    align-items: center;
264
+    justify-content: center;
265
+    background-color: #EBEBEB;
266
+    font-weight: bold;
267
+    font-size: 32rpx;
268
+  }
269
+  .head{
270
+    height: 88rpx;
271
+    display: flex;
272
+    top: 88rpx;
273
+    position: fixed;
274
+    z-index: 99;
275
+    width: 100%;
276
+    background-color: #fff;
277
+    font-size: 30rpx;
278
+    .tab{
279
+      flex: 1;
280
+      display: flex;
281
+      justify-content: center;
282
+      align-items: center;
283
+      border-bottom: 4rpx solid transparent;
284
+      &.active{
285
+        color: $uni-primary;
286
+        border-color: $uni-primary;
287
+      }
288
+    }
289
+    .filter{
290
+      width: 84rpx;
291
+      display: flex;
292
+      justify-content: center;
293
+      align-items: center;
294
+      .newicon-shaixuan{
295
+        font-size: 36rpx;
296
+        color: #2C2C2C;
297
+      }
298
+    }
299
+  }
300
+  .body{
301
+    margin-top: 176rpx;
302
+    border-top: 6rpx solid #EBEBEB;
303
+    .body_item{
304
+      border-bottom: 8rpx solid #EBEBEB;
305
+      .body_item_head{
306
+        word-break: break-all;
307
+        text-align: justify;
308
+        text-align: left;
309
+        margin: 24rpx;
310
+        font-size: 30rpx;
311
+        .sign{
312
+          margin-right: 16rpx;
313
+          font-weight: bold;
314
+          color: #49B856;
315
+          &.signRed{
316
+            color: #FF0000;
317
+          }
318
+        }
319
+      }
320
+      .body_item_content{
321
+        border-top: 1rpx solid #D8D8D8;
322
+        padding: 24rpx 24rpx 24rpx 48rpx;
323
+        .body_item_content_p{
324
+          color: #6A6A6A;
325
+          font-size: 26rpx;
326
+          display: flex;
327
+          justify-content: space-between;
328
+          align-items: center;
329
+          margin-bottom: 24rpx;
330
+          &:last-of-type{
331
+            margin-bottom: 0;
332
+          }
333
+          .name{
334
+            flex: 1;
335
+          }
336
+          .status{
337
+            padding: 4rpx 10rpx;
338
+            border-radius: 20rpx;
339
+            background-color: #DBE8FE;
340
+            font-size: 22rpx;
341
+            color: #006CF9;
342
+          }
343
+          .icon_all{
344
+            .mic-filled,
345
+            .image-filled
346
+            {
347
+              margin-left: 16rpx;
348
+            }
349
+          }
350
+        }
351
+      }
352
+      .body_item_foot{
353
+        border-top: 1rpx solid #D8D8D8;
354
+        font-size: 26rpx;
355
+        padding: 24rpx;
356
+        .foot_info{
357
+          display: flex;
358
+          justify-content: space-between;
359
+          align-items: center;
360
+          .phone-filled{
361
+            margin-left: 5rpx;
362
+          }
363
+        }
364
+      }
365
+    }
366
+  }
367
+  .zanwu{
368
+    box-sizing: border-box;
369
+    margin-top: 176rpx;
370
+    border-top: 6rpx solid #EBEBEB;
371
+    height: calc(100vh - 88rpx);
372
+    display: flex;
373
+    justify-content: center;
374
+    background-color: #F7F7F7;
375
+    .newicon-zanwu{
376
+      font-size: 256rpx;
377
+      color: #D6D6D6;
378
+      margin-top: 140rpx;
379
+    }
380
+  }
381
+}
382
+</style>