|
@@ -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>
|