瀏覽代碼

待接单支持转派,转派指派建单查询人员根据分组查询

seimin 3 月之前
父節點
當前提交
33ad9cade2
共有 5 個文件被更改,包括 345 次插入305 次删除
  1. 54 49
      components/IncidentListFilter.vue
  2. 115 110
      pages/assign/assign.vue
  3. 86 66
      pages/changeUser/changeUser.vue
  4. 73 68
      pages/handler/handler.vue
  5. 17 12
      pages/incidentList/incidentList.vue

+ 54 - 49
components/IncidentListFilter.vue

@@ -5,34 +5,34 @@
5
         <text class="name">院区</text>
5
         <text class="name">院区</text>
6
         <text class="value">{{loginUserStore.loginUser.user.currentHospital.hosName}}</text>
6
         <text class="value">{{loginUserStore.loginUser.user.currentHospital.hosName}}</text>
7
       </view>
7
       </view>
8
-      
8
+
9
 			<view class="category" v-if="showDept">
9
 			<view class="category" v-if="showDept">
10
 			  <text class="name">维修科室</text>
10
 			  <text class="name">维修科室</text>
11
 			  <text class="value flex-1">
11
 			  <text class="value flex-1">
12
 					<uni-data-picker @change="deptChange" v-model="searchData.deptValue" :localdata="pageData.deptList" popup-title="请选择维修科室" :map="{text:'hosName',value:'id'}">
12
 					<uni-data-picker @change="deptChange" v-model="searchData.deptValue" :localdata="pageData.deptList" popup-title="请选择维修科室" :map="{text:'hosName',value:'id'}">
13
-						
13
+
14
 					</uni-data-picker>
14
 					</uni-data-picker>
15
 				</text>
15
 				</text>
16
 			</view>
16
 			</view>
17
-			
17
+
18
       <view class="tabs">
18
       <view class="tabs">
19
         <view class="tab" :class="{active: tab.value === searchData.selected}" v-for="tab in tabs" :key="tab.value" @click="clickTab(tab)">{{tab.name}}<text class="newicon newicon-xuanzejiaobiao"></text></view>
19
         <view class="tab" :class="{active: tab.value === searchData.selected}" v-for="tab in tabs" :key="tab.value" @click="clickTab(tab)">{{tab.name}}<text class="newicon newicon-xuanzejiaobiao"></text></view>
20
       </view>
20
       </view>
21
-      
21
+
22
       <view class="area" @click="clickPageRouter('area')">
22
       <view class="area" @click="clickPageRouter('area')">
23
         <text class="name">楼栋</text>
23
         <text class="name">楼栋</text>
24
         <text class="value ellipsis">{{searchData.area ? searchData.area.buildingName : ''}}</text>
24
         <text class="value ellipsis">{{searchData.area ? searchData.area.buildingName : ''}}</text>
25
       </view>
25
       </view>
26
-      
26
+
27
       <view class="category">
27
       <view class="category">
28
         <text class="name">故障现象</text>
28
         <text class="name">故障现象</text>
29
         <text class="value flex-1">
29
         <text class="value flex-1">
30
 					<uni-data-picker @change="categoryChange" v-model="searchData.categoryValue" :localdata="pageData.categoryList" popup-title="请选择故障信息" :map="{text:'category',value:'id'}">
30
 					<uni-data-picker @change="categoryChange" v-model="searchData.categoryValue" :localdata="pageData.categoryList" popup-title="请选择故障信息" :map="{text:'category',value:'id'}">
31
-						
31
+
32
 					</uni-data-picker>
32
 					</uni-data-picker>
33
 				</text>
33
 				</text>
34
       </view>
34
       </view>
35
-      
35
+
36
       <view class="acceptDate" @click="changeIsShowDate()">
36
       <view class="acceptDate" @click="changeIsShowDate()">
37
         <text class="name">登记时间</text>
37
         <text class="name">登记时间</text>
38
         <text class="value ellipsis" v-if="searchData.acceptDate.length">{{searchData.acceptDate[0] || ''}}至{{searchData.acceptDate[1] || ''}}</text>
38
         <text class="value ellipsis" v-if="searchData.acceptDate.length">{{searchData.acceptDate[0] || ''}}至{{searchData.acceptDate[1] || ''}}</text>
@@ -61,7 +61,7 @@
61
       <view class="hospital">
61
       <view class="hospital">
62
         <text class="name">楼栋</text>
62
         <text class="name">楼栋</text>
63
       </view>
63
       </view>
64
-      
64
+
65
       <scroll-view scroll-y class="areas">
65
       <scroll-view scroll-y class="areas">
66
         <view class="areas_item" v-for="area in pageData.areaList" :key="area.id" @click="clickArea(area)">{{area.buildingName}}</view>
66
         <view class="areas_item" v-for="area in pageData.areaList" :key="area.id" @click="clickArea(area)">{{area.buildingName}}</view>
67
       </scroll-view>
67
       </scroll-view>
@@ -77,7 +77,7 @@
77
       <view class="hospital">
77
       <view class="hospital">
78
         <text class="name">故障现象</text>
78
         <text class="name">故障现象</text>
79
       </view>
79
       </view>
80
-      
80
+
81
       <scroll-view scroll-y class="categorys">
81
       <scroll-view scroll-y class="categorys">
82
         <view class="categorys_item" v-for="category in pageData.categoryList" :key="category.id" @click="clickCategory(category)">{{category.category}}</view>
82
         <view class="categorys_item" v-for="category in pageData.categoryList" :key="category.id" @click="clickCategory(category)">{{category.category}}</view>
83
       </scroll-view>
83
       </scroll-view>
@@ -90,7 +90,7 @@
90
   </view> -->
90
   </view> -->
91
   <view class="mask" @touchmove.stop.prevent></view>
91
   <view class="mask" @touchmove.stop.prevent></view>
92
   <view class="line" @touchmove.stop.prevent></view>
92
   <view class="line" @touchmove.stop.prevent></view>
93
-  
93
+
94
 </template>
94
 </template>
95
 
95
 
96
 <script setup>
96
 <script setup>
@@ -102,7 +102,7 @@
102
   import { api_area, getFetchDataList, api_incidentcategory } from "@/http/api.js"
102
   import { api_area, getFetchDataList, api_incidentcategory } from "@/http/api.js"
103
   import { defaultColor } from '@/static/js/theme.js'
103
   import { defaultColor } from '@/static/js/theme.js'
104
   import { transform } from '@/utils/index.js'
104
   import { transform } from '@/utils/index.js'
105
-	
105
+
106
   const emit = defineEmits(['cancelEmit', 'confirmEmit']);
106
   const emit = defineEmits(['cancelEmit', 'confirmEmit']);
107
   const { evt } = defineProps({
107
   const { evt } = defineProps({
108
     evt: {
108
     evt: {
@@ -111,23 +111,23 @@
111
     },
111
     },
112
   });
112
   });
113
   const loginUserStore = useLoginUserStore();
113
   const loginUserStore = useLoginUserStore();
114
-  
114
+
115
   // 主题颜色
115
   // 主题颜色
116
   const primaryColor = ref(defaultColor)
116
   const primaryColor = ref(defaultColor)
117
-  
117
+
118
   // 登记时间
118
   // 登记时间
119
   const isShowDate = ref(false)
119
   const isShowDate = ref(false)
120
-  
120
+
121
   const start = ref(format(startOfYear(add(new Date(), { years: -5})), 'yyyy-MM-dd'));
121
   const start = ref(format(startOfYear(add(new Date(), { years: -5})), 'yyyy-MM-dd'));
122
   const end = ref(format(endOfYear(add(new Date(), { years: 0})), 'yyyy-MM-dd'));
122
   const end = ref(format(endOfYear(add(new Date(), { years: 0})), 'yyyy-MM-dd'));
123
-  
123
+
124
   const tabs = reactive([
124
   const tabs = reactive([
125
     // { name: '全部事件', value: 'all' },
125
     // { name: '全部事件', value: 'all' },
126
     { name: '待我处理', value: 'todoingAll' },
126
     { name: '待我处理', value: 'todoingAll' },
127
     { name: '与我关联', value: 'owns' },
127
     { name: '与我关联', value: 'owns' },
128
     { name: '由我解决', value: 'resolve' },
128
     { name: '由我解决', value: 'resolve' },
129
   ])
129
   ])
130
-  
130
+
131
   // 页面数据
131
   // 页面数据
132
   const pageData = reactive({
132
   const pageData = reactive({
133
     pageRouter: 'default',
133
     pageRouter: 'default',
@@ -135,10 +135,10 @@
135
     categoryList: [],
135
     categoryList: [],
136
 		deptList:[]
136
 		deptList:[]
137
   });
137
   });
138
-  
138
+
139
 	// 是否开启跨科查看
139
 	// 是否开启跨科查看
140
 	const showDept = ref(false);
140
 	const showDept = ref(false);
141
-	
141
+
142
   const searchData = reactive({
142
   const searchData = reactive({
143
     hospital: {},
143
     hospital: {},
144
     selected: 'todoingAll',
144
     selected: 'todoingAll',
@@ -148,35 +148,35 @@
148
     acceptDate: [],
148
     acceptDate: [],
149
 		deptValue: {}
149
 		deptValue: {}
150
   })
150
   })
151
-  
151
+
152
   // 显示登记时间
152
   // 显示登记时间
153
   function showDatechange(){
153
   function showDatechange(){
154
     isShowDate.value = !isShowDate.value;
154
     isShowDate.value = !isShowDate.value;
155
   }
155
   }
156
-  
156
+
157
   // 登记时间确定
157
   // 登记时间确定
158
   function bindDateChange(e){
158
   function bindDateChange(e){
159
     console.log(e);
159
     console.log(e);
160
     searchData.acceptDate = e;
160
     searchData.acceptDate = e;
161
   }
161
   }
162
-  
162
+
163
   // 点击tab
163
   // 点击tab
164
   function clickTab(tab){
164
   function clickTab(tab){
165
     searchData.selected = tab.value;
165
     searchData.selected = tab.value;
166
   }
166
   }
167
-  
167
+
168
   // 点击区域
168
   // 点击区域
169
   function clickArea(area){
169
   function clickArea(area){
170
     pageData.pageRouter = 'default';
170
     pageData.pageRouter = 'default';
171
     searchData.area = area;
171
     searchData.area = area;
172
   }
172
   }
173
-  
173
+
174
   // 点击故障现象
174
   // 点击故障现象
175
   function clickCategory(category){
175
   function clickCategory(category){
176
     pageData.pageRouter = 'default';
176
     pageData.pageRouter = 'default';
177
     searchData.category = category;
177
     searchData.category = category;
178
   }
178
   }
179
-  
179
+
180
   // 清空
180
   // 清空
181
   function clear(){
181
   function clear(){
182
     setHospital();
182
     setHospital();
@@ -188,17 +188,17 @@
188
 		searchData.deptValue = {};
188
 		searchData.deptValue = {};
189
     console.log(searchData.acceptDate)
189
     console.log(searchData.acceptDate)
190
   }
190
   }
191
-  
191
+
192
   // 取消
192
   // 取消
193
   function cancel(){
193
   function cancel(){
194
     emit('cancelEmit')
194
     emit('cancelEmit')
195
   }
195
   }
196
-  
196
+
197
   // 确认
197
   // 确认
198
   function confirm(){
198
   function confirm(){
199
     emit('confirmEmit', searchData);
199
     emit('confirmEmit', searchData);
200
   }
200
   }
201
-  
201
+
202
   // 设置院区
202
   // 设置院区
203
   function setHospital(){
203
   function setHospital(){
204
     if (loginUserStore.loginUser.user.duty) {
204
     if (loginUserStore.loginUser.user.duty) {
@@ -215,24 +215,24 @@
215
       };
215
       };
216
     }
216
     }
217
   }
217
   }
218
-  
218
+
219
 	// 选择维修科室
219
 	// 选择维修科室
220
 	function deptChange(val){
220
 	function deptChange(val){
221
 		searchData.deptValue = val.detail.value[val.detail.value.length-1]
221
 		searchData.deptValue = val.detail.value[val.detail.value.length-1]
222
 	}
222
 	}
223
-	
223
+
224
 	// 选择故障现象
224
 	// 选择故障现象
225
 	function categoryChange(val){
225
 	function categoryChange(val){
226
 		searchData.category = val.detail.value[val.detail.value.length-1]
226
 		searchData.category = val.detail.value[val.detail.value.length-1]
227
 	}
227
 	}
228
-	
228
+
229
   // 获取楼栋列表
229
   // 获取楼栋列表
230
   function getAreaList(){
230
   function getAreaList(){
231
     uni.showLoading({
231
     uni.showLoading({
232
       title: "加载中",
232
       title: "加载中",
233
       mask: true,
233
       mask: true,
234
     });
234
     });
235
-    
235
+
236
     // let postData = {
236
     // let postData = {
237
     //   idx: 0,
237
     //   idx: 0,
238
     //   sum: 9999,
238
     //   sum: 9999,
@@ -252,7 +252,7 @@
252
     //     });
252
     //     });
253
     //   }
253
     //   }
254
     // })
254
     // })
255
-		
255
+
256
 		let postData = {
256
 		let postData = {
257
 		  idx: 0,
257
 		  idx: 0,
258
 		  sum: 9999,
258
 		  sum: 9999,
@@ -272,14 +272,14 @@
272
 		    pageData.areaList = [{ id: 0, area: '全部' }, ...list];
272
 		    pageData.areaList = [{ id: 0, area: '全部' }, ...list];
273
 		  });
273
 		  });
274
   }
274
   }
275
-  
275
+
276
   // 获取故障现象列表
276
   // 获取故障现象列表
