|
@@ -15,13 +15,20 @@
|
15
|
15
|
:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.branch}">
|
16
|
16
|
</uni-data-picker>
|
17
|
17
|
</view>
|
18
|
|
- <view class="form_item">
|
|
18
|
+<!-- <view class="form_item">
|
19
|
19
|
<view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
|
20
|
20
|
<uni-data-picker class="value" placeholder="请选择报修科室"
|
21
|
21
|
v-model="dataInfo.department" :localdata="dataInfo.repairTypeList"
|
22
|
22
|
:clear-icon="false" :class="{formRed: isSubmit && !dataInfo.department}">
|
23
|
23
|
</uni-data-picker>
|
24
|
|
- </view>
|
|
24
|
+ </view> -->
|
|
25
|
+ <view class="form_item">
|
|
26
|
+ <view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
|
|
27
|
+ <view class="value category" @click="selectDepartment">
|
|
28
|
+ <text class="categoryName ellipsis-multiline">{{dataInfo.departmentName}}</text>
|
|
29
|
+ <text class="newicon newicon-weibiaoti2010104"></text>
|
|
30
|
+ </view>
|
|
31
|
+ </view>
|
25
|
32
|
<view class="candidate" v-if="itemUser">
|
26
|
33
|
<view class="candidate-item" v-for="(item, index) in itemUser.commonDeptDTO" :key="item" @click="itemCandidate(item)">{{item.dept}}</view>
|
27
|
34
|
</view>
|
|
@@ -164,7 +171,8 @@
|
164
|
171
|
repairTypeList:[],//科室数据
|
165
|
172
|
buildingTypeList:[],//楼栋数据
|
166
|
173
|
placeTypeList:[],//楼层数据
|
167
|
|
- department:'',//报修科室
|
|
174
|
+ department:'',//报修科室id
|
|
175
|
+ departmentName:'',//报修科室
|
168
|
176
|
address:'',//详细地址
|
169
|
177
|
contacts:'',//联系人
|
170
|
178
|
contactsInformation:'',//手机
|
|
@@ -197,7 +205,9 @@
|
197
|
205
|
// 上一步或者返回列表
|
198
|
206
|
function goBackOrToList(){
|
199
|
207
|
uni.setStorageSync('rapidRepNext',JSON.stringify(dataInfo))
|
200
|
|
- goBack();
|
|
208
|
+ uni.navigateTo({
|
|
209
|
+ url: `/pages/repair/rapidRep`
|
|
210
|
+ })
|
201
|
211
|
}
|
202
|
212
|
|
203
|
213
|
// 重置
|
|
@@ -280,18 +290,31 @@
|
280
|
290
|
|
281
|
291
|
// 获取事件详情
|
282
|
292
|
function getIncidentDetail(){
|
|
293
|
+ let user = loginUserStore.loginUser.user
|
283
|
294
|
if(uni.getStorageSync('rapidRepNext')){
|
284
|
295
|
let data = JSON.parse(uni.getStorageSync('rapidRepNext'))
|
285
|
296
|
if(data){
|
286
|
297
|
dataInfo.department = data.department//报修科室
|
|
298
|
+ dataInfo.departmentName = data.departmentName//报修科室
|
287
|
299
|
dataInfo.address = data.address//详细地址
|
288
|
300
|
dataInfo.contacts = data.contacts//联系人
|
289
|
301
|
dataInfo.contactsInformation = data.contactsInformation//手机
|
290
|
|
- dataInfo.branch = data.branch//院区
|
|
302
|
+ dataInfo.branch = Number(data.branch)//院区
|
291
|
303
|
dataInfo.areaId = data.areaId//楼栋
|
292
|
|
- getRepairTypes()
|
|
304
|
+ // getRepairTypes()
|
293
|
305
|
}
|
294
|
|
- }
|
|
306
|
+ }else if(user){
|
|
307
|
+ if(user.currentHospital.parent){
|
|
308
|
+ dataInfo.branch = user.currentHospital.parent.id
|
|
309
|
+ }else{
|
|
310
|
+ dataInfo.branch = user.currentHospital.id
|
|
311
|
+ }
|
|
312
|
+ dataInfo.contacts = user.name
|
|
313
|
+ dataInfo.contactsInformation = user.phone
|
|
314
|
+ dataInfo.department = user.dept.id
|
|
315
|
+ dataInfo.departmentName = user.dept.dept
|
|
316
|
+ // getRepairTypes()
|
|
317
|
+ }
|
295
|
318
|
if(uni.getStorageSync('repairData')){
|
296
|
319
|
let data = JSON.parse(uni.getStorageSync('repairData'))
|
297
|
320
|
if(data){
|
|
@@ -323,18 +346,7 @@
|
323
|
346
|
dataInfo.tabActiveValue = 'overtime'
|
324
|
347
|
getbuildingList()
|
325
|
348
|
}
|
326
|
|
- let user = loginUserStore.loginUser.user
|
327
|
|
- if(user){
|
328
|
|
- if(user.currentHospital.parent){
|
329
|
|
- dataInfo.branch = user.currentHospital.parent.id
|
330
|
|
- }else{
|
331
|
|
- dataInfo.branch = user.currentHospital.id
|
332
|
|
- }
|
333
|
|
- dataInfo.contacts = user.name
|
334
|
|
- dataInfo.contactsInformation = user.phone
|
335
|
|
- dataInfo.department = user.dept.id
|
336
|
|
- getRepairTypes()
|
337
|
|
- }
|
|
349
|
+
|
338
|
350
|
|
339
|
351
|
let postData = {
|
340
|
352
|
"key": 'repair_incident_type',
|
|
@@ -358,7 +370,9 @@
|
358
|
370
|
|
359
|
371
|
// 科内报修选择院区
|
360
|
372
|
function doingDeptChange(){
|
361
|
|
- getRepairTypes()
|
|
373
|
+ dataInfo.department = ''
|
|
374
|
+ dataInfo.departmentName = ''
|
|
375
|
+ // getRepairTypes()
|
362
|
376
|
}
|
363
|
377
|
|
364
|
378
|
// 公区报修选择院区
|
|
@@ -366,6 +380,14 @@
|
366
|
380
|
getbuildingList()
|
367
|
381
|
}
|
368
|
382
|
|
|
383
|
+ // 跳转到搜索报修科室
|
|
384
|
+ function selectDepartment(){
|
|
385
|
+ uni.setStorageSync('rapidRepNext',JSON.stringify(dataInfo))
|
|
386
|
+ uni.navigateTo({
|
|
387
|
+ url: `/pages/searchDept/searchDept?type=repair&branchId=${dataInfo.branch}`
|
|
388
|
+ })
|
|
389
|
+ }
|
|
390
|
+
|
369
|
391
|
// 获取报修科室列表
|
370
|
392
|
function getRepairTypes(){
|
371
|
393
|
uni.showLoading({
|