Browse Source

Merge branch 'develop' of http://git.dashitech.com/seimin/itsm-wx-handle into new-itsm-wx-handle

maotao 2 weeks ago
parent
commit
db22b6bcd6

+ 23 - 6
pages/buildIncident/buildIncident.vue

@@ -267,7 +267,7 @@
267
   }
267
   }
268
 
268
 
269
   // 获取故障来源列表
269
   // 获取故障来源列表
270
-  function getSources(){
270
+  function getSources(sourceValue){
271
     uni.showLoading({
271
     uni.showLoading({
272
       title: "加载中",
272
       title: "加载中",
273
       mask: true,
273
       mask: true,
@@ -284,9 +284,13 @@
284
         value: v.id,
284
         value: v.id,
285
         key: v.value,
285
         key: v.value,
286
       }));
286
       }));
287
-      let discover = dataInfo.sourceList.find(v => v.key === 'leader');
288
-      if(discover){
289
-        incidentData.source = discover.value;
287
+      if(sourceValue){
288
+        incidentData.source = sourceValue;
289
+      }else{
290
+        let discover = dataInfo.sourceList.find(v => v.key === 'leader');
291
+        if(discover){
292
+          incidentData.source = discover.value;
293
+        }
290
       }
294
       }
291
     })
295
     })
292
   }
296
   }
@@ -440,7 +444,20 @@
440
 
444
 