277
   function getCategoryList(){
277
   function getCategoryList(){
278
     uni.showLoading({
278
     uni.showLoading({
279
       title: "加载中",
279
       title: "加载中",
280
       mask: true,
280
       mask: true,
281
     });
281
     });
282
-    
282
+
283
     let postData = {
283
     let postData = {
284
     		hasThird:true,
284
     		hasThird:true,
285
     		category: {
285
     		category: {
@@ -291,7 +291,7 @@
291
     // }else if(loginUserStore.loginUser.user.branch){
291
     // }else if(loginUserStore.loginUser.user.branch){
292
     //   postData.incidentcategory.selectType = 'one';
292
     //   postData.incidentcategory.selectType = 'one';
293
     // }
293
     // }
294
-    
294
+
295
     // api_incidentcategory(postData).then(res => {
295
     // api_incidentcategory(postData).then(res => {
296
     //   uni.hideLoading();
296
     //   uni.hideLoading();
297
     //   if(res.status == 200){
297
     //   if(res.status == 200){
@@ -304,8 +304,8 @@
304
     //     });
304
     //     });
305
     //   }
305
     //   }
306
     // })
306
     // })
307
-		
308
-		
307
+
308
+
309
 		 api_incidentcategory(postData).then(res => {
309
 		 api_incidentcategory(postData).then(res => {
310
 		   uni.hideLoading();
310
 		   uni.hideLoading();
311
 		   if(res.status == 200){
311
 		   if(res.status == 200){
@@ -320,7 +320,7 @@
320
 		   }
320
 		   }
321
 		 })
321
 		 })
322
   }
322
   }
323
-  
323
+
324
   // 页面路由跳转
324
   // 页面路由跳转
325
   function clickPageRouter(type){
325
   function clickPageRouter(type){
326
     pageData.pageRouter = type;
326
     pageData.pageRouter = type;
@@ -330,18 +330,23 @@
330
       break;
330
       break;
331
     }
331
     }
332
   }
332
   }
333
-  
333
+
334
   // 显示登记时间
334
   // 显示登记时间
335
   function changeIsShowDate(type){
335
   function changeIsShowDate(type){
336
     isShowDate.value = true;
336
     isShowDate.value = true;
337
   }
337
   }
338
-  
338
+
339
   onLoad((option) => {
339
   onLoad((option) => {
340
 		getCategoryList()
340
 		getCategoryList()
341
     // searchData.hospital = evt.hospital;
341
     // searchData.hospital = evt.hospital;
342
     for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
342
     for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
343
-      if (loginUserStore.loginUser.menu[i].link == "all") {
344
-        tabs.splice(0, 0 , { name: '全部事件', value: 'all' });
343
+      if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
344
+        let currentMenu = loginUserStore.loginUser.menu[i].children;
345
+        for (let j = 0; j < currentMenu; j++) {
346
+            if (currentMenu[j].link == "all") {
347
+              tabs.splice(0, 0 , { name: '全部事件', value: 'all' });
348
+            }
349
+        }
345
       }
350
       }
346
     }
351
     }
347
 		let menu = JSON.parse(uni.getStorageSync("menuList")) || []; //菜单
352
 		let menu = JSON.parse(uni.getStorageSync("menuList")) || []; //菜单
@@ -403,7 +408,7 @@
403
   display: flex;
408
   display: flex;
404
   flex-direction: column;
409
   flex-direction: column;
405
   justify-content: space-between;
410
   justify-content: space-between;
406
-  
411
+
407
   .container_form{
412
   .container_form{
408
     height: 100%;
413
     height: 100%;
409
     display: flex;
414
     display: flex;
@@ -411,7 +416,7 @@
411
     flex: 1;
416
     flex: 1;
412
     min-height: 0;
417
     min-height: 0;
413
   }
418
   }
414
-  
419
+
415
   .hospital{
420
   .hospital{
416
     display: flex;
421
     display: flex;
417
     justify-content: space-between;
422
     justify-content: space-between;
@@ -428,7 +433,7 @@
428
       color: #5DAAB6;
433
       color: #5DAAB6;
429
     }
434
     }
430
   }
435
   }
431
-  
436
+
432
   .areas{
437
   .areas{
433
     flex: 1;
438
     flex: 1;
434
     min-height: 0;
439
     min-height: 0;
@@ -439,7 +444,7 @@
439
       border-bottom: 1rpx solid #DEDEDE;
444
       border-bottom: 1rpx solid #DEDEDE;
440
     }
445
     }
441
   }
446
   }
442
-  
447
+
443
   .categorys{
448
   .categorys{
444
     flex: 1;
449
     flex: 1;
445
     min-height: 0;
450
     min-height: 0;
@@ -450,7 +455,7 @@
450
       border-bottom: 1rpx solid #DEDEDE;
455
       border-bottom: 1rpx solid #DEDEDE;
451
     }
456
     }
452
   }
457
   }
453
-  
458
+
454
   .tabs{
459
   .tabs{
455
     margin-top: 16rpx;
460
     margin-top: 16rpx;
456
     background-color: #FBFBFB;
461
     background-color: #FBFBFB;
@@ -484,7 +489,7 @@
484
       }
489
       }
485
     }
490
     }
486
   }
491
   }
487
-  
492
+
488
   .area,
493
   .area,
489
   .category,
494
   .category,
490
   .acceptDate{
495
   .acceptDate{
@@ -503,7 +508,7 @@
503
 			flex: 3;
508
 			flex: 3;
504
 		}
509
 		}
505
   }
510
   }
506
-  
511
+
507
   .container_foot{
512
   .container_foot{
508
     .clear{
513
     .clear{
509
       padding: 24rpx;
514
       padding: 24rpx;

+ 115 - 110
pages/assign/assign.vue

@@ -15,7 +15,7 @@
15
 						<view class="title-fl-sb">
15
 						<view class="title-fl-sb">
16
 							解决方案:
16
 							解决方案:
17
 							<view @click="importRep('reissue','direct')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
17
 							<view @click="importRep('reissue','direct')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
18
-						</view>	
18
+						</view>
19
 					</view>
19
 					</view>
20
 					<uni-easyinput class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
20
 					<uni-easyinput class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
21
         </view>
21
         </view>
@@ -30,7 +30,7 @@
30
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理方式:</view>
30
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理方式:</view>
31
           <!-- <uni-data-select class="value" v-model="dataInfo.handleCategory" :localdata="dataInfo.handleCategoryList" :clear="false" placeholder="请选择处理方式" :class="{formRed: isSubmit && !dataInfo.handleCategory}"></uni-data-select> -->
31
           <!-- <uni-data-select class="value" v-model="dataInfo.handleCategory" :localdata="dataInfo.handleCategoryList" :clear="false" placeholder="请选择处理方式" :class="{formRed: isSubmit && !dataInfo.handleCategory}"></uni-data-select> -->
32
 					<uni-data-picker class="value" placeholder="请选择处理方式"
32
 					<uni-data-picker class="value" placeholder="请选择处理方式"
33
-						:localdata="dataInfo.handleCategoryList" v-model="dataInfo.handleCategory" 
33
+						:localdata="dataInfo.handleCategoryList" v-model="dataInfo.handleCategory"
34
 						:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handleCategory}">
34
 						:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handleCategory}">
35
 					</uni-data-picker>
35
 					</uni-data-picker>
36
 				</view>
36
 				</view>
@@ -38,7 +38,7 @@
38
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
38
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
39
           <!-- <uni-data-select class="value" v-model="dataInfo.closecode" :localdata="dataInfo.closecodeList" :clear="false" placeholder="请选择处理结果" :class="{formRed: isSubmit && !dataInfo.closecode}"></uni-data-select> -->
39
           <!-- <uni-data-select class="value" v-model="dataInfo.closecode" :localdata="dataInfo.closecodeList" :clear="false" placeholder="请选择处理结果" :class="{formRed: isSubmit && !dataInfo.closecode}"></uni-data-select> -->
40
 					<uni-data-picker class="value" placeholder="请选择处理结果"
40
 					<uni-data-picker class="value" placeholder="请选择处理结果"
41
-						:localdata="dataInfo.closecodeList" v-model="dataInfo.closecode" 
41
+						:localdata="dataInfo.closecodeList" v-model="dataInfo.closecode"
42
 						:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.closecode}">
42
 						:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.closecode}">
43
 					</uni-data-picker>
43
 					</uni-data-picker>
44
 				</view>
44
 				</view>
@@ -62,7 +62,7 @@
62
           </view>
62
           </view>
63
         </view>
63
         </view>
64
       </template>
64
       </template>
65
-      
65
+
66
       <!-- 补单 -->
66
       <!-- 补单 -->
67
       <template v-if="dataInfo.tabActiveValue === 'supplement' && dataInfo.supplementFlag">
67
       <template v-if="dataInfo.tabActiveValue === 'supplement' && dataInfo.supplementFlag">
68
         <view class="form_item">
68
         <view class="form_item">
@@ -80,12 +80,12 @@
80
         <view class="form_item">
80
         <view class="form_item">
81
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理人:</view>
81
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理人:</view>
82
         	<uni-data-picker class="value" placeholder="请选择处理人"
82
         	<uni-data-picker class="value" placeholder="请选择处理人"
83
-        		:localdata="dataInfo.userList" v-model="dataInfo.handlingPersonnelUserId" 
83
+        		:localdata="dataInfo.userList" v-model="dataInfo.handlingPersonnelUserId"
84
         		:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handlingPersonnelUserId}">
84
         		:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handlingPersonnelUserId}">
85
         	</uni-data-picker>
85
         	</uni-data-picker>
86
         </view>
86
         </view>
87
       </template>
87
       </template>
88
-      
88
+
89
       <!-- 补单-下一步 -->
89
       <!-- 补单-下一步 -->
90
       <template v-if="dataInfo.tabActiveValue === 'supplement' && !dataInfo.supplementFlag">
90
       <template v-if="dataInfo.tabActiveValue === 'supplement' && !dataInfo.supplementFlag">
91
         <view class="form_item column" v-if="HandleData.simpleness != 1">
91
         <view class="form_item column" v-if="HandleData.simpleness != 1">
@@ -94,7 +94,7 @@
94
 						<view class="title-fl-sb">
94
 						<view class="title-fl-sb">
95
 							解决方案:
95
 							解决方案:
96
 							<view @click="importRep('reissue','reissue')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
96
 							<view @click="importRep('reissue','reissue')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
97
-						</view>	
97
+						</view>
98
 					</view>
98
 					</view>
99
           <uni-easyinput class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
99
           <uni-easyinput class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
100
         </view>
100
         </view>
@@ -108,14 +108,14 @@
108
         <view class="form_item">
108
         <view class="form_item">
109
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理方式:</view>
109
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理方式:</view>
110
         	<uni-data-picker class="value" placeholder="请选择处理方式"
110
         	<uni-data-picker class="value" placeholder="请选择处理方式"
111
-        		:localdata="dataInfo.handleCategoryList" v-model="dataInfo.handleCategory" 
111
+        		:localdata="dataInfo.handleCategoryList" v-model="dataInfo.handleCategory"
112
         		:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handleCategory}">
112
         		:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.handleCategory}">
113
         	</uni-data-picker>
113
         	</uni-data-picker>
114
         </view>
114
         </view>
115
         <view class="form_item" v-if="HandleData.simpleness != 1">
115
         <view class="form_item" v-if="HandleData.simpleness != 1">
116
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
116
           <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
117
         	<uni-data-picker class="value" placeholder="请选择处理结果"
117
         	<uni-data-picker class="value" placeholder="请选择处理结果"
118
-        		:localdata="dataInfo.closecodeList" v-model="dataInfo.closecode" 
118
+        		:localdata="dataInfo.closecodeList" v-model="dataInfo.closecode"
119
         		:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.closecode}">
119
         		:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.closecode}">
120
         	</uni-data-picker>
120
         	</uni-data-picker>
121
         </view>
121
         </view>
@@ -139,14 +139,14 @@
139
           </view>
139
           </view>
140
         </view>
140
         </view>
141
       </template>
141
       </template>
142
-      
142
+
143
       <!-- 派单 -->
143
       <!-- 派单 -->
144
       <template v-if="dataInfo.tabActiveValue === 'assign'">
144
       <template v-if="dataInfo.tabActiveValue === 'assign'">
145
         <view class="form_item">
145
         <view class="form_item">
146
           <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
146
           <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
147
           <!-- <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择工作组" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select> -->
147
           <!-- <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择工作组" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select> -->
148
 					<uni-data-picker class="value" placeholder="请选择工作组"
148
 					<uni-data-picker class="value" placeholder="请选择工作组"
149
-						:localdata="dataInfo.groupList" v-model="dataInfo.groupId" 
149
+						:localdata="dataInfo.groupList" v-model="dataInfo.groupId"
150
 						:clear-icon="false" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}">
150
 						:clear-icon="false" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}">
151
 					</uni-data-picker>
151
 					</uni-data-picker>
152
 				</view>
152
 				</view>
@@ -158,7 +158,7 @@
158
           <view class="title select"><text class="required newicon newicon-bitian"></text>转派对象:</view>
158
           <view class="title select"><text class="required newicon newicon-bitian"></text>转派对象:</view>
159
           <!-- <uni-data-select class="value" v-model="dataInfo.userId" :localdata="dataInfo.userList" :clear="false" placeholder="请选择转派对象" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}"></uni-data-select> -->
159
           <!-- <uni-data-select class="value" v-model="dataInfo.userId" :localdata="dataInfo.userList" :clear="false" placeholder="请选择转派对象" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}"></uni-data-select> -->
160
 					<uni-data-picker class="value" placeholder="请选择转派对象"
160
 					<uni-data-picker class="value" placeholder="请选择转派对象"
161
-						:localdata="dataInfo.userList" v-model="dataInfo.userId" 
161
+						:localdata="dataInfo.userList" v-model="dataInfo.userId"
162
 						:clear-icon="false" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}">
162
 						:clear-icon="false" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}">
163
 					</uni-data-picker>
163
 					</uni-data-picker>
164
 				</view>
164
 				</view>
@@ -206,7 +206,7 @@
206
   import { useLoginUserStore } from '@/stores/loginUser'
206
   import { useLoginUserStore } from '@/stores/loginUser'
207
   import { useHandlerStore } from '@/stores/handler'
207
   import { useHandlerStore } from '@/stores/handler'
208
   import { useIncidentBuildStore } from '@/stores/incidentBuild'
208
   import { useIncidentBuildStore } from '@/stores/incidentBuild'
209
-  
209
+
210
   useSetTitle();
210
   useSetTitle();
211
   const loginUserStore = useLoginUserStore();
211
   const loginUserStore = useLoginUserStore();
212
   const handlerStore = useHandlerStore();
212
   const handlerStore = useHandlerStore();
@@ -214,30 +214,30 @@
214
   const { makePhoneCall }  = useMakePhoneCall();
214
   const { makePhoneCall }  = useMakePhoneCall();
215
   const { uploadFile }  = useUploadFile();
215
   const { uploadFile }  = useUploadFile();
216
   const { goBack }  = useGoBack();
216
   const { goBack }  = useGoBack();
217
-  
217
+
218
   // 主题颜色
218
   // 主题颜色
219
   const primaryColor = ref(defaultColor)
219
   const primaryColor = ref(defaultColor)
220
-  
220
+
221
 	// 知识库id
221
 	// 知识库id
222
 	const solutionId = ref(null)
222
 	const solutionId = ref(null)
223
-	
223
+
224
 	// 楼层id
224
 	// 楼层id
225
 	const floorId = ref(null)
225
 	const floorId = ref(null)
226
-	
226
+
227
 	// 是否简单处理
227
 	// 是否简单处理
228
 	const HandleData = reactive({
228
 	const HandleData = reactive({
229
 		simpleness:null
229
 		simpleness:null
230
 	})
230
 	})
231
-	
231
+
232
 	// 协同人员
232
 	// 协同人员
233
 	const synergeticArr = ref(null)
233
 	const synergeticArr = ref(null)
234
-	
234
+
235
 	const dicData = ref(null)
235
 	const dicData = ref(null)
236
-	
236
+
237
 	const dutyList = ref(null)
237
 	const dutyList = ref(null)
238
-	
238
+
239
 	const userTypes = ref(null)
239
 	const userTypes = ref(null)
240
-	
240
+
241
   // 数据
241
   // 数据
242
   const dataInfo = reactive({
242
   const dataInfo = reactive({
243
     tabs: [
243
     tabs: [
@@ -282,23 +282,23 @@
282
     handlingPersonnelUserId: undefined,//补单-处理人
282
     handlingPersonnelUserId: undefined,//补单-处理人
283
 		// introduceCount :0 //引入次数
283
 		// introduceCount :0 //引入次数
284
   })
284
   })
285
-  
285
+
286
   // 是否提交
286
   // 是否提交
287
   const isSubmit = ref(false)
287
   const isSubmit = ref(false)
288
-  
288
+
289
   // 处理图片
289
   // 处理图片
290
   const handlerImgRef = ref(null)
290
   const handlerImgRef = ref(null)
291
-  
291
+
292
   // 上传报修图片
292
   // 上传报修图片
293
   function handlerImgSuccessNew(){
293
   function handlerImgSuccessNew(){
294
     let requestList = [];
294
     let requestList = [];
295
-    
295
+
296
     // 报修图片
296
     // 报修图片
297
     dataInfo.incidentData.repairImgList.forEach(v => {
297
     dataInfo.incidentData.repairImgList.forEach(v => {
298
       let repairOrderImg$ = repairOrderImg(v);
298
       let repairOrderImg$ = repairOrderImg(v);
299
       requestList.push(repairOrderImg$);
299
       requestList.push(repairOrderImg$);
300
     })
300
     })
301
-    
301
+
302
     Promise.all(requestList).then(resList => {
302
     Promise.all(requestList).then(resList => {
303
       uni.hideLoading();
303
       uni.hideLoading();
304
       console.log(resList);
304
       console.log(resList);
@@ -315,13 +315,13 @@
315
       }, 1500)
315
       }, 1500)
316
     })
316
     })
