ソースを参照

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

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

+ 115 - 110
pages/assign/assign.vue

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

+ 86 - 66
pages/changeUser/changeUser.vue

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

+ 73 - 68
pages/handler/handler.vue

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

+ 17 - 12
pages/incidentList/incidentList.vue

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