441
   onLoad((option) => {
445
   onLoad((option) => {
442
     handlerStore.clearHandlerData();
446
     handlerStore.clearHandlerData();
443
-    if(incidentBuildStore.incidentBuild.data){
447
+    if(option.type == 'inspection'){
448
+      Object.assign(
449
+        incidentData,
450
+        incidentBuildStore.incidentBuild.data,
451
+        {
452
+          priority: incidentBuildStore.incidentBuild.data.priority ? incidentBuildStore.incidentBuild.data.priority.id : (incidentBuildStore.incidentBuild.data.category ? (incidentBuildStore.incidentBuild.data.category.priority ? incidentBuildStore.incidentBuild.data.category.priority.id : undefined) : undefined),
453
+          description: incidentBuildStore.incidentBuild.data.description || (incidentBuildStore.incidentBuild.data.category ? incidentBuildStore.incidentBuild.data.category.mutiCategory : undefined),
454
+        },
455
+      );
456
+    	if(incidentData.category && incidentData.category.id && !incidentBuildStore.incidentBuild.data.priority){
457
+    		getPriorityData()
458
+    	}
459
+      getSources(incidentBuildStore.incidentBuild.data.source);
460
+    }else if(incidentBuildStore.incidentBuild.data){
444
       Object.assign(
461
       Object.assign(
445
         incidentData,
462
         incidentData,
446
         incidentBuildStore.incidentBuild.data,
463
         incidentBuildStore.incidentBuild.data,
@@ -460,9 +477,9 @@
460
 			if(incidentData.category && incidentData.category.id){
477
 			if(incidentData.category && incidentData.category.id){
461
 				getPriorityData()
478
 				getPriorityData()
462
 			}
479
 			}
480
+      getSources();
463
     }
481
     }
464
     getBranchs();
482
     getBranchs();
465
-    getSources();
466
     getPrioritys();
483
     getPrioritys();
467
   })
484
   })
468
 </script>
485
 </script>

+ 75 - 2
pages/inspection/inspectionExecute/inspectionExecute.vue

@@ -11,7 +11,7 @@
11
     <view class="body" v-if="dataInfo.list.length">
11
     <view class="body" v-if="dataInfo.list.length">
12
       <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
12
       <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
13
         <view class="body_item_head ellipsis-multiline">
13
         <view class="body_item_head ellipsis-multiline">
14
-          {{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
14
+          <text class="sign" v-if="data.status.value == 2" :class="{signRed: data.exception == 1}">{{data.exception == 1 ? '异常' : '正常'}}</text>{{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
15
         </view>
15
         </view>
16
 
16
 
17
         <view class="body_item_content">
17
         <view class="body_item_content">
@@ -33,6 +33,7 @@
33
         <view class="body_item_foot">
33
         <view class="body_item_foot">
34
           <view class="btns pt0">
34
           <view class="btns pt0">
35
             <button v-if="data.status.value === '1'" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
35
             <button v-if="data.status.value === '1'" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
36
+            <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId && data.inspectionDTO.inspectionFormDTO.showOrder == 1" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
36
           </view>
37
           </view>
37
         </view>
38
         </view>
38
       </view>
39
       </view>
@@ -54,7 +55,7 @@
54
   import { ref, reactive, computed } from 'vue'
55
   import { ref, reactive, computed } from 'vue'
55
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
56
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
56
   import { SM } from "@/http/http.js"
57
   import { SM } from "@/http/http.js"
57
-  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_scanNodeCode } from "@/http/api.js"
58
+  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_scanNodeCode, api_listAttachment } from "@/http/api.js"
58
   import { filterFormatDate } from '@/filters/filterFormatDate.js'
59
   import { filterFormatDate } from '@/filters/filterFormatDate.js'
59
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
60
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
60
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
61
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
@@ -67,6 +68,7 @@
67
   import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
68
   import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
68
   import { useInspectionValueStore } from '@/stores/inspectionValue'
69
   import { useInspectionValueStore } from '@/stores/inspectionValue'
69
   import { useSetTabbar } from '@/share/useSetTabbar.js'
70
   import { useSetTabbar } from '@/share/useSetTabbar.js'
71
+  import { useIncidentBuildStore } from '@/stores/incidentBuild'
70
 
72
 
71
   useSetTitle();
73
   useSetTitle();
72
   const loginUserStore = useLoginUserStore();
74
   const loginUserStore = useLoginUserStore();
@@ -79,6 +81,7 @@
79
   const { currentLogOverTime }  = computedCurrentLogOverTime();
81
   const { currentLogOverTime }  = computedCurrentLogOverTime();
80
   const { makePhoneCall }  = useMakePhoneCall();
82
   const { makePhoneCall }  = useMakePhoneCall();
81
   const { setTabbar }  = useSetTabbar();
83
   const { setTabbar }  = useSetTabbar();
84
+  const incidentBuildStore = useIncidentBuildStore();
82
 
85
 
83
   // 主题颜色
86
   // 主题颜色
84
   const primaryColor = ref(defaultColor)
87
   const primaryColor = ref(defaultColor)
@@ -90,6 +93,9 @@
90
   const computedSynergetic = computed(() => (synergetic) => {
93
   const computedSynergetic = computed(() => (synergetic) => {
91
     return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
94
     return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
92
   })
95
   })
96
+  
97
+  // 故障来源列表
98
+  const defaultSourceValue = ref();
93
 
99
 
94
   // 数据
100
   // 数据
95
   const dataInfo = reactive({
101
   const dataInfo = reactive({
@@ -162,6 +168,64 @@
162
       uni.hideLoading();
168
       uni.hideLoading();
163
     });
169
     });
164
   }
170
   }
171
+  
172
+  // 获取故障来源列表
173
+  function getSources(){
174
+    let postData = {
175
+      "key": 'incident_source',
176
+      "type": "list",
177
+    };
178
+    api_getDictionary(postData).then(res => {
179
+      res = res || [];
180
+      let discover = res.find(v => v.value === 'inspection');
181
+      if(discover){
182
+        defaultSourceValue.value = discover.id;
183
+      }
184
+    })
185
+  }
186
+  
187
+  // 新建事件
188
+  async function toBuildIncident(res){
189
+  	incidentBuildStore.clearIncidentBuildData();
190
+   let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
191
+   let repairImgList = [];
192
+   if(imgObj){
193
+     let result = await api_listAttachment('inspection', res.id);
194
+     result.data = result.data || [];
195
+     result.data = result.data.filter(v => v.recordId == imgObj.itemId);
196
+     result.data = result.data.map(v => ({
197
+       url: location.origin + "/file" + v.relativeFilePath,
198
+       path: location.origin + "/file" + v.relativeFilePath,
199
+       size: v.size,
200
+       name: v.name,
201
+       extname: v.suffix,
202
+     }))
203
+     repairImgList = result.data;
204
+   }
205
+   
206
+   console.log(repairImgList, 'repairImgList')
207
+   
208
+   let incidentData = {
209
+     place: res.inspectionNodeDTO.floorDTO,
210
+     houseNumber: res.inspectionNodeDTO.address,
211
+     source: defaultSourceValue.value,
212
+     description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
213
+     requester: loginUserStore.loginUser.user,
214
+     branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
215
+     contacts: loginUserStore.loginUser.user.name,
216
+     contactsInformation: loginUserStore.loginUser.user.phone,
217
+     category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
218
+     department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
219
+     priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
220
+     repairImgList,
221
+     inspectionTaskId: res.id,
222
+   }
223
+   console.log(incidentData, 'incidentData')
224
+   incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
225
+   uni.navigateTo({
226
+     url: `/pages/buildIncident/buildIncident?type=inspection`
227
+   })
228
+  }
165
 
229
 
166
   // 巡检项
230
   // 巡检项
167
   function toInspectionValue(data){
231
   function toInspectionValue(data){
@@ -334,6 +398,7 @@
334
   }
398
   }
335
 
399
 
336
   onLoad((option) => {
400
   onLoad((option) => {
401
+    getSources();
337
     for(let i = 0; i<7; i++){
402
     for(let i = 0; i<7; i++){
338
     	setTabbar(i)
403
     	setTabbar(i)
339
     }
404
     }
@@ -431,6 +496,14 @@ page{
431
         text-align: left;
496
         text-align: left;
432
         margin: 24rpx;
497
         margin: 24rpx;
433
         font-size: 30rpx;
498
         font-size: 30rpx;
499
+        .sign{
500
+          margin-right: 16rpx;
501
+          font-weight: bold;
502
+          color: #49B856;
503
+          &.signRed{
504
+            color: #FF0000;
505
+          }
506
+        }
434
       }
507
       }
435
       .body_item_content{
508
       .body_item_content{
436
         border-top: 1rpx solid #D8D8D8;
509
         border-top: 1rpx solid #D8D8D8;

+ 67 - 2
pages/inspection/inspectionScanning/inspectionScanning.vue

@@ -9,7 +9,7 @@
9
     <view class="body" v-if="dataInfo.list.length">
9
     <view class="body" v-if="dataInfo.list.length">
10
       <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
10
       <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
11
         <view class="body_item_head ellipsis-multiline">
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 }}
12
+          <text class="sign" v-if="data.status.value == 2" :class="{signRed: data.exception == 1}">{{data.exception == 1 ? '异常' : '正常'}}</text>{{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
13
         </view>
13
         </view>
14
 
14
 
15
         <view class="body_item_content">
15
         <view class="body_item_content">
@@ -31,6 +31,7 @@
31
         <view class="body_item_foot">
31
         <view class="body_item_foot">
32
           <view class="btns pt0">
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>
33
             <button v-if="data.status.value === '1' && dataInfo.tabActiveId === 0" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
34
+            <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId && data.inspectionDTO.inspectionFormDTO.showOrder == 1" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
34
           </view>
35
           </view>
35
         </view>
36
         </view>
36
       </view>
37
       </view>
@@ -46,7 +47,7 @@
46
   import { ref, reactive, computed } from 'vue'
47
   import { ref, reactive, computed } from 'vue'
47
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
48
   import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
48
   import { SM } from "@/http/http.js"
49
   import { SM } from "@/http/http.js"
49
-  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode } from "@/http/api.js"
50
+  import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode, api_listAttachment } from "@/http/api.js"
50
   import { filterFormatDate } from '@/filters/filterFormatDate.js'
51
   import { filterFormatDate } from '@/filters/filterFormatDate.js'
51
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
52
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
52
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
53
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
@@ -59,6 +60,7 @@
59
   import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
60
   import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
60
   import { useInspectionValueStore } from '@/stores/inspectionValue'
61
   import { useInspectionValueStore } from '@/stores/inspectionValue'
61
   import { useSetTabbar } from '@/share/useSetTabbar.js'
62
   import { useSetTabbar } from '@/share/useSetTabbar.js'
63
+  import { useIncidentBuildStore } from '@/stores/incidentBuild'
62
 
64
 
63
   useSetTitle();
65
   useSetTitle();
64
   const loginUserStore = useLoginUserStore();
66
   const loginUserStore = useLoginUserStore();
@@ -71,10 +73,14 @@
71
   const { currentLogOverTime }  = computedCurrentLogOverTime();
73
   const { currentLogOverTime }  = computedCurrentLogOverTime();
72
   const { makePhoneCall }  = useMakePhoneCall();
74
   const { makePhoneCall }  = useMakePhoneCall();
73
   const { setTabbar }  = useSetTabbar();
75
   const { setTabbar }  = useSetTabbar();
76
+  const incidentBuildStore = useIncidentBuildStore();
74
 
77
 
75
   // 主题颜色
78
   // 主题颜色
76
   const primaryColor = ref(defaultColor)
79
   const primaryColor = ref(defaultColor)
77
   
80
   
81
+  // 故障来源列表
82
+  const defaultSourceValue = ref();
83
+  
78
   // 数据
84
   // 数据
79
   const dataInfo = reactive({
85
   const dataInfo = reactive({
80
     tabs: [{id: 0, name: '巡检工单', value: 'todo', num: ''}, {id: 1, name: '历史工单', value: '', num: ''}],
86
     tabs: [{id: 0, name: '巡检工单', value: 'todo', num: ''}, {id: 1, name: '历史工单', value: '', num: ''}],
@@ -88,6 +94,64 @@
88
     inspectionNodeName: '',
94
     inspectionNodeName: '',
89
   })
95
   })
90
   
96
   
97
+  // 获取故障来源列表
98
+  function getSources(){
99
+    let postData = {
100
+      "key": 'incident_source',
101
+      "type": "list",
102
+    };
103
+    api_getDictionary(postData).then(res => {
104
+      res = res || [];
105
+      let discover = res.find(v => v.value === 'inspection');
106
+      if(discover){
107
+        defaultSourceValue.value = discover.id;
108
+      }
109
+    })
110
+  }
111
+  
112
+  // 新建事件
113
+  async function toBuildIncident(res){
114
+  	incidentBuildStore.clearIncidentBuildData();
115
+   let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
116
+   let repairImgList = [];
117
+   if(imgObj){
118
+     let result = await api_listAttachment('inspection', res.id);
119
+     result.data = result.data || [];
120
+     result.data = result.data.filter(v => v.recordId == imgObj.itemId);
121
+     result.data = result.data.map(v => ({
122
+       url: location.origin + "/file" + v.relativeFilePath,
123
+       path: location.origin + "/file" + v.relativeFilePath,
124
+       size: v.size,
125
+       name: v.name,
126
+       extname: v.suffix,
127
+     }))
128
+     repairImgList = result.data;
129
+   }
130
+   
131
+   console.log(repairImgList, 'repairImgList')
132
+   
133
+   let incidentData = {
134
+     place: res.inspectionNodeDTO.floorDTO,
135
+     houseNumber: res.inspectionNodeDTO.address,
136
+     source: defaultSourceValue.value,
137
+     description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
138
+     requester: loginUserStore.loginUser.user,
139
+     branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
140
+     contacts: loginUserStore.loginUser.user.name,
141
+     contactsInformation: loginUserStore.loginUser.user.phone,
142
+     category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
143
+     department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
144
+     priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
145
+     repairImgList,
146
+     inspectionTaskId: res.id,
147
+   }
148
+   console.log(incidentData, 'incidentData')
149
+   incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
150
+   uni.navigateTo({
151
+     url: `/pages/buildIncident/buildIncident?type=inspection`
152
+   })
153
+  }
154
+  
91
   // 巡检项
155
   // 巡检项
92
   function toInspectionValue(data){
156
   function toInspectionValue(data){
93
     uni.showLoading({
157
     uni.showLoading({
@@ -206,6 +270,7 @@
206
   }
270
   }
207
   
271
   
208
   onLoad((option) => {
272
   onLoad((option) => {
273
+    getSources();
209
     dataInfo.inspectionNodeCode = option.inspectionNodeCode;
274
     dataInfo.inspectionNodeCode = option.inspectionNodeCode;
210
     dataInfo.inspectionNodeNewCode = option.inspectionNodeNewCode;
275
     dataInfo.inspectionNodeNewCode = option.inspectionNodeNewCode;
211
     dataInfo.inspectionNodeName = option.inspectionNodeName;
276
     dataInfo.inspectionNodeName = option.inspectionNodeName;

+ 134 - 5
pages/inspection/inspectionValue/inspectionValue.vue

@@ -72,7 +72,7 @@
72
   import DsFilePicker from '@/components/DsFilePicker.vue';
72
   import DsFilePicker from '@/components/DsFilePicker.vue';
73
   import { ref, reactive, nextTick } from 'vue'
73
   import { ref, reactive, nextTick } from 'vue'
74
   import { onLoad } from '@dcloudio/uni-app'
74
   import { onLoad } from '@dcloudio/uni-app'
75
-  import { api_addModel } from "@/http/api.js"
75
+  import { api_addModel, api_getDictionary } from "@/http/api.js"
76
   import { defaultColor } from '@/static/js/theme.js'
76
   import { defaultColor } from '@/static/js/theme.js'
77
   import { useSetTitle } from '@/share/useSetTitle.js'
77
   import { useSetTitle } from '@/share/useSetTitle.js'
78
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
78
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
@@ -80,17 +80,22 @@
80
   import { useLoginUserStore } from '@/stores/loginUser'
80
   import { useLoginUserStore } from '@/stores/loginUser'
81
   import { useInspectionValueStore } from '@/stores/inspectionValue'
81
   import { useInspectionValueStore } from '@/stores/inspectionValue'
82
   import { forIn } from 'lodash-es';
82
   import { forIn } from 'lodash-es';
83
+  import { useIncidentBuildStore } from '@/stores/incidentBuild'
83
 
84
 
84
   useSetTitle();
85
   useSetTitle();
85
   const loginUserStore = useLoginUserStore();
86
   const loginUserStore = useLoginUserStore();
86
   const { goBack }  = useGoBack();
87
   const { goBack }  = useGoBack();
87
   const inspectionValueStore = useInspectionValueStore();
88
   const inspectionValueStore = useInspectionValueStore();
89
+  const incidentBuildStore = useIncidentBuildStore();
88
 
90
 
89
   // 主题颜色
91
   // 主题颜色
90
   const primaryColor = ref(defaultColor)
92
   const primaryColor = ref(defaultColor)
91
 
93
 
92
   // 所有页码数据
94
   // 所有页码数据
93
   const formPageList = reactive([]);
95
   const formPageList = reactive([]);
96
+  
97
+  // 故障来源列表
98
+  const defaultSourceValue = ref();
94
 
99
 
95
   // 表单
100
   // 表单
96
   const baseForm = ref()
101
   const baseForm = ref()
@@ -132,6 +137,61 @@
132
   function changeForm(){
137
   function changeForm(){
133
     handleData(true);
138
     handleData(true);
134
   }
139
   }
140
+  
141
+  // 跳转巡检列表
142
+  function toInspectionExecute(){
143
+    inspectionValueStore.clearInspectionValueData();
144
+    uni.reLaunch({
145
+      url: `/pages/inspection/inspectionExecute/inspectionExecute`
146
+    })
147
+  }
148
+  
149
+  // 获取故障来源列表
150
+  function getSources(){
151
+    let postData = {
152
+      "key": 'incident_source',
153
+      "type": "list",
154
+    };
155
+    api_getDictionary(postData).then(res => {
156
+      res = res || [];
157
+      let discover = res.find(v => v.value === 'inspection');
158
+      if(discover){
159
+        defaultSourceValue.value = discover.id;
160
+      }
161
+    })
162
+  }
163
+  
164
+  // 跳转新建事件
165
+  function toBuildIncident(res){
166
+    let imgList = Object.values(itemRefs.value);
167
+    let repairImgList = [];
168
+    if(imgList.length){
169
+      repairImgList = imgList[0].baseFormData.handlerImgList;
170
+    }
171
+
172
+    let incidentData = {
173
+      place: res.inspectionNode.floorDTO,
174
+      houseNumber: res.inspectionNode.address,
175
+      source: defaultSourceValue.value,
176
+      description: res.inspectionValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
177
+      requester: loginUserStore.loginUser.user,
178
+      branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
179
+      contacts: loginUserStore.loginUser.user.name,
180
+      contactsInformation: loginUserStore.loginUser.user.phone,
181
+      category: res.inspectionForm.categoryDTO,
182
+      department: res.inspectionForm.repairDeptDTO,
183
+      priority: res.inspectionForm.priorityDTO,
184
+      repairImgList,
185
+      inspectionTaskId: res.id,
186
+    }
187
+    console.log(repairImgList, 'repairImgList')
188
+    console.log(incidentData, 'incidentData')
189
+    incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
190
+    inspectionValueStore.clearInspectionValueData();
191
+    uni.navigateTo({
192
+      url: `/pages/buildIncident/buildIncident?type=inspection`
193
+    })
194
+  }
135
 
195
 
136
   // 保存
196
   // 保存
137
   function submit(){
197
   function submit(){
@@ -194,10 +254,75 @@
194
             Object.values(itemRefs.value).forEach(v => {
254
             Object.values(itemRefs.value).forEach(v => {
195
               v && v.uploadFn();
255
               v && v.uploadFn();
196
             })
256
             })
197
-            inspectionValueStore.clearInspectionValueData();
198
-            uni.reLaunch({
199
-              url: `/pages/inspection/inspectionExecute/inspectionExecute`
200
-            })
257
+
258
+            if(res.exception){
259
+              // 异常
260
+              if(res.inspectionForm.createOrder == 1){
261
+                // 是否自动生成维修单
262
+                uni.showModal({
263
+                	title: '提示',
264
+                	content: `巡检提交成功,您巡检有产生异常;系统自动生成工单:${res.incidentSign}`,
265
+                  showCancel: false,
266
+                  confirmText: '返回巡检列表',
267
+                	success: (res) => {
268
+                		if (res.confirm) {
269
+                      toInspectionExecute();
270
+                		}
271
+                	}
272
+                });
273
+              } else if(res.inspectionForm.showOrder == 1){
274
+                // 是否显示生成维修单
275
+                uni.showModal({
276
+                	title: '提示',
277
+                	content: '巡检提交成功,您巡检有产生异常,是否生成维修单',
278
+                  confirmText: '生成维修单',
279
+                  cancelText: '返回巡检列表',
280
+                	success: (result) => {
281
+                		if (result.confirm) {
282
+                			toBuildIncident(res);
283
+                		} else if (result.cancel) {
284
+                			toInspectionExecute();
285
+                		}
286
+                	}
287
+                });
288
+              } else {
289
+                uni.showToast({
290
+                  icon: 'none',
291
+                  title: "巡检提交成功,有异常",
292
+                  duration: 2000,
293
+                  mask: true,
294
+                })
295
+                setTimeout(() => {
296
+                  toInspectionExecute();
297
+                }, 2000)
298
+              }
299
+            }else{
300
+              // 无异常
301
+              uni.showToast({
302
+                icon: 'none',
303
+                title: "巡检提交成功,无异常",
304
+                duration: 2000,
305
+                mask: true,
306
+              })
307
+              setTimeout(() => {
308
+                toInspectionExecute();
309
+              }, 2000)
310
+            }
311
+          } else if(res.status == 555){
312
+            // 自动生成维修单失败
313
+            uni.showModal({
314
+            	title: '提示',
315
+            	content: '巡检提交成功,您巡检有产生异常;系统自动生成工单失败,请手动建单',
316
+              confirmText: '生成维修单',
317
+              cancelText: '返回巡检列表',
318
+            	success: (result) => {
319
+            		if (result.confirm) {
320
+            			toBuildIncident(res);
321
+            		} else if (result.cancel) {
322
+            			toInspectionExecute();
323
+            		}
324
+            	}
325
+            });
201
           } else {
326
           } else {
202
             uni.showToast({
327
             uni.showToast({
203
               icon: 'none',
328
               icon: 'none',
@@ -334,6 +459,7 @@
334
   }
459
   }
335
 
460
 
336
   onLoad((option) => {
461
   onLoad((option) => {
462
+    getSources();
337
     inspectionExecuteId.value = +option.inspectionExecuteId;
463
     inspectionExecuteId.value = +option.inspectionExecuteId;
338
     // 巡检项
464
     // 巡检项
339
     if(inspectionValueStore.inspectionValue.data){
465
     if(inspectionValueStore.inspectionValue.data){
@@ -352,6 +478,9 @@
352
     margin-top: 8rpx;
478
     margin-top: 8rpx;
353
   }
479
   }
354
 }
480
 }
481
+::v-deep .uni-modal__btn_primary{
482
+  color: $uni-primary!important;
483
+}
355
 .inspectionValue{
484
 .inspectionValue{
356
   height: 100%;
485
   height: 100%;
357
   display: flex;
486
   display: flex;