317
   }
317
   }
318
-  
318
+
319
 	// 返回引用知识库
319
 	// 返回引用知识库
320
 	function goBackView(){
320
 	function goBackView(){
321
 		handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
321
 		handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
322
 		goBack()
322
 		goBack()
323
 	}
323
 	}
324
-	
324
+
325
   // 上传处理图片成功
325
   // 上传处理图片成功
326
   function handlerImgSuccess(e){
326
   function handlerImgSuccess(e){
327
     dataInfo.handlerImgList.forEach(v => {
327
     dataInfo.handlerImgList.forEach(v => {
@@ -329,19 +329,19 @@
329
     })
329
     })
330
     console.log(dataInfo.handlerImgList);
330
     console.log(dataInfo.handlerImgList);
331
     let requestList = [];
331
     let requestList = [];
332
-    
332
+
333
     // 处理图片
333
     // 处理图片
334
     dataInfo.handlerImgList.forEach(v => {
334
     dataInfo.handlerImgList.forEach(v => {
335
       let handlerOrderImg$ = handlerOrderImg(v);
335
       let handlerOrderImg$ = handlerOrderImg(v);
336
       requestList.push(handlerOrderImg$);
336
       requestList.push(handlerOrderImg$);
337
     })
337
     })
338
-    
338
+
339
     // 报修图片
339
     // 报修图片
340
     dataInfo.incidentData.repairImgList.forEach(v => {
340
     dataInfo.incidentData.repairImgList.forEach(v => {
341
       let repairOrderImg$ = repairOrderImg(v);
341
       let repairOrderImg$ = repairOrderImg(v);
342
       requestList.push(repairOrderImg$);
342
       requestList.push(repairOrderImg$);
343
     })
343
     })
344
-    
344
+
345
     Promise.all(requestList).then(resList => {
345
     Promise.all(requestList).then(resList => {
346
       uni.hideLoading();
346
       uni.hideLoading();
347
       console.log(resList);
347
       console.log(resList);
@@ -358,7 +358,7 @@
358
       }, 1500)
358
       }, 1500)
359
     })
359
     })
360
   }
360
   }
361
-  
361
+
362
   // 上传处理图片失败
362
   // 上传处理图片失败
363
   function handlerImgFail(e){
363
   function handlerImgFail(e){
364
     dataInfo.handlerImgList.forEach(v => {
364
     dataInfo.handlerImgList.forEach(v => {
@@ -366,19 +366,19 @@
366
     })
366
     })
367
     console.log(dataInfo.handlerImgList);
367
     console.log(dataInfo.handlerImgList);
368
   }
368
   }
369
-  
369
+
370
   // 选择上传图片
370
   // 选择上传图片
371
   function handlerImgSelect(e){
371
   function handlerImgSelect(e){
372
     dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
372
     dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
373
     console.log(dataInfo.handlerImgList);
373
     console.log(dataInfo.handlerImgList);
374
   }
374
   }
375
-  
375
+
376
   // 删除上传图片
376
   // 删除上传图片
377
   function handlerImgDelete(e){
377
   function handlerImgDelete(e){
378
     dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
378
     dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
379
     console.log(dataInfo.handlerImgList);
379
     console.log(dataInfo.handlerImgList);
380
   }
380
   }
381
-  
381
+
382
   // 添加协同人员
382
   // 添加协同人员
383
   function synergeticAdd(sign = 'assign'){
383
   function synergeticAdd(sign = 'assign'){
384
     handlerStore.setHandlerData(dataInfo, 'assign', sign);
384
     handlerStore.setHandlerData(dataInfo, 'assign', sign);
@@ -386,7 +386,7 @@
386
       url: `/pages/synergeticAdd/synergeticAdd?incidentId=${dataInfo.incidentId}`
386
       url: `/pages/synergeticAdd/synergeticAdd?incidentId=${dataInfo.incidentId}`
387
     })
387
     })
388
   }
388
   }
389
-  
389
+
390
   // 选择故障现象
390
   // 选择故障现象
391
   function selectCategory(sign = 'assign'){
391
   function selectCategory(sign = 'assign'){
392
     handlerStore.setHandlerData(dataInfo, 'assign', sign);
392
     handlerStore.setHandlerData(dataInfo, 'assign', sign);
@@ -394,7 +394,7 @@
394
       url: `/pages/categoryOne/categoryOne?incidentId=${dataInfo.incidentId}`
394
       url: `/pages/categoryOne/categoryOne?incidentId=${dataInfo.incidentId}`
395
     })
395
     })
396
   }
396
   }
397
-  
397
+
398
   // 点击修改数量
398
   // 点击修改数量
399
   function numberClick(data, type){
399
   function numberClick(data, type){
400
     if(type === 'editConsumable'){
400
     if(type === 'editConsumable'){
@@ -402,31 +402,31 @@
402
     }else if(type === 'editWorkHourManagement'){
402
     }else if(type === 'editWorkHourManagement'){
403
       dataInfo.evtNumber = data.workHourNum2;
403
       dataInfo.evtNumber = data.workHourNum2;
404
     }
404
     }
405
-    
405
+
406
     dataInfo.isNumber = true;
406
     dataInfo.isNumber = true;
407
     dataInfo.selectData = data;
407
     dataInfo.selectData = data;
408
     dataInfo.selectType = type;
408
     dataInfo.selectType = type;
409
   }
409
   }
410
-  
410
+
411
   // 确认修改数量
411
   // 确认修改数量
412
   function conformNumber(evtNumber){
412
   function conformNumber(evtNumber){
413
     dataInfo.evtNumber = evtNumber;
413
     dataInfo.evtNumber = evtNumber;
414
     dataInfo.isNumber = false;
414
     dataInfo.isNumber = false;
415
     addSummaryDoc();
415
     addSummaryDoc();
416
   }
416
   }
417
-  
417
+
418
   // 移除数量
418
   // 移除数量
419
   function removeNumber(evtNumber){
419
   function removeNumber(evtNumber){
420
     dataInfo.evtNumber = evtNumber;
420
     dataInfo.evtNumber = evtNumber;
421
     dataInfo.isNumber = false;
421
     dataInfo.isNumber = false;
422
     removeSummaryDoc();
422
     removeSummaryDoc();
423
   }
423
   }
424
-  
424
+
425
   // 关闭修改数量
425
   // 关闭修改数量
426
   function cancelNumber(){
426
   function cancelNumber(){
427
     dataInfo.isNumber = false;
427
     dataInfo.isNumber = false;
428
   }
428
   }
429
-  
429
+
430
   // 修改耗材/工时
430
   // 修改耗材/工时
431
   function addSummaryDoc(){
431
   function addSummaryDoc(){
432
     uni.showLoading({
432
     uni.showLoading({
@@ -469,7 +469,7 @@
469
       }
469
       }
470
     })
470
     })
471
   }
471
   }
472
-  
472
+
473
   // 移除耗材/工时
473
   // 移除耗材/工时
474
   function removeSummaryDoc(){
474
   function removeSummaryDoc(){
475
     uni.showLoading({
475
     uni.showLoading({
@@ -512,7 +512,7 @@
512
       }
512
       }
513
     })
513
     })
514
   }
514
   }
515
-  
515
+
516
   // 重置
516
   // 重置
517
   function reset(){
517
   function reset(){
518
     dataInfo.userList = [];//处理人列表
518
     dataInfo.userList = [];//处理人列表
@@ -540,7 +540,7 @@
540
     dataInfo.category = {};//故障现象
540
     dataInfo.category = {};//故障现象
541
     dataInfo.synergetic = [];//协同人员
541
     dataInfo.synergetic = [];//协同人员
542
   }
542
   }
543
-  
543
+
544
   // 初始化表单
544
   // 初始化表单
545
   function initForm(){
545
   function initForm(){
546
     if(dataInfo.tabActiveValue === 'direct'){
546
     if(dataInfo.tabActiveValue === 'direct'){
@@ -554,7 +554,7 @@
554
       getGroups();
554
       getGroups();
555
     }
555
     }
556
   }
556
   }
557
-  
557
+
558
   // 点击tab
558
   // 点击tab
559
   function clickTab(tabValue){
559
   function clickTab(tabValue){
560
     if(dataInfo.tabActiveValue == tabValue){
560
     if(dataInfo.tabActiveValue == tabValue){
@@ -569,7 +569,7 @@
569
 		}
569
 		}
570
     initForm();
570
     initForm();
571
   }
571
   }
572
-  
572
+
573
   // 选择工作组
573
   // 选择工作组
574
   function changeGroup(){
574
   function changeGroup(){
575
     dataInfo.userId = undefined;
575
     dataInfo.userId = undefined;
@@ -583,7 +583,7 @@
583
 			getUsers('');
583
 			getUsers('');
584
 		});
584
 		});
585
   }
585
   }
586
-	
586
+
587
   function getDicGu(){
587
   function getDicGu(){
588
 		let postData = {
588
 		let postData = {
589
 			"key": 'usertype',
589
 			"key": 'usertype',
@@ -594,19 +594,19 @@
594
 			getUsers('har');
594
 			getUsers('har');
595
 		});
595
 		});
596
 	}
596
 	}
597
-	
597
+
598
   // 选择是否转派到人
598
   // 选择是否转派到人
599
   function changeIsAssignUser(){
599
   function changeIsAssignUser(){
600
     dataInfo.userId = undefined;
600
     dataInfo.userId = undefined;
601
   }
601
   }
602
-  
602
+
603
   // 获取工作组列表
603
   // 获取工作组列表
604
   function getGroups(){
604
   function getGroups(){
605
     uni.showLoading({
605
     uni.showLoading({
606
       title: "加载中",
606
       title: "加载中",
607
       mask: true,
607
       mask: true,
608
     });
608
     });
609
-    
609
+
610
     let postData = {
610
     let postData = {
611
       "idx": 0,
611
       "idx": 0,
612
       "sum": 9999,
612
       "sum": 9999,
@@ -631,7 +631,7 @@
631
       }
631
       }
632
     })
632
     })
633
   }
633
   }
634
-  
634
+
635
   /**
635
   /**
636
    * 获取用户列表
636
    * 获取用户列表
637
    * @param {boolean} noGroup 是否查询组里的用户
637
    * @param {boolean} noGroup 是否查询组里的用户
@@ -649,7 +649,7 @@
649
 					rolecode:'',
649
 					rolecode:'',
650
 				},
650
 				},
651
 				roleCodes:'',
651
 				roleCodes:'',
652
-        "hospital": dutyList.value.id,
652
+        // "hospital": dutyList.value.id,
653
         "groupdata": (dataInfo.groupId && !noGroup) ? { "id": dataInfo.groupId } : undefined,
653
         "groupdata": (dataInfo.groupId && !noGroup) ? { "id": dataInfo.groupId } : undefined,
654
         userTypeIds:String(userTypes.value.map(v => v.id)),
654
         userTypeIds:String(userTypes.value.map(v => v.id)),
655
       }
655
       }
@@ -677,7 +677,7 @@
677
       }
677
       }
678
     })
678
     })
679
   }
679
   }
680
-  
680
+
681
   // 获取处理方式列表
681
   // 获取处理方式列表
682
   function getHandleCategorys(){
682
   function getHandleCategorys(){
683
     uni.showLoading({
683
     uni.showLoading({
@@ -702,7 +702,7 @@
702
       }
702
       }
703
     })
703
     })
704
   }
704
   }
705
-  
705
+
706
   // 获取处理结果列表
706
   // 获取处理结果列表
707
   function getClosecodes(){
707
   function getClosecodes(){
708
     uni.showLoading({
708
     uni.showLoading({
@@ -727,26 +727,26 @@
727
       }
727
       }
728
     })
728
     })
729
   }
729
   }
730
-  
730
+
731
   // 添加耗材
731
   // 添加耗材
732
   function addConsumable(){
732
   function addConsumable(){
733
     uni.navigateTo({
733
     uni.navigateTo({
734
       url: `/pages/consumableList/consumableList?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
734
       url: `/pages/consumableList/consumableList?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
735
     })
735
     })
736
   }
736
   }
737
-  
737
+
738
   // 添加工时
738
   // 添加工时
739
   function addWorkHourManagement(){
739
   function addWorkHourManagement(){
740
     uni.navigateTo({
740
     uni.navigateTo({
741
       url: `/pages/workHourManagementOne/workHourManagementOne?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
741
       url: `/pages/workHourManagementOne/workHourManagementOne?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
742
     })
742
     })
743
   }
743
   }
744
-  
744
+
745
   // 补单-上一步
745
   // 补单-上一步
746
   function previous(){
746
   function previous(){
747
     dataInfo.supplementFlag = true;
747
     dataInfo.supplementFlag = true;
748
   }
748
   }
749
-  
749
+
750
   // 补单-下一步
750
   // 补单-下一步
751
   function next(){
751
   function next(){
752
     console.log(dataInfo)
752
     console.log(dataInfo)
@@ -758,7 +758,7 @@
758
       });
758
       });
759
       return;
759
       return;
760
     }
760
     }
761
-    
761
+
762
     if(!dataInfo.responseHandleTime){
762
     if(!dataInfo.responseHandleTime){
763
       uni.showToast({
763
       uni.showToast({
764
       	icon: 'none',
764
       	icon: 'none',
@@ -766,7 +766,7 @@
766
       });
766
       });
767
       return;
767
       return;
768
     }
768
     }
769
-    
769
+
770
     if(!dataInfo.handleTime){
770
     if(!dataInfo.handleTime){
771
       uni.showToast({
771
       uni.showToast({
772
       	icon: 'none',
772
       	icon: 'none',
@@ -774,7 +774,7 @@
774
       });
774
       });
775
       return;
775
       return;
776
     }
776
     }
777
-    
777
+
778
     if(!dataInfo.handlingPersonnelUserId){
778
     if(!dataInfo.handlingPersonnelUserId){
779
       uni.showToast({
779
       uni.showToast({
780
       	icon: 'none',
780
       	icon: 'none',
@@ -785,7 +785,7 @@
785
     dataInfo.supplementFlag = false;
785
     dataInfo.supplementFlag = false;
786
     isSubmit.value = false;
786
     isSubmit.value = false;
787
   }
787
   }
788
-  
788
+
789
   // 提交
789
   // 提交
790
   function submit(){
790
   function submit(){
791
     isSubmit.value = true;
791
     isSubmit.value = true;
@@ -806,7 +806,7 @@
806
       submitAssign();
806
       submitAssign();
807
     }
807
     }
808
   }
808
   }
809
-  
809
+
810
   // 处理提交事件
810
   // 处理提交事件
811
   async function handlerOrder(){
811
   async function handlerOrder(){
812
     let repairIncidentTypeList = await api_getDictionary({
812
     let repairIncidentTypeList = await api_getDictionary({
@@ -845,7 +845,7 @@
845
     postData.incident.directProcess = 1;//直接解决
845
     postData.incident.directProcess = 1;//直接解决
846
     return api_incidentTask('accept', postData);
846
     return api_incidentTask('accept', postData);
847
   }
847
   }
848
-  
848
+
849
   // 补单提交事件
849
   // 补单提交事件
850
   async function supplementOrder(){
850
   async function supplementOrder(){
851
     let repairIncidentTypeList = await api_getDictionary({
851
     let repairIncidentTypeList = await api_getDictionary({
@@ -857,7 +857,7 @@
857
       incident: dataInfo.incidentData,
857
       incident: dataInfo.incidentData,
858
 			solutionId: solutionId.value
858
 			solutionId: solutionId.value
859
     }
859
     }
860
-    
860
+
861
     // let result = await beforeBuild();
861
     // let result = await beforeBuild();
862
     // if(result[0].status == 200 && result[1].status == 200){
862
     // if(result[0].status == 200 && result[1].status == 200){
863
     //   postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
863
     //   postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
@@ -885,14 +885,14 @@
885
 			postData.incident.synergetic = null
885
 			postData.incident.synergetic = null
886
 		}
886
 		}
887
     postData.incident.directProcess = 1;//直接解决
887
     postData.incident.directProcess = 1;//直接解决
888
-    
888
+
889
     postData.incident.acceptDate = dataInfo.acceptDate;
889
     postData.incident.acceptDate = dataInfo.acceptDate;
890
     postData.incident.responseHandleTime = dataInfo.responseHandleTime;
890
     postData.incident.responseHandleTime = dataInfo.responseHandleTime;
891
     postData.incident.handleTime = dataInfo.handleTime;
891
     postData.incident.handleTime = dataInfo.handleTime;
892
     postData.incident.handlingPersonnelUser = { id: dataInfo.handlingPersonnelUserId };
892
     postData.incident.handlingPersonnelUser = { id: dataInfo.handlingPersonnelUserId };
893
     return api_incidentTask('patchOrder', postData);
893
     return api_incidentTask('patchOrder', postData);
894
   }
894
   }
895
-  
895
+
896
   // 建单前的接口
896
   // 建单前的接口
897
   function beforeBuild(){
897
   function beforeBuild(){
898
     let repairMain$ = api_systemConfiguration({
898
     let repairMain$ = api_systemConfiguration({
@@ -902,11 +902,11 @@
902
           "keyconfig": "repairMain"
902
           "keyconfig": "repairMain"
903
         }
903
         }
904
     })
904
     })
905
-    
905
+
906
     let sj$ = api_sj();
906
     let sj$ = api_sj();
907
     return Promise.all([repairMain$, sj$])
907
     return Promise.all([repairMain$, sj$])
908
   }
908
   }
909
-  
909
+
910
   // 派单提交事件
910
   // 派单提交事件
911
   async function assignOrder(){
911
   async function assignOrder(){
912
     let repairIncidentTypeList = await api_getDictionary({
912
     let repairIncidentTypeList = await api_getDictionary({
@@ -917,7 +917,7 @@
917
     let postData = {
917
     let postData = {
918
       incident: dataInfo.incidentData,
918
       incident: dataInfo.incidentData,
919
     }
919
     }
920
-    
920
+
921
     // let result = await beforeBuild();
921
     // let result = await beforeBuild();
922
     // if(result[0].status == 200 && result[1].status == 200){
922
     // if(result[0].status == 200 && result[1].status == 200){
923
     //   postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
923
     //   postData.incident.repairType = result[0].list.length ? result[0].list[0].valueconfig : undefined;
@@ -942,20 +942,20 @@
942
 		  postData.incident.candidateGroups = dataInfo.groupId;
942
 		  postData.incident.candidateGroups = dataInfo.groupId;
943
 			delete postData.incident.assignee
943
 			delete postData.incident.assignee
944
 		}
944
 		}
945
-    
945
+
946
     return api_incidentTask('accept', postData);
946
     return api_incidentTask('accept', postData);
947
   }
947
   }
948
-  
948
+
949
   // 处理图片
949
   // 处理图片
950
   function handlerOrderImg(imgObj){
950
   function handlerOrderImg(imgObj){
951
     return uploadFile(imgObj, 'incident', dataInfo.incidentId)
951
     return uploadFile(imgObj, 'incident', dataInfo.incidentId)
952
   }
952
   }
953
-  
953
+
954
   // 报修图片
954
   // 报修图片
955
   function repairOrderImg(imgObj){
955
   function repairOrderImg(imgObj){
956
     return uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
956
     return uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
957
   }
957
   }
958
-  
958
+
959
 	// 引入知识库
959
 	// 引入知识库
960
 	function importRep(type,tabType){
960
 	function importRep(type,tabType){
961
 		dataInfo.operateType = type
961
 		dataInfo.operateType = type
@@ -965,7 +965,7 @@
965
 		  url: `/pages/repository/repository?incidentId=${dataInfo.incidentId}`
965
 		  url: `/pages/repository/repository?incidentId=${dataInfo.incidentId}`
966
 		})
966
 		})
967
 	}
967
 	}
968
-	
968
+
969
   // 处理提交
969
   // 处理提交
970
   function submitHandler(){
970
   function submitHandler(){
971
     console.log(dataInfo);
971
     console.log(dataInfo);
@@ -976,7 +976,7 @@
976
       });
976
       });
977
       return;
977
       return;
978
     }
978
     }
979
-    
979
+
980
     if(!dataInfo.category.id && HandleData.simpleness != 1){
980
     if(!dataInfo.category.id && HandleData.simpleness != 1){
981
       uni.showToast({
981
       uni.showToast({
982
       	icon: 'none',
982
       	icon: 'none',
@@ -984,7 +984,7 @@
984
       });
984
       });
985
       return;
985
       return;
986
     }
986
     }
987
-    
987
+
988
     if(!dataInfo.handleCategory){
988
     if(!dataInfo.handleCategory){
989
       uni.showToast({
989
       uni.showToast({
990
       	icon: 'none',
990
       	icon: 'none',
@@ -992,7 +992,7 @@
992
       });
992
       });
993
       return;
993
       return;
994
     }
994
     }
995
-    
995
+
996
     if(!dataInfo.closecode && HandleData.simpleness != 1){
996
     if(!dataInfo.closecode && HandleData.simpleness != 1){
997
       uni.showToast({
997
       uni.showToast({
998
       	icon: 'none',
998
       	icon: 'none',
@@ -1000,7 +1000,7 @@
1000
       });
1000
       });
1001
       return;
1001
       return;
1002
     }
1002
     }
1003
-    
1003
+
1004
     if(!dutyList.value){
1004
     if(!dutyList.value){
1005
       uni.showToast({
1005
       uni.showToast({
1006
       	icon: 'none',
1006
       	icon: 'none',
@@ -1077,7 +1077,7 @@
1077
       })
1077
       })
1078
     }
1078
     }
1079
   }
1079
   }
1080
-  
1080
+
1081
   // 派单提交
1081
   // 派单提交
1082
   function submitAssign(){
1082
   function submitAssign(){
1083
 		console.log(444,dutyList.value)
1083
 		console.log(444,dutyList.value)
@@ -1088,7 +1088,7 @@
1088
       });
1088
       });
1089
       return;
1089
       return;
1090
     }
1090
     }
1091
-    
1091
+
1092
     if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
1092
     if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
1093
       uni.showToast({
1093
       uni.showToast({
1094
       	icon: 'none',
1094
       	icon: 'none',
@@ -1096,7 +1096,7 @@
1096
       });
1096
       });
1097
       return;
1097
       return;
1098
     }
1098
     }
1099
-    
1099
+
1100
     if(!dutyList.value){
1100
     if(!dutyList.value){
1101
       uni.showToast({
1101
       uni.showToast({
1102
       	icon: 'none',
1102
       	icon: 'none',
@@ -1104,12 +1104,12 @@
1104
       });
1104
       });
1105
       return;
1105
       return;
1106
     }
1106
     }
1107
-    
1107
+
1108
     uni.showLoading({
1108
     uni.showLoading({
1109
       title: "加载中",
1109
       title: "加载中",
1110
       mask: true,
1110
       mask: true,
1111
     });
1111
     });
1112
-    
1112
+
1113
     if(dataInfo.incidentData.repairImgList.length){
1113
     if(dataInfo.incidentData.repairImgList.length){
1114
       // 有图片
1114
       // 有图片
1115
       let assignOrder$ = assignOrder();
1115
       let assignOrder$ = assignOrder();
@@ -1155,9 +1155,9 @@
1155
         }
1155
         }
1156
       })
1156
       })
1157
     }
1157
     }
1158
-   
1158
+
1159
   }
1159
   }
1160
-  
1160
+
1161
   // 补单提交
1161
   // 补单提交
1162
   function submitSupplement(){
1162
   function submitSupplement(){
1163
     console.log(dataInfo);
1163
     console.log(dataInfo);
@@ -1168,7 +1168,7 @@
1168
       });
1168
       });
1169
       return;
1169
       return;
1170
     }
1170
     }
1171
-    
1171
+
1172
     if(!dataInfo.category.id && HandleData.simpleness != 1){
1172
     if(!dataInfo.category.id && HandleData.simpleness != 1){
1173
       uni.showToast({
1173
       uni.showToast({
1174
       	icon: 'none',
1174
       	icon: 'none',
@@ -1176,7 +1176,7 @@
1176
       });
1176
       });
1177
       return;
1177
       return;
1178
     }
1178
     }
1179
-    
1179
+
1180
     if(!dataInfo.handleCategory){
1180
     if(!dataInfo.handleCategory){
1181
       uni.showToast({
1181
       uni.showToast({
1182
       	icon: 'none',
1182
       	icon: 'none',
@@ -1184,7 +1184,7 @@
1184
       });
1184
       });
1185
       return;
1185
       return;
1186
     }
1186
     }
1187
-    
1187
+
1188
     if(!dataInfo.closecode && HandleData.simpleness != 1){
1188
     if(!dataInfo.closecode && HandleData.simpleness != 1){
1189
       uni.showToast({
1189
       uni.showToast({
1190
       	icon: 'none',
1190
       	icon: 'none',
@@ -1192,7 +1192,7 @@
1192
       });
1192
       });
1193
       return;
1193
       return;
1194
     }
1194
     }
1195
-    
1195
+
1196
     if(!dutyList.value){
1196
     if(!dutyList.value){
1197
       uni.showToast({
1197
       uni.showToast({
1198
       	icon: 'none',
1198
       	icon: 'none',
@@ -1203,12 +1203,12 @@
1203
     console.log(dataInfo)
1203
     console.log(dataInfo)
1204
     console.log(dataInfo.handlerImgList)
1204
     console.log(dataInfo.handlerImgList)
1205
     console.log(dataInfo.incidentData.repairImgList)
1205
     console.log(dataInfo.incidentData.repairImgList)
1206
-    
1206
+
1207
     uni.showLoading({
1207
     uni.showLoading({
1208
       title: "加载中",
1208
       title: "加载中",
1209
       mask: true,
1209
       mask: true,
1210
     });
1210
     });
1211
-    
1211
+
1212
     if(dataInfo.handlerImgList.length){
1212
     if(dataInfo.handlerImgList.length){
1213
       // 有处理图片
1213
       // 有处理图片
1214
       let supplementOrder$ = supplementOrder();
1214
       let supplementOrder$ = supplementOrder();
@@ -1271,23 +1271,28 @@
1271
       })
1271
       })
1272
     }
1272
     }
1273
   }
1273
   }
1274
-  
1274
+
1275
   // 菜单权限
1275
   // 菜单权限
1276
   function menuAuthHandle(){
1276
   function menuAuthHandle(){
1277
     let shijianliebiao_supplement = false;//故障处理权限
1277
     let shijianliebiao_supplement = false;//故障处理权限
1278
     for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
1278
     for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
1279
-        if (loginUserStore.loginUser.menu[i].link == "replenishment") {
1280
-          shijianliebiao_supplement = true
1279
+      if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
1280
+        let currentMenu = loginUserStore.loginUser.menu[i].children;
1281
+        for (let j = 0; j < currentMenu; j++) {
1282
+            if (currentMenu[j].link == "replenishment") {
1283
+              shijianliebiao_supplement = true
1284
+            }
1281
         }
1285
         }
1286
+      }
1282
     }
1287
     }
1283
-    
1288
+
1284
     // 补单
1289
     // 补单
1285
     if(shijianliebiao_supplement){
1290
     if(shijianliebiao_supplement){
1286
       let index = dataInfo.tabs.findIndex(v => v.value === 'assign');
1291
       let index = dataInfo.tabs.findIndex(v => v.value === 'assign');
1287
       dataInfo.tabs.splice(index, 0, {id: 7, name: '补单', value: 'supplement', num: ''});
1292
       dataInfo.tabs.splice(index, 0, {id: 7, name: '补单', value: 'supplement', num: ''});
1288
     }
1293
     }
1289
   }
1294
   }
1290
-  
1295
+
1291
 	// 获取知识库数量
1296
 	// 获取知识库数量
1292
 	function getIntroduceCount(categoryId){
1297
 	function getIntroduceCount(categoryId){
1293
 	  uni.showLoading({
1298
 	  uni.showLoading({
@@ -1304,7 +1309,7 @@
1304
 				status:{id:dicData.value?.id},
1309
 				status:{id:dicData.value?.id},
1305
 	    }
1310
 	    }
1306
 	  }
1311
 	  }
1307
-	  
1312
+
1308
 	  api_getSolution(postData).then(res => {
1313
 	  api_getSolution(postData).then(res => {
1309
 	    uni.hideLoading();
1314
 	    uni.hideLoading();
1310
 	    if(res.status == 200){
1315
 	    if(res.status == 200){
@@ -1317,14 +1322,14 @@
1317
 	    }
1322
 	    }
1318
 	  })
1323
 	  })
1319
 	}
1324
 	}
1320
-	
1325
+
1321
 	// 获取文本内容
1326
 	// 获取文本内容
1322
 	function getHtml(html) {
1327
 	function getHtml(html) {
1323
 	  const tempDiv = document.createElement('div');
1328
 	  const tempDiv = document.createElement('div');
1324
 	  tempDiv.innerHTML = html;
1329
 	  tempDiv.innerHTML = html;
1325
 	  return tempDiv.textContent || tempDiv.innerText || '';
1330
 	  return tempDiv.textContent || tempDiv.innerText || '';
1326
 	}
1331
 	}
1327
-	
1332
+
1328
 	// 获取字典
1333
 	// 获取字典
1329
 	function getDic(){
1334
 	function getDic(){
1330
 		let postData = {
1335
 		let postData = {
@@ -1345,7 +1350,7 @@
1345
 			    dataInfo.tabActiveValue = 'supplement';
1350
 			    dataInfo.tabActiveValue = 'supplement';
1346
 			    next();
1351
 			    next();
1347
 			  }
1352
 			  }
1348
-				
1353
+
1349
 				let storeData = handlerStore.handler.data
1354
 				let storeData = handlerStore.handler.data
1350
 				if(storeData.type == 'rep'){
1355
 				if(storeData.type == 'rep'){
1351
 					dataInfo.handleDescription = null;
1356
 					dataInfo.handleDescription = null;
@@ -1360,9 +1365,9 @@
1360
 						dataInfo.supplementFlag = false
1365
 						dataInfo.supplementFlag = false
1361
 					}
1366
 					}
1362
 				}
1367
 				}
1363
-				
1368
+
1364
 			  handlerStore.clearHandlerData();
1369
 			  handlerStore.clearHandlerData();
1365
-			  
1370
+
1366
 			  if(dataInfo.category){
1371
 			  if(dataInfo.category){
1367
 			     dataInfo.incidentData.category = dataInfo.category;
1372
 			     dataInfo.incidentData.category = dataInfo.category;
1368
 					 if(dataInfo.incidentData.place.floor){
1373
 					 if(dataInfo.incidentData.place.floor){
@@ -1388,7 +1393,7 @@
1388
 			  //   }else{
1393
 			  //   }else{
1389
 			  //     // 不分院区
1394
 			  //     // 不分院区
1390
 					// 	// dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.id;
1395
 					// 	// dataInfo.incidentData.hosId = loginUserStore.loginUser.user.currentHospital.id;
1391
-						
1396
+
1392
 					// }
1397
 					// }
1393
 					getDuty()
1398
 					getDuty()
1394
 			  }
1399
 			  }
@@ -1435,7 +1440,7 @@
1435
 			}
1440
 			}
1436
 		})
1441
 		})
1437
 	}
1442
 	}
1438
-	
1443
+
1439
 	// 获取故障现象绑定的科室
1444
 	// 获取故障现象绑定的科室
1440
 	function getDuty(){
1445
 	function getDuty(){
1441
 		let postData = {
1446
 		let postData = {
@@ -1447,14 +1452,14 @@
1447
 		  },
1452
 		  },
1448
 		};
1453
 		};
1449
 		getFetchDataList("simple/data", "incidentCategoryConfig", postData).then(res => {
1454
 		getFetchDataList("simple/data", "incidentCategoryConfig", postData).then(res => {
1450
-			let item = res.list.find(i=>i.categoryId == dataInfo.incidentData.category.id) 
1455
+			let item = res.list.find(i=>i.categoryId == dataInfo.incidentData.category.id)
1451
 			dutyList.value = item.dutyDTO
1456
 			dutyList.value = item.dutyDTO
1452
 			dataInfo.incidentData.duty = dutyList.value.id
1457
 			dataInfo.incidentData.duty = dutyList.value.id
1453
 			initForm()
1458
 			initForm()
1454
 			console.log(1111,dutyList.value)
1459
 			console.log(1111,dutyList.value)
1455
 		})
1460
 		})
1456
 	}
1461
 	}
1457
-	
1462
+
1458
 	// 获取是否开启汇总单
1463
 	// 获取是否开启汇总单
1459
 	function getHosConfig(){
1464
 	function getHosConfig(){
1460
 		let postData = {
1465
 		let postData = {
@@ -1471,7 +1476,7 @@
1471
 				HandleData.simpleness = res.list.find(i=>i.key=='itsmSimpleHandle').value
1476
 				HandleData.simpleness = res.list.find(i=>i.key=='itsmSimpleHandle').value
1472
 			});
1477
 			});
1473
 	}
1478
 	}
1474
-		
1479
+
1475
   onLoad((option) => {
1480
   onLoad((option) => {
1476
 		getHosConfig()
1481
 		getHosConfig()
1477
     menuAuthHandle()
1482
     menuAuthHandle()

+ 86 - 66
pages/changeUser/changeUser.vue

@@ -13,7 +13,7 @@
13
           <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
13
           <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
14
           <!-- <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择工作组" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select> -->
14
           <!-- <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择工作组" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select> -->
15
 					<uni-data-picker class="value" placeholder="请选择工作组"
15
 					<uni-data-picker class="value" placeholder="请选择工作组"
16
-						:localdata="dataInfo.groupList" v-model="dataInfo.groupId" 
16
+						:localdata="dataInfo.groupList" v-model="dataInfo.groupId"
17
 						:clear-icon="false" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}">
17
 						:clear-icon="false" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}">
18
 					</uni-data-picker>
18
 					</uni-data-picker>
19
 				</view>
19
 				</view>
@@ -25,19 +25,19 @@
25
           <view class="title select"><text class="required newicon newicon-bitian"></text>转派对象:</view>
25
           <view class="title select"><text class="required newicon newicon-bitian"></text>转派对象:</view>
26
           <!-- <uni-data-select class="value" v-model="dataInfo.userId" :localdata="dataInfo.userList" :clear="false" placeholder="请选择转派对象" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}"></uni-data-select> -->
26
           <!-- <uni-data-select class="value" v-model="dataInfo.userId" :localdata="dataInfo.userList" :clear="false" placeholder="请选择转派对象" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}"></uni-data-select> -->
27
 					<uni-data-picker class="value" placeholder="请选择转派对象"
27
 					<uni-data-picker class="value" placeholder="请选择转派对象"
28
-						:localdata="dataInfo.userList" v-model="dataInfo.userId" 
28
+						:localdata="dataInfo.userList" v-model="dataInfo.userId"
29
 						:clear-icon="false" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}">
29
 						:clear-icon="false" :class="{formRed: isSubmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}">
30
 					</uni-data-picker>
30
 					</uni-data-picker>
31
 				</view>
31
 				</view>
32
       </template>
32
       </template>
33
-      
33
+
34
       <!-- 指派 -->
34
       <!-- 指派 -->
35
       <template v-if="dataInfo.tabActiveValue === 'assign'">
35
       <template v-if="dataInfo.tabActiveValue === 'assign'">
36
         <view class="form_item">
36
         <view class="form_item">
37
           <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
37
           <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
38
           <!-- <uni-data-select class="value" v-model="dataInfo.branchId" :localdata="dataInfo.branchList" :clear="false" placeholder="请选择院区" @change="changeBranch" :class="{formRed: isSubmit && !dataInfo.branchId}"></uni-data-select> -->
38
           <!-- <uni-data-select class="value" v-model="dataInfo.branchId" :localdata="dataInfo.branchList" :clear="false" placeholder="请选择院区" @change="changeBranch" :class="{formRed: isSubmit && !dataInfo.branchId}"></uni-data-select> -->
39
 					<uni-data-picker class="value" placeholder="请选择院区"
39
 					<uni-data-picker class="value" placeholder="请选择院区"
40
-						:localdata="dataInfo.branchList" v-model="dataInfo.branchId" 
40
+						:localdata="dataInfo.branchList" v-model="dataInfo.branchId"
41
 						:clear-icon="false" @change="changeBranch" :class="{formRed: isSubmit && !dataInfo.branchId}">
41
 						:clear-icon="false" @change="changeBranch" :class="{formRed: isSubmit && !dataInfo.branchId}">
42
 					</uni-data-picker>
42
 					</uni-data-picker>
43
 				</view>
43
 				</view>
@@ -45,7 +45,7 @@
45
           <view class="title select"><text class="required newicon newicon-bitian"></text>责任科室:</view>
45
           <view class="title select"><text class="required newicon newicon-bitian"></text>责任科室:</view>
46
           <!-- <uni-data-select class="value" v-model="dataInfo.dutyId" :localdata="dataInfo.dutyList" :clear="false" placeholder="请选择责任科室" @change="changeDuty" :class="{formRed: isSubmit && !dataInfo.dutyId}"></uni-data-select> -->
46
           <!-- <uni-data-select class="value" v-model="dataInfo.dutyId" :localdata="dataInfo.dutyList" :clear="false" placeholder="请选择责任科室" @change="changeDuty" :class="{formRed: isSubmit && !dataInfo.dutyId}"></uni-data-select> -->
47
 					<uni-data-picker class="value" placeholder="请选择责任科室"
47
 					<uni-data-picker class="value" placeholder="请选择责任科室"
48
-						:localdata="dataInfo.dutyList" v-model="dataInfo.dutyId" 
48
+						:localdata="dataInfo.dutyList" v-model="dataInfo.dutyId"
49
 						:clear-icon="false" @change="changeDuty" :class="{formRed: isSubmit && !dataInfo.dutyId}">
49
 						:clear-icon="false" @change="changeDuty" :class="{formRed: isSubmit && !dataInfo.dutyId}">
50
 					</uni-data-picker>
50
 					</uni-data-picker>
51
 				</view>
51
 				</view>
@@ -70,7 +70,7 @@
70
 					</uni-data-picker>
70
 					</uni-data-picker>
71
 				</view>
71
 				</view>
72
       </template>
72
       </template>
73
-      
73
+
74
       <!-- 退回 -->
74
       <!-- 退回 -->
75
       <template v-if="dataInfo.tabActiveValue === 'reassign'">
75
       <template v-if="dataInfo.tabActiveValue === 'reassign'">
76
         <view class="form_item column">
76
         <view class="form_item column">
@@ -97,15 +97,15 @@
97
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
97
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
98
   import { useGoBack } from '@/share/useGoBack.js'
98
   import { useGoBack } from '@/share/useGoBack.js'
99
   import { useLoginUserStore } from '@/stores/loginUser'
99
   import { useLoginUserStore } from '@/stores/loginUser'
100
-  
100
+
101
   useSetTitle();
101
   useSetTitle();
102
   const loginUserStore = useLoginUserStore();
102
   const loginUserStore = useLoginUserStore();
103
   const { makePhoneCall }  = useMakePhoneCall();
103
   const { makePhoneCall }  = useMakePhoneCall();
104
   const { goBack }  = useGoBack();
104
   const { goBack }  = useGoBack();
105
-  
105
+
106
   // 主题颜色
106
   // 主题颜色
107
   const primaryColor = ref(defaultColor)
107
   const primaryColor = ref(defaultColor)
108
-  
108
+
109
   // 数据
109
   // 数据
110
   const dataInfo = reactive({
110
   const dataInfo = reactive({
111
     tabs: [
111
     tabs: [
@@ -132,29 +132,29 @@
132
     ], //工作组是否转派到人选项
132
     ], //工作组是否转派到人选项
133
     reassignRemark: '',//退回原因
133
     reassignRemark: '',//退回原因
134
   })
134
   })
135
-  
135
+
136
   // 是否提交
136
   // 是否提交
137
   const isSubmit = ref(false)
137
   const isSubmit = ref(false)
138
-  
138
+
139
   // 重置
139
   // 重置
140
   function reset(){
140
   function reset(){
141
     dataInfo.branchId = undefined;
141
     dataInfo.branchId = undefined;
142
     dataInfo.branchList = [];
142
     dataInfo.branchList = [];
143
-    
143
+
144
     dataInfo.dutyId = undefined;
144
     dataInfo.dutyId = undefined;
145
     dataInfo.dutyList = [];
145
     dataInfo.dutyList = [];
146
-    
146
+
147
     dataInfo.groupId = undefined;
147
     dataInfo.groupId = undefined;
148
     dataInfo.groupList = [];
148
     dataInfo.groupList = [];
149
-    
149
+
150
     dataInfo.userId = undefined;
150
     dataInfo.userId = undefined;
151
     dataInfo.userList = [];
151
     dataInfo.userList = [];
152
-    
152
+
153
     dataInfo.isAssignUser = 1;
153
     dataInfo.isAssignUser = 1;
154
-    
154
+
155
     dataInfo.reassignRemark = '';
155
     dataInfo.reassignRemark = '';
156
   }
156
   }
157
-  
157
+
158
   // 初始化表单
158
   // 初始化表单
159
   function initForm(){
159
   function initForm(){
160
     if(dataInfo.tabActiveValue === 'redeploy'){
160
     if(dataInfo.tabActiveValue === 'redeploy'){
@@ -163,7 +163,7 @@
163
       getBranchs();
163
       getBranchs();
164
     }
164
     }
165
   }
165
   }
166
-  
166
+
167
   // 点击tab
167
   // 点击tab
168
   function clickTab(tabValue){
168
   function clickTab(tabValue){
169
     if(dataInfo.tabActiveValue == tabValue){
169
     if(dataInfo.tabActiveValue == tabValue){
@@ -174,7 +174,7 @@
174
     reset();
174
     reset();
175
     initForm()
175
     initForm()
176
   }
176
   }
177
-  
177
+
178
   // 获取事件详情
178
   // 获取事件详情
179
   function getIncidentDetail(){
179
   function getIncidentDetail(){
180
     uni.showLoading({
180
     uni.showLoading({
@@ -199,19 +199,39 @@
199
         let transferFlag = false;//转派权限
199
         let transferFlag = false;//转派权限
200
         let assignFlag = false;//指派权限
200
         let assignFlag = false;//指派权限
201
         for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
201
         for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
202
-            if (loginUserStore.loginUser.menu[i].link == "assign") {
203
-                assignFlag = true
204
-            }
205
-            if (loginUserStore.loginUser.menu[i].link == "receive") {
206
-                transferFlag = true
202
+          if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
203
+            let currentMenu = loginUserStore.loginUser.menu[i].children;
204
+            for (let j = 0; j < currentMenu; j++) {
205
+                if (currentMenu[j].link == "assign") {
206
+                    assignFlag = true
207
+                }
208
+                if (currentMenu[j].link == "transfer") {
209
+                    transferFlag = true
210
+                }
207
             }
211
             }
212
+          }
208
         }
213
         }
209
-        
214
+
210
         // 转派
215
         // 转派
211
         if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && !assignFlag && transferFlag){
216
         if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && !assignFlag && transferFlag){
212
           dataInfo.tabs.splice(0, 0, {id: 1, name: '转派', value: 'redeploy', num: ''});
217
           dataInfo.tabs.splice(0, 0, {id: 1, name: '转派', value: 'redeploy', num: ''});
218
+        }else if(dataInfo.incidentData.state.value == 'pending'){
219
+          let inUser = dataInfo.incidentData.currentLog && dataInfo.incidentData.currentLog.workerId == loginUserStore.loginUser.user.id;
220
+          let inGroup = false;
221
+          let groupList = loginUserStore.loginUser.user.group || [];
222
+          groupList.forEach(item => {
223
+              if(dataInfo.incidentData.currentLog){
224
+                  if (item.id == dataInfo.incidentData.currentLog.groupId) {
225
+                      inGroup = true;
226
+                  }
227
+              }
228
+          })
229
+
230
+          if((inUser || inGroup)){
231
+            dataInfo.tabs.splice(0, 0, {id: 1, name: '转派', value: 'redeploy', num: ''});
232
+          }
213
         }
233
         }
214
-        
234
+
215
         // 指派
235
         // 指派
216
         if((dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler' || dataInfo.incidentData.state.value == 'reassign') && assignFlag){
236
         if((dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler' || dataInfo.incidentData.state.value == 'reassign') && assignFlag){
217
           let index = dataInfo.tabs.findIndex(v => v.value === 'reassign');
237
           let index = dataInfo.tabs.findIndex(v => v.value === 'reassign');
@@ -221,7 +241,7 @@
221
             dataInfo.tabs.splice(index, 0, {id: 1, name: '指派', value: 'assign', num: ''});
241
             dataInfo.tabs.splice(index, 0, {id: 1, name: '指派', value: 'assign', num: ''});
222
           }
242
           }
223
         }
243
         }
224
-        
244
+
225
         // 退回
245
         // 退回
226
         if(dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler'){
246
         if(dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler'){
227
           if(dataInfo.tabs.length){
247
           if(dataInfo.tabs.length){
@@ -230,9 +250,9 @@
230
             dataInfo.tabs = [{id: 4, name: '退回', value: 'reassign', num: ''}];
250
             dataInfo.tabs = [{id: 4, name: '退回', value: 'reassign', num: ''}];
231
           }
251
           }
232
         }
252
         }
233
-        
253
+
234
         dataInfo.tabActiveValue = dataInfo.tabs[0].value;
254
         dataInfo.tabActiveValue = dataInfo.tabs[0].value;
235
-        
255
+
236
         initForm()
256
         initForm()
237
       }else{
257
       }else{
238
         uni.showToast({
258
         uni.showToast({
@@ -242,7 +262,7 @@
242
       }
262
       }
243
     })
263
     })
244
   }
264
   }
245
-  
265
+
246
   // 获取院区列表
266
   // 获取院区列表
247
   function getBranchs(){
267
   function getBranchs(){
248
 		let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
268
 		let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
@@ -260,10 +280,10 @@
260
 		// 	hospital:{
280
 		// 	hospital:{
261
 		// 		selectType:"level1",
281
 		// 		selectType:"level1",
262
 		// 	}
282
 		// 	}
263
-			
283
+
264
 		// 	// parent:{id:loginUserStore.loginUser.user.currentHospital.id}
284
 		// 	// parent:{id:loginUserStore.loginUser.user.currentHospital.id}
265
   //   };
285
   //   };
266
-		
286
+
267
   //   api_branch(postData).then(res => {
287
   //   api_branch(postData).then(res => {
268
   //     uni.hideLoading();
288
   //     uni.hideLoading();
269
   //     if(res.status == 200){
289
   //     if(res.status == 200){
@@ -272,12 +292,12 @@
272
   //         text: v.hosName,
292
   //         text: v.hosName,
273
   //         value: v.id,
293
   //         value: v.id,
274
   //       }));
294
   //       }));
275
-        
295
+
276
   //       if(loginUserStore.loginUser.user.duty){
296
   //       if(loginUserStore.loginUser.user.duty){
277
   //         // 当前的所属责任科室
297
   //         // 当前的所属责任科室
278
   //         dataInfo.branchId = loginUserStore.loginUser.user.duty.branch;
298
   //         dataInfo.branchId = loginUserStore.loginUser.user.duty.branch;
279
   //         changeBranch();
299
   //         changeBranch();
280
-          
300
+
281
   //         dataInfo.dutyId = loginUserStore.loginUser.user.duty.id;
301
   //         dataInfo.dutyId = loginUserStore.loginUser.user.duty.id;
282
   //         changeDuty();
302
   //         changeDuty();
283
   //       }else if(loginUserStore.loginUser.user.branch){
303
   //       }else if(loginUserStore.loginUser.user.branch){
@@ -293,7 +313,7 @@
293
   //     }
313
   //     }
294
   //   })
314
   //   })
295
   }
315
   }
296
-  
316
+
297
   // 获取责任科室列表
317
   // 获取责任科室列表
298
   function getDutys(){
318
   function getDutys(){
299
     uni.showLoading({
319
     uni.showLoading({
@@ -326,21 +346,21 @@
326
       }
346
       }
327
     })
347
     })
328
   }
348
   }
329
-  
349
+
330
   // 获取工作组列表
350
   // 获取工作组列表
331
   function getGroups(){
351
   function getGroups(){
332
     uni.showLoading({
352
     uni.showLoading({
333
       title: "加载中",
353
       title: "加载中",
334
       mask: true,
354
       mask: true,
335
     });
355
     });
336
-    
356
+
337
     let duty = undefined;
357
     let duty = undefined;
338
     if(dataInfo.tabActiveValue === 'redeploy'){
358
     if(dataInfo.tabActiveValue === 'redeploy'){
339
       duty = dataInfo.incidentData.duty.id;
359
       duty = dataInfo.incidentData.duty.id;
340
     }else if(dataInfo.tabActiveValue === 'assign'){
360
     }else if(dataInfo.tabActiveValue === 'assign'){
341
       duty = dataInfo.dutyId;
361
       duty = dataInfo.dutyId;
342
     }
362
     }
343
-    
363
+
344
     let postData = {
364
     let postData = {
345
       "idx": 0,
365
       "idx": 0,
346
       "sum": 9999,
366
       "sum": 9999,
@@ -365,7 +385,7 @@
365
       }
385
       }
366
     })
386
     })
367
   }
387
   }
368
-  
388
+
369
   // 获取用户列表
389
   // 获取用户列表
370
   function getUsers(){
390
   function getUsers(){
371
     uni.showLoading({
391
     uni.showLoading({
@@ -408,46 +428,46 @@
408
       }
428
       }
409
     })
429
     })
410
   }
430
   }
411
-  
431
+
412
   // 选择院区
432
   // 选择院区
413
   function changeBranch(){
433
   function changeBranch(){
414
     dataInfo.dutyId = undefined;
434
     dataInfo.dutyId = undefined;
415
     dataInfo.dutyList = [];
435
     dataInfo.dutyList = [];
416
-    
436
+
417
     dataInfo.groupId = undefined;
437
     dataInfo.groupId = undefined;
418
     dataInfo.groupList = [];
438
     dataInfo.groupList = [];
419
-    
439
+
420
     dataInfo.userId = undefined;
440
     dataInfo.userId = undefined;
421
     dataInfo.userList = [];
441
     dataInfo.userList = [];
422
     getDutys();
442
     getDutys();
423
   }
443
   }
424
-  
444
+
425
   // 选择责任科室
445
   // 选择责任科室
426
   function changeDuty(){
446
   function changeDuty(){
427
     dataInfo.groupId = undefined;
447
     dataInfo.groupId = undefined;
428
     dataInfo.groupList = [];
448
     dataInfo.groupList = [];
429
-    
449
+
430
     dataInfo.userId = undefined;
450
     dataInfo.userId = undefined;
431
     dataInfo.userList = [];
451
     dataInfo.userList = [];
432
     getGroups();
452
     getGroups();
433
   }
453
   }
434
-  
454
+
435
   // 选择工作组
455
   // 选择工作组
436
   function changeGroup(){
456
   function changeGroup(){
437
     dataInfo.userId = undefined;
457
     dataInfo.userId = undefined;
438
     dataInfo.userList = [];
458
     dataInfo.userList = [];
439
     getUsers();
459
     getUsers();
440
   }
460
   }
441
-  
461
+
442
   // 选择是否转派到人
462
   // 选择是否转派到人
443
   function changeIsAssignUser(){
463
   function changeIsAssignUser(){
444
     dataInfo.userId = undefined;
464
     dataInfo.userId = undefined;
445
   }
465
   }
446
-	
466
+
447
   // 提交
467
   // 提交
448
   function submit(){
468
   function submit(){
449
     isSubmit.value = true;
469
     isSubmit.value = true;
450
-    
470
+
451
     if(dataInfo.tabActiveValue === 'redeploy'){
471
     if(dataInfo.tabActiveValue === 'redeploy'){
452
       submitRedeploy();
472
       submitRedeploy();
453
     }else if(dataInfo.tabActiveValue === 'assign'){
473
     }else if(dataInfo.tabActiveValue === 'assign'){
@@ -456,7 +476,7 @@
456
       submitReassign();
476
       submitReassign();
457
     }
477
     }
458
   }
478
   }
459
-  
479
+
460
   // 转派提交
480
   // 转派提交
461
   function submitRedeploy(){
481
   function submitRedeploy(){
462
     if(!dataInfo.groupId){
482
     if(!dataInfo.groupId){
@@ -466,7 +486,7 @@
466
       });
486
       });
467
       return;
487
       return;
468
     }
488
     }
469
-    
489
+
470
     if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
490
     if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
471
       uni.showToast({
491
       uni.showToast({
472
       	icon: 'none',
492
       	icon: 'none',
@@ -474,12 +494,12 @@
474
       });
494
       });
475
       return;
495
       return;
476
     }
496
     }
477
-    
497
+
478
     uni.showLoading({
498
     uni.showLoading({
479
       title: "加载中",
499
       title: "加载中",
480
       mask: true,
500
       mask: true,
481
     });
501
     });
482
-    
502
+
483
     let postData = {
503
     let postData = {
484
       incident: dataInfo.incidentData,
504
       incident: dataInfo.incidentData,
485
     }
505
     }
@@ -493,7 +513,7 @@
493
 		  postData.incident.candidateGroups = dataInfo.groupId;
513
 		  postData.incident.candidateGroups = dataInfo.groupId;
494
 			delete postData.incident.assignee
514
 			delete postData.incident.assignee
495
 		}
515
 		}
496
-		
516
+
497
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
517
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
498
       uni.hideLoading();
518
       uni.hideLoading();
499
       if(res.state == 200){
519
       if(res.state == 200){
@@ -515,7 +535,7 @@
515
       }
535
       }
516
     })
536
     })
517
   }
537
   }
518
-  
538
+
519
   // 指派提交
539
   // 指派提交
520
   function submitAssign(){
540
   function submitAssign(){
521
     if(!dataInfo.branchId){
541
     if(!dataInfo.branchId){
@@ -525,7 +545,7 @@
525
       });
545
       });
526
       return;
546
       return;
527
     }
547
     }
528
-    
548
+
529
     if(!dataInfo.dutyId){
549
     if(!dataInfo.dutyId){
530
       uni.showToast({
550
       uni.showToast({
531
       	icon: 'none',
551
       	icon: 'none',
@@ -533,7 +553,7 @@
533
       });
553
       });
534
       return;
554
       return;
535
     }
555
     }
536
-    
556
+
537
     if(!dataInfo.groupId){
557
     if(!dataInfo.groupId){
538
       uni.showToast({
558
       uni.showToast({
539
       	icon: 'none',
559
       	icon: 'none',
@@ -541,7 +561,7 @@
541
       });
561
       });
542
       return;
562
       return;
543
     }
563
     }
544
-    
564
+
545
     if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
565
     if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
546
       uni.showToast({
566
       uni.showToast({
547
       	icon: 'none',
567
       	icon: 'none',
@@ -549,12 +569,12 @@
549
       });
569
       });
550
       return;
570
       return;
551
     }
571
     }
552
-    
572
+
553
     uni.showLoading({
573
     uni.showLoading({
554
       title: "加载中",
574
       title: "加载中",
555
       mask: true,
575
       mask: true,
556
     });
576
     });
557
-    
577
+
558
     let postData = {
578
     let postData = {
559
       incident: dataInfo.incidentData,
579
       incident: dataInfo.incidentData,
560
     }
580
     }
@@ -568,7 +588,7 @@
568
       postData.incident.candidateGroups = dataInfo.groupId;
588
       postData.incident.candidateGroups = dataInfo.groupId;
569
 			delete postData.incident.assignee
589
 			delete postData.incident.assignee
570
     }
590
     }
571
-    
591
+
572
     postData.incident.duty = { id: dataInfo.dutyId };
592
     postData.incident.duty = { id: dataInfo.dutyId };
573
 		postData.incident.hosId = dataInfo.branchId
593
 		postData.incident.hosId = dataInfo.branchId
574
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
594
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
@@ -592,7 +612,7 @@
592
       }
612
       }
593
     })
613
     })
594
   }
614
   }
595
-  
615
+
596
   // 退回提交
616
   // 退回提交
597
   function submitReassign(){
617
   function submitReassign(){
598
     if(!dataInfo.reassignRemark.trim()){
618
     if(!dataInfo.reassignRemark.trim()){
@@ -602,18 +622,18 @@
602
       });
622
       });
603
       return;
623
       return;
604
     }
624
     }
605
-    
625
+
606
     uni.showLoading({
626
     uni.showLoading({
607
       title: "加载中",
627
       title: "加载中",
608
       mask: true,
628
       mask: true,
609
     });
629
     });
610
-    
630
+
611
     let postData = {
631
     let postData = {
612
       incident: dataInfo.incidentData,
632
       incident: dataInfo.incidentData,
613
     }
633
     }
614
-    
634
+
615
     postData.incident.reassignRemark = dataInfo.reassignRemark;
635
     postData.incident.reassignRemark = dataInfo.reassignRemark;
616
-    
636
+
617
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
637
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
618
       uni.hideLoading();
638
       uni.hideLoading();
619
       if(res.state == 200){
639
       if(res.state == 200){
@@ -635,7 +655,7 @@
635
       }
655
       }
636
     })
656
     })
637
   }
657
   }
638
-  
658
+
639
   onLoad((option) => {
659
   onLoad((option) => {
640
     dataInfo.incidentId = option.incidentId;
660
     dataInfo.incidentId = option.incidentId;
641
     getIncidentDetail();
661
     getIncidentDetail();

+ 73 - 68
pages/handler/handler.vue

@@ -35,7 +35,7 @@
35
             </view>
35
             </view>
36
           </view>
36
           </view>
37
         </view>
37
         </view>
38
-        
38
+
39
         <!-- 工时 -->
39
         <!-- 工时 -->
40
         <view class="summaryItem">
40
         <view class="summaryItem">
41
           <view class="summaryItem_head">
41
           <view class="summaryItem_head">
@@ -62,7 +62,7 @@
62
             </view>
62
             </view>
63
           </view>
63
           </view>
64
         </view>
64
         </view>
65
-        
65
+
66
         <!-- 汇总单总价 -->
66
         <!-- 汇总单总价 -->
67
         <view class="summaryItem">
67
         <view class="summaryItem">
68
           <view class="summaryItem_foot total">
68
           <view class="summaryItem_foot total">
@@ -72,7 +72,7 @@
72
           </view>
72
           </view>
73
         </view>
73
         </view>
74
       </template>
74
       </template>
75
-      
75
+
76
       <!-- 故障处理 -->
76
       <!-- 故障处理 -->
77
       <template v-if="dataInfo.tabActiveValue === 'doing' && !isInSummaryOrder">
77
       <template v-if="dataInfo.tabActiveValue === 'doing' && !isInSummaryOrder">
78
         <view class="form_item column" v-if="HandleData.simpleness != 1">
78
         <view class="form_item column" v-if="HandleData.simpleness != 1">
@@ -81,7 +81,7 @@
81
 						<view class="title-fl-sb">
81
 						<view class="title-fl-sb">
82
 							解决方案:
82
 							解决方案:
83
 							<view @click="importRep('malfunction')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
83
 							<view @click="importRep('malfunction')" class="import-rep">引入知识库({{dataInfo.introduceCount}})</view>
84
-						</view>	
84
+						</view>
85
 					</view>
85
 					</view>
86
           <uni-easyinput id="scheme" class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
86
           <uni-easyinput id="scheme" class="value" type="textarea" v-model="dataInfo.handleDescription" placeholder="请输入解决方案" :class="{formRed: isSubmit && !dataInfo.handleDescription.trim()}" />
87
         </view>
87
         </view>
@@ -132,7 +132,7 @@
132
           </view>
132
           </view>
133
         </view>
133
         </view>
134
       </template>
134
       </template>
135
-      
135
+
136
       <!-- 延期处理 -->
136
       <!-- 延期处理 -->
137
       <template v-if="dataInfo.tabActiveValue === 'overtime'">
137
       <template v-if="dataInfo.tabActiveValue === 'overtime'">
138
         <view class="form_item">
138
         <view class="form_item">
@@ -183,17 +183,17 @@
183
   import { useGoBack } from '@/share/useGoBack.js'
183
   import { useGoBack } from '@/share/useGoBack.js'
184
   import { useLoginUserStore } from '@/stores/loginUser'
184
   import { useLoginUserStore } from '@/stores/loginUser'
185
   import { useHandlerStore } from '@/stores/handler'
185
   import { useHandlerStore } from '@/stores/handler'
186
-  
186
+
187
   useSetTitle();
187
   useSetTitle();
188
   const loginUserStore = useLoginUserStore();
188
   const loginUserStore = useLoginUserStore();
189
   const handlerStore = useHandlerStore();
189
   const handlerStore = useHandlerStore();
190
   const { makePhoneCall }  = useMakePhoneCall();
190
   const { makePhoneCall }  = useMakePhoneCall();
191
   const { uploadFile }  = useUploadFile();
191
   const { uploadFile }  = useUploadFile();
192
   const { goBack }  = useGoBack();
192
   const { goBack }  = useGoBack();
193
-  
193
+
194
   // 主题颜色
194
   // 主题颜色
195
   const primaryColor = ref(defaultColor)
195
   const primaryColor = ref(defaultColor)
196
-  
196
+
197
 	// 备用机选项
197
 	// 备用机选项
198
 	const machineData = ref([
198
 	const machineData = ref([
199
 		{
199
 		{
@@ -205,7 +205,7 @@
205
 			value:0
205
 			value:0
206
 		},
206
 		},
207
 	])
207
 	])
208
-	
208
+
209
   // 数据
209
   // 数据
210
   const dataInfo = reactive({
210
   const dataInfo = reactive({
211
     tabs: [
211
     tabs: [
@@ -242,31 +242,31 @@
242
 		provideBackupMachine:0,//是否提供备用机
242
 		provideBackupMachine:0,//是否提供备用机
243
 		returnBackupMachine:null//是否归还备用机
243
 		returnBackupMachine:null//是否归还备用机
244
   })
244
   })
245
-  
245
+
246
 	// 故障处理用是否提供备用机
246
 	// 故障处理用是否提供备用机
247
 	const newProvideBackupMachine = ref(0)
247
 	const newProvideBackupMachine = ref(0)
248
-	
248
+
249
 	// 知识库id
249
 	// 知识库id
250
 	const solutionId = ref(null)
250
 	const solutionId = ref(null)
251
-	
251
+
252
   // 是否提交
252
   // 是否提交
253
   const isSubmit = ref(false)
253
   const isSubmit = ref(false)
254
-	
254
+
255
 	// 是否开启汇总单
255
 	// 是否开启汇总单
256
 	const SummaryData = ref(false)
256
 	const SummaryData = ref(false)
257
-  
257
+
258
 	// 是否简单处理
258
 	// 是否简单处理
259
 	const HandleData = reactive({
259
 	const HandleData = reactive({
260
 		simpleness:null
260
 		simpleness:null
261
 	})
261
 	})
262
   // 处理图片
262
   // 处理图片
263
   const handlerImgRef = ref(null)
263
   const handlerImgRef = ref(null)
264
-  
264
+
265
   // 是否进入汇总单
265
   // 是否进入汇总单
266
   const isInSummaryOrder = computed(() => {
266
   const isInSummaryOrder = computed(() => {
267
     return dataInfo.tabActiveValue === 'doing' && SummaryData.value.value == 1 && (dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id);
267
     return dataInfo.tabActiveValue === 'doing' && SummaryData.value.value == 1 && (dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id);
268
   })
268
   })
269
-  
269
+
270
   // 上一步或者返回列表
270
   // 上一步或者返回列表
271
   function goBackOrToList(){
271
   function goBackOrToList(){
272
     if(dataInfo.isSummaryNext){
272
     if(dataInfo.isSummaryNext){
@@ -278,7 +278,7 @@
278
       })
278
       })
279
     }
279
     }
280
   }
280
   }
281
-  
281
+
282
   // 上传处理图片成功
282
   // 上传处理图片成功
283
   function handlerImgSuccess(e){
283
   function handlerImgSuccess(e){
284
     dataInfo.handlerImgList.forEach(v => {
284
     dataInfo.handlerImgList.forEach(v => {
@@ -291,7 +291,7 @@
291
       let handlerOrderImg$ = handlerOrderImg(v);
291
       let handlerOrderImg$ = handlerOrderImg(v);
292
       requestList.push(handlerOrderImg$);
292
       requestList.push(handlerOrderImg$);
293
     })
293
     })
294
-    
294
+
295
     Promise.all(requestList).then(resList => {
295
     Promise.all(requestList).then(resList => {
296
       uni.hideLoading();
296
       uni.hideLoading();
297
       console.log(resList);
297
       console.log(resList);
@@ -314,7 +314,7 @@
314
       }
314
       }
315
     })
315
     })
316
   }
316
   }
317
-  
317
+
318
   // 上传处理图片失败
318
   // 上传处理图片失败
319
   function handlerImgFail(e){
319
   function handlerImgFail(e){
320
     dataInfo.handlerImgList.forEach(v => {
320
     dataInfo.handlerImgList.forEach(v => {
@@ -322,19 +322,19 @@
322
     })
322
     })
323
     console.log(dataInfo.handlerImgList);
323
     console.log(dataInfo.handlerImgList);
324
   }
324
   }
325
-  
325
+
326
   // 选择上传图片
326
   // 选择上传图片
327
   function handlerImgSelect(e){
327
   function handlerImgSelect(e){
328
     dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
328
     dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
329
     console.log(dataInfo.handlerImgList);
329
     console.log(dataInfo.handlerImgList);
330
   }
330
   }
331
-  
331
+
332
   // 删除上传图片
332
   // 删除上传图片
333
   function handlerImgDelete(e){
333
   function handlerImgDelete(e){
334
     dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
334
     dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
335
     console.log(dataInfo.handlerImgList);
335
     console.log(dataInfo.handlerImgList);
336
   }
336
   }
337
-  
337
+
338
   // 添加协同人员
338
   // 添加协同人员
339
   function synergeticAdd(){
339
   function synergeticAdd(){
340
     handlerStore.setHandlerData(dataInfo, 'handler');
340
     handlerStore.setHandlerData(dataInfo, 'handler');
@@ -342,7 +342,7 @@
342
       url: `/pages/synergeticAdd/synergeticAdd?incidentId=${dataInfo.incidentId}`
342
       url: `/pages/synergeticAdd/synergeticAdd?incidentId=${dataInfo.incidentId}`
343
     })
343
     })
344
   }
344
   }
345
-  
345
+
346
 	// 引入知识库
346
 	// 引入知识库
347
 	function importRep(type){
347
 	function importRep(type){
348
 		dataInfo.operateType = type
348
 		dataInfo.operateType = type
@@ -351,7 +351,7 @@
351
 		  url: `/pages/repository/repository`
351
 		  url: `/pages/repository/repository`
352
 		})
352
 		})
353
 	}
353
 	}
354
-	
354
+
355
   // 选择故障现象
355
   // 选择故障现象
356
   function selectCategory(){
356
   function selectCategory(){
357
     handlerStore.setHandlerData(dataInfo, 'handler');
357
     handlerStore.setHandlerData(dataInfo, 'handler');
@@ -359,7 +359,7 @@
359
       url: `/pages/categoryOne/categoryOne?incidentId=${dataInfo.incidentId}`
359
       url: `/pages/categoryOne/categoryOne?incidentId=${dataInfo.incidentId}`
360
     })
360
     })
361
   }
361
   }
362
-  
362
+
363
   // 点击修改数量
363
   // 点击修改数量
364
   function numberClick(data, type){
364
   function numberClick(data, type){
365
     if(type === 'editConsumable'){
365
     if(type === 'editConsumable'){
@@ -367,31 +367,31 @@
367
     }else if(type === 'editWorkHourManagement'){
367
     }else if(type === 'editWorkHourManagement'){
368
       dataInfo.evtNumber = data.workHourNum2;
368
       dataInfo.evtNumber = data.workHourNum2;
369
     }
369
     }
370
-    
370
+
371
     dataInfo.isNumber = true;
371
     dataInfo.isNumber = true;
372
     dataInfo.selectData = data;
372
     dataInfo.selectData = data;
373
     dataInfo.selectType = type;
373
     dataInfo.selectType = type;
374
   }
374
   }
375
-  
375
+
376
   // 确认修改数量
376
   // 确认修改数量
377
   function conformNumber(evtNumber){
377
   function conformNumber(evtNumber){
378
     dataInfo.evtNumber = evtNumber;
378
     dataInfo.evtNumber = evtNumber;
379
     dataInfo.isNumber = false;
379
     dataInfo.isNumber = false;
380
     addSummaryDoc();
380
     addSummaryDoc();
381
   }
381
   }
382
-  
382
+
383
   // 移除数量
383
   // 移除数量
384
   function removeNumber(evtNumber){
384
   function removeNumber(evtNumber){
385
     dataInfo.evtNumber = evtNumber;
385
     dataInfo.evtNumber = evtNumber;
386
     dataInfo.isNumber = false;
386
     dataInfo.isNumber = false;
387
     removeSummaryDoc();
387
     removeSummaryDoc();
388
   }
388
   }
389
-  
389
+
390
   // 关闭修改数量
390
   // 关闭修改数量
391
   function cancelNumber(){
391
   function cancelNumber(){
392
     dataInfo.isNumber = false;
392
     dataInfo.isNumber = false;
393
   }
393
   }
394
-  
394
+
395
   // 修改耗材/工时
395
   // 修改耗材/工时
396
   function addSummaryDoc(){
396
   function addSummaryDoc(){
397
     uni.showLoading({
397
     uni.showLoading({
@@ -434,7 +434,7 @@
434
       }
434
       }
435
     })
435
     })
436
   }
436
   }
437
-  
437
+
438
   // 移除耗材/工时
438
   // 移除耗材/工时
439
   function removeSummaryDoc(){
439
   function removeSummaryDoc(){
440
     uni.showLoading({
440
     uni.showLoading({
@@ -477,7 +477,7 @@
477
       }
477
       }
478
     })
478
     })
479
   }
479
   }
480
-  
480
+
481
   // 重置
481
   // 重置
482
   function reset(){
482
   function reset(){
483
     dataInfo.repairTypeList = []; //延期原因列表
483
     dataInfo.repairTypeList = []; //延期原因列表
@@ -506,7 +506,7 @@
506
 		dataInfo.provideBackupMachine = 0
506
 		dataInfo.provideBackupMachine = 0
507
 		dataInfo.returnBackupMachine = null
507
 		dataInfo.returnBackupMachine = null
508
   }
508
   }
509
-  
509
+
510
   // 初始化表单
510
   // 初始化表单
511
   function initForm(){
511
   function initForm(){
512
     if(dataInfo.tabActiveValue === 'doing' && isInSummaryOrder.value){
512
     if(dataInfo.tabActiveValue === 'doing' && isInSummaryOrder.value){
@@ -519,7 +519,7 @@
519
       getDeferralDays();
519
       getDeferralDays();
520
     }
520
     }
521
   }
521
   }
522
-  
522
+
523
   // 点击tab
523
   // 点击tab
524
   function clickTab(tabValue){
524
   function clickTab(tabValue){
525
     if(dataInfo.tabActiveValue == tabValue){
525
     if(dataInfo.tabActiveValue == tabValue){
@@ -533,7 +533,7 @@
533
 		newProvideBackupMachine.value = dataInfo.incidentData.provideBackupMachine
533
 		newProvideBackupMachine.value = dataInfo.incidentData.provideBackupMachine
534
     initForm();
534
     initForm();
535
   }
535
   }
536
-  
536
+
537
   // 获取事件详情
537
   // 获取事件详情
538
   function getIncidentDetail(){
538
   function getIncidentDetail(){
539
     uni.showLoading({
539
     uni.showLoading({
@@ -564,7 +564,7 @@
564
 					  dataInfo.incidentData.duty.addSummary = 0;
564
 					  dataInfo.incidentData.duty.addSummary = 0;
565
 					}
565
 					}
566
 				}
566
 				}
567
-        
567
+
568
         // 跳转页面选择了选项并且工单ID一致
568
         // 跳转页面选择了选项并且工单ID一致
569
         if(handlerStore.handler.data && handlerStore.handler.data.incidentId == dataInfo.incidentId){
569
         if(handlerStore.handler.data && handlerStore.handler.data.incidentId == dataInfo.incidentId){
570
          if(dataInfo.handleDescription){
570
          if(dataInfo.handleDescription){
@@ -573,7 +573,7 @@
573
 					Object.assign(dataInfo, handlerStore.handler.data);
573
 					Object.assign(dataInfo, handlerStore.handler.data);
574
 					getIntroduceCount(dataInfo.category.id)
574
 					getIntroduceCount(dataInfo.category.id)
575
 
575
 
576
-					
576
+
577
           handlerStore.clearHandlerData();
577
           handlerStore.clearHandlerData();
578
         }else{
578
         }else{
579
           handlerStore.clearHandlerData();
579
           handlerStore.clearHandlerData();
@@ -583,23 +583,28 @@
583
           getIntroduceCount(dataInfo.category.id)
583
           getIntroduceCount(dataInfo.category.id)
584
           let chuli = false;//故障处理权限
584
           let chuli = false;//故障处理权限
585
           for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
585
           for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
586
-              if (loginUserStore.loginUser.menu[i].link == "handle") {
587
-                chuli = true
586
+            if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
587
+              let currentMenu = loginUserStore.loginUser.menu[i].children;
588
+              for (let j = 0; j < currentMenu; j++) {
589
+                if (currentMenu[j].link == "handle") {
590
+                  chuli = true
591
+                }
588
               }
592
               }
593
+            }
589
           }
594
           }
590
-          
595
+
591
           // 故障处理
596
           // 故障处理
592
           if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && chuli){
597
           if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && chuli){
593
             let flag = dataInfo.tabs.some(v => v.value === 'doing');
598
             let flag = dataInfo.tabs.some(v => v.value === 'doing');
594
             !flag && dataInfo.tabs.splice(0, 0, {id: 5, name: '故障处理', value: 'doing', num: ''});
599
             !flag && dataInfo.tabs.splice(0, 0, {id: 5, name: '故障处理', value: 'doing', num: ''});
595
           }
600
           }
596
-          
601
+
597
           // 延期处理
602
           // 延期处理
598
           if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id){
603
           if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id){
599
             let flag = dataInfo.tabs.some(v => v.value === 'overtime');
604
             let flag = dataInfo.tabs.some(v => v.value === 'overtime');
600
             !flag && dataInfo.tabs.push({id: 6, name: '延期处理', value: 'overtime', num: ''});
605
             !flag && dataInfo.tabs.push({id: 6, name: '延期处理', value: 'overtime', num: ''});
601
           }
606
           }
602
-          
607
+
603
           dataInfo.tabActiveValue = dataInfo.tabs[0].value;
608
           dataInfo.tabActiveValue = dataInfo.tabs[0].value;
604
         }
609
         }
605
         initForm()
610
         initForm()
@@ -611,7 +616,7 @@
611
       }
616
       }
612
     })
617
     })
613
   }
618
   }
614
-  
619
+
615
   // 获取延期原因列表
620
   // 获取延期原因列表
616
   function getRepairTypes(){
621
   function getRepairTypes(){
617
     uni.showLoading({
622
     uni.showLoading({
@@ -631,7 +636,7 @@
631
       }));
636
       }));
632
     })
637
     })
633
   }
638
   }
634
-  
639
+
635
   // 获取处理方式列表
640
   // 获取处理方式列表
636
   function getHandleCategorys(){
641
   function getHandleCategorys(){
637
     uni.showLoading({
642
     uni.showLoading({
@@ -656,7 +661,7 @@
656
       }
661
       }
657
     })
662
     })
658
   }
663
   }
659
-  
664
+
660
   // 获取处理结果列表
665
   // 获取处理结果列表
661
   function getClosecodes(){
666
   function getClosecodes(){
662
     uni.showLoading({
667
     uni.showLoading({
@@ -681,7 +686,7 @@
681
       }
686
       }
682
     })
687
     })
683
   }
688
   }
684
-  
689
+
685
   // 获取延期天数列表
690
   // 获取延期天数列表
686
   function getDeferralDays(){
691
   function getDeferralDays(){
687
     dataInfo.deferralDayList = generateNumberArray(1, 15).map(v => ({
692
     dataInfo.deferralDayList = generateNumberArray(1, 15).map(v => ({
@@ -693,7 +698,7 @@
693
 			value: 0.5,
698
 			value: 0.5,
694
 		})
699
 		})
695
   }
700
   }
696
-  
701
+
697
   // 获取汇总单信息
702
   // 获取汇总单信息
698
   function getSummaryList(){
703
   function getSummaryList(){
699
     uni.showLoading({
704
     uni.showLoading({
@@ -719,14 +724,14 @@
719
       }
724
       }
720
     })
725
     })
721
   }
726
   }
722
-  
727
+
723
   // 添加耗材
728
   // 添加耗材
724
   function addConsumable(){
729
   function addConsumable(){
725
     uni.navigateTo({
730
     uni.navigateTo({
726
       url: `/pages/consumableList/consumableList?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
731
       url: `/pages/consumableList/consumableList?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}`
727
     })
732
     })
728
   }
733
   }
729
-  
734
+
730
   // 添加工时
735
   // 添加工时
731
   function addWorkHourManagement(){
736
   function addWorkHourManagement(){
732
 		let hosId = dataInfo.incidentData.duty.id
737
 		let hosId = dataInfo.incidentData.duty.id
@@ -734,7 +739,7 @@
734
       url: `/pages/workHourManagementOne/workHourManagementOne?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}&hosId=${hosId}`
739
       url: `/pages/workHourManagementOne/workHourManagementOne?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}&hosId=${hosId}`
735
     })
740
     })
736
   }
741
   }
737
-  
742
+
738
   // 提交
743
   // 提交
739
   function submit(){
744
   function submit(){
740
     isSubmit.value = true;
745
     isSubmit.value = true;
@@ -748,7 +753,7 @@
748
       submitOvertime();
753
       submitOvertime();
749
     }
754
     }
750
   }
755
   }
751
-  
756
+
752
   // 处理提交事件
757
   // 处理提交事件
753
   function handlerOrder(){
758
   function handlerOrder(){
754
 		dataInfo.incidentData.returnBackupMachine = dataInfo.returnBackupMachine
759
 		dataInfo.incidentData.returnBackupMachine = dataInfo.returnBackupMachine
@@ -761,15 +766,15 @@
761
     postData.incident.closecode = {id: dataInfo.closecode};
766
     postData.incident.closecode = {id: dataInfo.closecode};
762
     postData.incident.category = dataInfo.category;
767
     postData.incident.category = dataInfo.category;
763
     postData.incident.synergetic = dataInfo.synergetic;
768
     postData.incident.synergetic = dataInfo.synergetic;
764
-    
769
+
765
     return api_incidentTask(dataInfo.tabActiveValue, postData);
770
     return api_incidentTask(dataInfo.tabActiveValue, postData);
766
   }
771
   }
767
-  
772
+
768
   // 处理图片
773
   // 处理图片
769
   function handlerOrderImg(imgObj){
774
   function handlerOrderImg(imgObj){
770
     return uploadFile(imgObj, 'incident', dataInfo.incidentId)
775
     return uploadFile(imgObj, 'incident', dataInfo.incidentId)
771
   }
776
   }
772
-  
777
+
773
   // 处理提交
778
   // 处理提交
774
   function submitHandler(){
779
   function submitHandler(){
775
     console.log(dataInfo);
780
     console.log(dataInfo);
@@ -780,7 +785,7 @@
780
       });
785
       });
781
       return;
786
       return;
782
     }
787
     }
783
-		
788
+
784
 		if(newProvideBackupMachine.value==1 && dataInfo.returnBackupMachine==null){
789
 		if(newProvideBackupMachine.value==1 && dataInfo.returnBackupMachine==null){
785
 		  uni.showToast({
790
 		  uni.showToast({
786
 		  	icon: 'none',
791
 		  	icon: 'none',
@@ -788,7 +793,7 @@
788
 		  });
793
 		  });
789
 		  return;
794
 		  return;
790
 		}
795
 		}
791
-		
796
+
792
     if(!dataInfo.category.id && HandleData.simpleness != 1){
797
     if(!dataInfo.category.id && HandleData.simpleness != 1){
793
       uni.showToast({
798
       uni.showToast({
794
       	icon: 'none',
799
       	icon: 'none',
@@ -796,7 +801,7 @@
796
       });
801
       });
797
       return;
802
       return;
798
     }
803
     }
799
-    
804
+
800
     if(!dataInfo.handleCategory){
805
     if(!dataInfo.handleCategory){
801
       uni.showToast({
806
       uni.showToast({
802
       	icon: 'none',
807
       	icon: 'none',
@@ -804,7 +809,7 @@
804
       });
809
       });
805
       return;
810
       return;
806
     }
811
     }
807
-    
812
+
808
     if(!dataInfo.closecode && HandleData.simpleness != 1){
813
     if(!dataInfo.closecode && HandleData.simpleness != 1){
809
       uni.showToast({
814
       uni.showToast({
810
       	icon: 'none',
815
       	icon: 'none',
@@ -850,7 +855,7 @@
850
       })
855
       })
851
     }
856
     }
852
   }
857
   }
853
-  
858
+
854
   // 延期处理提交
859
   // 延期处理提交
855
   function submitOvertime(){
860
   function submitOvertime(){
856
     if(!dataInfo.repairTypeId){
861
     if(!dataInfo.repairTypeId){
@@ -860,7 +865,7 @@
860
       });
865
       });
861
       return;
866
       return;
862
     }
867
     }
863
-    
868
+
864
     if(!dataInfo.deferralRemark.trim()){
869
     if(!dataInfo.deferralRemark.trim()){
865
       uni.showToast({
870
       uni.showToast({
866
       	icon: 'none',
871
       	icon: 'none',
@@ -868,7 +873,7 @@
868
       });
873
       });
869
       return;
874
       return;
870
     }
875
     }
871
-    
876
+
872
     if(!dataInfo.deferralDayId){
877
     if(!dataInfo.deferralDayId){
873
       uni.showToast({
878
       uni.showToast({
874
       	icon: 'none',
879
       	icon: 'none',
@@ -876,7 +881,7 @@
876
       });
881
       });
877
       return;
882
       return;
878
     }
883
     }
879
-    
884
+
880
     uni.showLoading({
885
     uni.showLoading({
881
       title: "加载中",
886
       title: "加载中",
882
       mask: true,
887
       mask: true,
@@ -885,13 +890,13 @@
885
     let postData = {
890
     let postData = {
886
       incident: dataInfo.incidentData,
891
       incident: dataInfo.incidentData,
887
     }
892
     }
888
-    
893
+
889
     postData.incident.currentLog = {
894
     postData.incident.currentLog = {
890
       remark: dataInfo.deferralRemark,
895
       remark: dataInfo.deferralRemark,
891
       extra1: dataInfo.repairTypeId,
896
       extra1: dataInfo.repairTypeId,
892
       extra2: dataInfo.deferralDayId,
897
       extra2: dataInfo.deferralDayId,
893
     }
898
     }
894
-    
899
+
895
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
900
     api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
896
       uni.hideLoading();
901
       uni.hideLoading();
897
       if(res.state == 200){
902
       if(res.state == 200){
@@ -913,7 +918,7 @@
913
       }
918
       }
914
     })
919
     })
915
   }
920
   }
916
-  
921
+
917
 	// 获取知识库数量
922
 	// 获取知识库数量
918
 	function getIntroduceCount(categoryId){
923
 	function getIntroduceCount(categoryId){
919
 		uni.showLoading({
924
 		uni.showLoading({
@@ -949,14 +954,14 @@
949
 			 })
954
 			 })
950
 		})
955
 		})
951
 	}
956
 	}
952
-	
957
+
953
 	// 获取文本内容
958
 	// 获取文本内容
954
 	function getHtml(html) {
959
 	function getHtml(html) {
955
 	  const tempDiv = document.createElement('div');
960
 	  const tempDiv = document.createElement('div');
956
 	  tempDiv.innerHTML = html;
961
 	  tempDiv.innerHTML = html;
957
 	  return tempDiv.textContent || tempDiv.innerText || '';
962
 	  return tempDiv.textContent || tempDiv.innerText || '';
958
 	}
963
 	}
959
-	
964
+
960
 	// 获取是否开启汇总单、简易处理
965
 	// 获取是否开启汇总单、简易处理
961
 	function getHosConfig(){
966
 	function getHosConfig(){
962
 		let postData = {
967
 		let postData = {
@@ -975,7 +980,7 @@
975
 				HandleData.simpleness = res.list.find(i=>i.key=='itsmSimpleHandle').value
980
 				HandleData.simpleness = res.list.find(i=>i.key=='itsmSimpleHandle').value
976
 			});
981
 			});
977
 	}
982
 	}
978
-	
983
+
979
   onLoad((option) => {
984
   onLoad((option) => {
980
 		let storeData = handlerStore.handler.data
985
 		let storeData = handlerStore.handler.data
981
 		if(storeData && storeData.type=='rep'){
986
 		if(storeData && storeData.type=='rep'){

+ 17 - 12
pages/incidentList/incidentList.vue

@@ -86,7 +86,7 @@
86
   import { useIncidentNumStore } from '@/stores/incidentNum'
86
   import { useIncidentNumStore } from '@/stores/incidentNum'
87
   import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
87
   import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
88
 	import { useHandlerStore } from '@/stores/handler'
88
 	import { useHandlerStore } from '@/stores/handler'
89
-		
89
+
90
   useSetTitle();
90
   useSetTitle();
91
   const loginUserStore = useLoginUserStore();
91
   const loginUserStore = useLoginUserStore();
92
   const incidentNumStore = useIncidentNumStore();
92
   const incidentNumStore = useIncidentNumStore();
@@ -98,7 +98,7 @@
98
   const { makePhoneCall }  = useMakePhoneCall();
98
   const { makePhoneCall }  = useMakePhoneCall();
99
   const { setTabbar }  = useSetTabbar();
99
   const { setTabbar }  = useSetTabbar();
100
 	const handlerStore = useHandlerStore();
100
 	const handlerStore = useHandlerStore();
101
-	
101
+
102
   // 主题颜色
102
   // 主题颜色
103
   const primaryColor = ref(defaultColor)
103
   const primaryColor = ref(defaultColor)
104
 
104
 
@@ -108,7 +108,7 @@
108
   // 判断是否显示接单按钮
108
   // 判断是否显示接单按钮
109
   const computedReceive = computed(() => (data) => {
109
   const computedReceive = computed(() => (data) => {
110
     let inUser = data.handlingPersonnelUser && data.handlingPersonnelUser.id == loginUserStore.loginUser.user.id;
110
     let inUser = data.handlingPersonnelUser && data.handlingPersonnelUser.id == loginUserStore.loginUser.user.id;
111
-		let inUser2 = data.currentLog.workerId == loginUserStore.loginUser.user.id; 
111
+		let inUser2 = data.currentLog.workerId == loginUserStore.loginUser.user.id;
112
 		let inGroup = false;
112
 		let inGroup = false;
113
 		if(loginUserStore.loginUser.user&&loginUserStore.loginUser.user.group){
113
 		if(loginUserStore.loginUser.user&&loginUserStore.loginUser.user.group){
114
 			loginUserStore.loginUser.user.group.forEach(item => {
114
 			loginUserStore.loginUser.user.group.forEach(item => {
@@ -119,7 +119,7 @@
119
 			    }
119
 			    }
120
 			})
120
 			})
121
 		}
121
 		}
122
-    
122
+
123
     return data.state.value === 'pending' && (inUser2 || inGroup) && qiangdan.value;
123
     return data.state.value === 'pending' && (inUser2 || inGroup) && qiangdan.value;
124
   })
124
   })
125
 
125
 
@@ -209,7 +209,7 @@
209
   function knowAttachment(){
209
   function knowAttachment(){
210
     dataInfo.isAttachment = false;
210
     dataInfo.isAttachment = false;
211
   }
211
   }
212
-  
212
+
213
   // 点击报修录音
213
   // 点击报修录音
214
   function attachmentRequireClick(incidentData){
214
   function attachmentRequireClick(incidentData){
215
     dataInfo.incidentData = incidentData;
215
     dataInfo.incidentData = incidentData;
@@ -315,7 +315,7 @@
315
       delete postData.incident.duty;
315
       delete postData.incident.duty;
316
       delete postData.incident.hosId;
316
       delete postData.incident.hosId;
317
     }
317
     }
318
-		
318
+
319
 		if(postData.incident.queryTask!='todo' && postData.incident.queryTask!='doing' && postData.incident.queryTask!='storage'){
319
 		if(postData.incident.queryTask!='todo' && postData.incident.queryTask!='doing' && postData.incident.queryTask!='storage'){
320
 			if(dataInfo.evtFilter.deptValue && dataInfo.evtFilter.deptValue.value){
320
 			if(dataInfo.evtFilter.deptValue && dataInfo.evtFilter.deptValue.value){
321
 				let infoPermission = loginUserStore.loginUser.infoPermission
321
 				let infoPermission = loginUserStore.loginUser.infoPermission
@@ -324,7 +324,7 @@
324
 				delete postData.incident.hosId;
324
 				delete postData.incident.hosId;
325
 			}
325
 			}
326
 		}
326
 		}
327
-		
327
+
328
     if(postData.incident.queryTask === 'todo' || postData.incident.queryTask === 'owns' || postData.incident.queryTask === 'todoingAll'){
328
     if(postData.incident.queryTask === 'todo' || postData.incident.queryTask === 'owns' || postData.incident.queryTask === 'todoingAll'){
329
         if(loginUserStore.loginUser.user && loginUserStore.loginUser.user.group){
329
         if(loginUserStore.loginUser.user && loginUserStore.loginUser.user.group){
330
 					postData.incident.candidateGroups = loginUserStore.loginUser.user.group.map(v => v.id).toString();
330
 					postData.incident.candidateGroups = loginUserStore.loginUser.user.group.map(v => v.id).toString();
@@ -409,11 +409,16 @@
409
     }
409
     }
410
 
410
 
411
     for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
411
     for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
412
-      if (loginUserStore.loginUser.menu[i].link == "assign") {
413
-        assignFlag.value = true;
414
-      }
415
-      if (loginUserStore.loginUser.menu[i].link == "receive") {
416
-        qiangdan.value = true
412
+      if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
413
+        let currentMenu = loginUserStore.loginUser.menu[i].children;
414
+        for (let j = 0; j < currentMenu; j++) {
415
+          if (currentMenu[j].link == "assign") {
416
+            assignFlag.value = true;
417
+          }
418
+          if (currentMenu[j].link == "receive") {
419
+            qiangdan.value = true
420
+          }
421
+        }
417
       }
422
       }
418
     }
423
     }
419
     getTabs();
424
     getTabs();