add-order.vue
19.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
<template>
<view class="page-container">
<view class="work-order-form-content commonPageLRpadding">
<up-form
label-position="left"
:model="workOrderForm"
ref="workOrderFormRef"
labelWidth="200rpx"
>
<!-- 1. 工单位置(地图选择) -->
<up-form-item
label="工单位置"
prop="workLocation"
border-bottom
required
@click="chooseWorkLocation(); hideKeyboard()"
>
<up-input
v-model="workOrderForm.workLocation"
border="none"
readonly
suffix-icon="map-fill"
placeholder="点击选择工单位置"
></up-input>
</up-form-item>
<!-- 2. 工单名称(下拉框) -->
<up-form-item
label="工单名称"
prop="orderName"
border-bottom
required
@click="handleActionSheetOpen('orderName'); hideKeyboard()"
>
<up-input
v-model="workOrderForm.orderName"
disabled
disabled-color="#ffffff"
placeholder="请选择工单名称"
border="none"
></up-input>
<template #right>
<up-icon name="arrow-right" size="16"></up-icon>
</template>
</up-form-item>
<!-- 3. 情况描述(文本域) -->
<up-form-item
label="情况描述"
prop="problemDesc"
required
>
<up-textarea
placeholder="请输入情况描述(最多200字)"
v-model.trim="workOrderForm.problemDesc"
count
maxlength="200"
rows="4"
@blur="() => workOrderFormRef.validateField('problemDesc')"
></up-textarea>
</up-form-item>
<!-- 4. 问题照片 -->
<up-form-item label="问题照片" prop="problemImgs" required>
<up-upload
:file-list="problemImgs.imgList.value||[]"
@after-read="problemImgs.uploadImgs"
@delete="problemImgs.deleteImg"
multiple
:width="70"
:height="70"
:max-count="problemImgs.uploadConfig.maxCount"
:upload-text="problemImgs.uploadConfig.uploadText"
:size-type="problemImgs.uploadConfig.sizeType"
></up-upload>
</up-form-item>
<!-- 派单情况分组(放在问题照片下方,增加间距) -->
<!-- <up-gap height="20" bgColor="#bbb"></up-gap>-->
<view class="dispatch-group">
<view class="dispatch-title">派单情况</view>
<!-- 业务线单选框 -->
<up-form-item
label="业务线"
prop="busiLineCn"
border-bottom
required
>
<up-radio-group
v-model="workOrderForm.busiLineCn"
placement="row"
@change="handleBusiLineChange"
>
<up-radio
v-for="item in busiLineOptions"
:key="item.name"
:label="item.name"
:name="item.name"
></up-radio>
</up-radio-group>
</up-form-item>
<!-- 道路名称(下拉框) -->
<up-form-item
label="道路名称"
prop="roadName"
border-bottom
required
@click="handleActionSheetOpen('roadName'); hideKeyboard()"
>
<up-input
v-model="workOrderForm.roadName"
readonly
disabled-color="#ffffff"
placeholder="请先选择工单位置"
border="none"
></up-input>
<template #right>
<up-icon name="arrow-right" size="16" ></up-icon>
</template>
</up-form-item>
<!-- 紧急程度选择 -->
<up-form-item
label="紧急程度"
prop="pressingTypeName"
border-bottom
required
@click="handleActionSheetOpen('pressingType'); hideKeyboard()"
>
<up-input
v-model="workOrderForm.pressingTypeName"
disabled
disabled-color="#ffffff"
placeholder="请选择紧急程度"
border="none"
></up-input>
<template #right>
<up-icon name="arrow-right" size="16"></up-icon>
</template>
</up-form-item>
</view>
<!-- 5. 完成时间 -->
<up-form-item
label="希望完成时间"
prop="expectedFinishDate"
@click="show=true;hideKeyboard()"
>
<up-input
v-model="workOrderForm.expectedFinishDate"
border="none"
readonly
placeholder="点击选择时间"
></up-input>
<template #right>
<view v-if="workOrderForm.expectedFinishDate" @click.stop>
<up-icon
name="close"
size="16"
@click.stop="clearExpectedFinishDate"
></up-icon>
</view>
<up-icon name="arrow-right" size="16" v-else></up-icon>
</template>
</up-form-item>
</up-form>
</view>
<!-- 底部提交按钮 -->
<view class="fixed-bottom-btn-wrap">
<up-button
type="primary"
text="提交工单"
@click="submitWorkOrder"
></up-button>
</view>
<!-- 合并后的通用下拉弹窗 -->
<up-action-sheet
:show="showActionSheet"
:actions="currentActionSheetData.list"
:title="currentActionSheetData.title"
@close="handleActionSheetClose"
@select="handleActionSheetSelect"
></up-action-sheet>
<!-- 完成时间选择器 -->
<up-datetime-picker
:show="show"
v-model="expectedFinishDate"
mode="datetime"
:min-date="new Date()"
@cancel="show = false"
@confirm="expectedFinishDateConfirm"
></up-datetime-picker>
</view>
</template>
<script setup>
import { ref, reactive } from 'vue'
import { onReady, onShow, onLoad } from '@dcloudio/uni-app';
import { useUploadImgs } from '@/common/utils/useUploadImgs'
import { getRoadListByLatLng } from '@/api/common'
import { regionmgrUniversalApproval, regionmgrWorkorderCreate } from '@/api/work-order-manage/work-order-manage'
import { timeFormat } from '@/uni_modules/uview-plus'
import { nextStepMap } from '@/common/utils/common'
import { useUserStore } from '@/pinia/user';
// ========== 状态管理 ==========
const userStore = useUserStore();
// ========== 业务线相关状态 ==========
// 业务线映射表
const busiLineMap = ref({
'yl': '园林',
'sz': '市政',
'wy': '物业',
'园林': 'yl',
'市政': 'sz',
'物业': 'wy'
});
// 业务线选项列表
const busiLineOptions = ref([]);
const formatBusiLineOptions = () => {
if (!userStore.userInfo?.user?.busiLine) {
busiLineOptions.value = [];
return;
}
const rawBusiLines = userStore.userInfo.user.busiLine.split(',');
busiLineOptions.value = rawBusiLines.map(item => ({
name: busiLineMap.value[item.trim()]
}));
};
// 工具方法:通过中文名称获取对应的英文标识
const getBusiLineEnByCn = (cnName) => {
return busiLineMap.value[cnName] || '';
};
// ========== 表单Ref ==========
const workOrderFormRef = ref(null)
// ========== 公共上传逻辑复用 ==========
const problemImgs = useUploadImgs({
maxCount: 3,
uploadText: '选择问题照片',
sizeType: ['compressed'],
formRef: workOrderFormRef,
fieldName: 'problemImgs'
})
if (!Array.isArray(problemImgs.rawImgList.value)) {
problemImgs.rawImgList.value = [];
}
// ========== 页面状态 ==========
const showActionSheet = ref(false)
const currentActionSheetData = reactive({
type: '',
list: [],
title: ''
})
const show = ref(false)
const expectedFinishDate = ref(Date.now())
// ========== 重新提交相关状态 ==========
const isRenew = ref(false);
const renewOrderData = ref(null);
// ========== 下拉列表数据 ==========
const roadNameList = ref([])
const orderNameList = ref([])
const pressingTypeList = ref([])
// ========== 工单表单数据 ==========
const workOrderForm = reactive({
busiLineCn: '',
roadId: 0,
roadName: '',
workLocation: '',
orderName: '',
pressingType: '',
pressingTypeName: '',
problemDesc: '',
lat: 0,
lon: 0,
expectedFinishDate: '',
})
// ========== 表单校验规则 ==========
const workOrderFormRules = reactive({
busiLineCn: [
{ type: 'string', required: true, message: '请选择业务线', trigger: ['change', 'blur'] }
],
workLocation: [
{ type: 'string', required: true, message: '请选择工单位置', trigger: ['change', 'blur'] }
],
roadName: [
{ type: 'string', required: true, message: '请选择道路名称', trigger: ['change', 'blur'] }
],
orderName: [
{ type: 'string', required: true, message: '请选择工单名称', trigger: ['change', 'blur'] }
],
pressingTypeName: [
{ type: 'string', required: true, message: '请选择紧急程度', trigger: ['change'] }
],
problemDesc: [
{ type: 'string', required: true, message: '请输入情况描述', trigger: ['change', 'blur'] },
{ type: 'string', min: 3, max: 200, message: '情况描述需3-200字', trigger: ['change', 'blur'] }
],
problemImgs: [problemImgs.imgValidateRule]
})
// ========== 生命周期 ==========
onLoad((options) => {
// 初始化业务线选项
formatBusiLineOptions();
// 默认选中第一个业务线
if (busiLineOptions.value.length > 0) {
workOrderForm.busiLineCn = busiLineOptions.value[0].name;
}
// 判断是否为重新提交状态
if (options.isRenew == 1 && options.tempKey) {
isRenew.value = true;
const tempKey = options.tempKey;
try {
const orderData = uni.getStorageSync(tempKey);
if (orderData && typeof orderData === 'object') {
renewOrderData.value = orderData;
echoOrderData(renewOrderData.value);
} else {
uni.showToast({ title: '工单数据不存在,无法重新提交', icon: 'none' });
setTimeout(() => uni.navigateBack(), 1000);
return;
}
} catch (error) {
console.error('读取工单数据失败:', error);
uni.showToast({ title: '数据读取异常,无法重新提交', icon: 'none' });
setTimeout(() => uni.navigateBack(), 1000);
return;
} finally {
uni.removeStorageSync(tempKey);
}
}
});
onReady(() => {
if (workOrderFormRef.value) {
workOrderFormRef.value.setRules(workOrderFormRules)
}
console.log('工单表单规则初始化完成')
})
onShow(() => {
// 初始化工单名称列表
orderNameList.value = uni.$dict.transformLabelValueToNameValue(uni.$dict.getDictSimpleList('work_name'))
// 初始化紧急程度列表
pressingTypeList.value = uni.$dict.transformLabelValueToNameValue(uni.$dict.getDictSimpleList('workorder_pressing_type'))
})
// ========== 核心方法 ==========
const echoOrderData = (orderItem) => {
// 回显业务线
if (orderItem.busiLine) {
workOrderForm.busiLineCn = busiLineMap.value[orderItem.busiLine];
}
// 回显基础字段
workOrderForm.roadId = orderItem.roadId || 0;
workOrderForm.roadName = orderItem.roadName || '';
workOrderForm.workLocation = orderItem.lonLatAddress || orderItem.roadName || '';
workOrderForm.orderName = orderItem.orderName || '';
workOrderForm.pressingType = orderItem.pressingType || '';
workOrderForm.pressingTypeName = uni.$dict.getDictLabel('workorder_pressing_type', orderItem.pressingType) || '';
workOrderForm.problemDesc = orderItem.remark || '';
workOrderForm.lat = orderItem.lat || 0;
workOrderForm.lon = orderItem.lon || 0;
workOrderForm.expectedFinishDate = timeFormat(orderItem.expectedFinishDate, 'yyyy-mm-dd hh:MM:ss') || timeFormat(new Date(), 'yyyy-mm-dd hh:MM:ss');
// 回显图片
if (orderItem.problemsImgs && Array.isArray(orderItem.problemsImgs) && orderItem.problemsImgs.length > 0) {
const imgList = orderItem.problemsImgs.map((imgUrl, index) => ({
url: imgUrl,
name: `renew_img_${index}`,
status: 'success'
}));
problemImgs.imgList.value = imgList;
problemImgs.rawImgList.value = imgList;
}
// 自动获取道路列表
if (orderItem.lat && orderItem.lon) {
getRoadListByBusiLine();
}
};
// 业务线切换事件
const handleBusiLineChange = () => {
workOrderForm.roadName = '';
workOrderForm.roadId = 0;
roadNameList.value = [];
if (workOrderForm.workLocation) {
getRoadListByBusiLine();
}
};
// 获取道路列表(带业务线)
const getRoadListByBusiLine = async () => {
if (!workOrderForm.lat || !workOrderForm.lon) {
return;
}
const busiLineEn = getBusiLineEnByCn(workOrderForm.busiLineCn);
if (!busiLineEn) {
uni.showToast({ title: '业务线标识异常', icon: 'none' });
return;
}
try {
uni.showLoading({ title: '获取道路名称中...' });
const roadRes = await getRoadListByLatLng({
busiLine: busiLineEn,
latitude: workOrderForm.lat,
longitude: workOrderForm.lon
});
uni.hideLoading();
if (Array.isArray(roadRes)) {
roadNameList.value = roadRes.map((item) => ({
name: item.roadName || '',
code: item.roadCode || '',
id: item.roadId || 0
}));
} else {
roadNameList.value = [{ name: '未查询到道路名称', code: '', id: 0 }];
uni.showToast({ title: '未查询到该位置的道路信息', icon: 'none' });
}
} catch (err) {
uni.hideLoading();
console.error('获取道路名称失败:', err);
uni.showToast({ title: '获取道路名称失败,请重试', icon: 'none' });
roadNameList.value = [{ name: '获取失败,请重新选择位置', code: '', id: 0 }];
}
};
// ========== 通用弹窗方法 ==========
const handleActionSheetOpen = (type) => {
if (type === 'roadName' && !workOrderForm.workLocation) {
uni.showToast({ title: '请先选择工单位置', icon: 'none' })
return
}
const configMap = {
roadName: {
title: '请选择道路名称',
list: roadNameList.value
},
orderName: {
title: '请选择工单名称',
list: orderNameList.value
},
pressingType: {
title: '请选择紧急程度',
list: pressingTypeList.value
}
}
currentActionSheetData.type = type
currentActionSheetData.title = configMap[type].title
currentActionSheetData.list = configMap[type].list
showActionSheet.value = true
}
const handleActionSheetClose = () => {
showActionSheet.value = false
currentActionSheetData.type = ''
currentActionSheetData.list = []
currentActionSheetData.title = ''
}
const handleActionSheetSelect = (e) => {
const { type } = currentActionSheetData
switch (type) {
case 'roadName':
workOrderForm.roadName = e.name
workOrderForm.roadId = e.code
workOrderFormRef.value?.validateField('roadName')
break
case 'orderName':
workOrderForm.orderName = e.name
workOrderFormRef.value?.validateField('orderName')
break
case 'pressingType':
workOrderForm.pressingType = e.value
workOrderForm.pressingTypeName = e.name
workOrderFormRef.value?.validateField('pressingTypeName')
break
}
showActionSheet.value = false
}
const navigateBack = () => {
uni.reLaunch({
url: '/pages-sub/problem/work-order-manage/index',
fail: () => {
uni.navigateBack({ delta: 2 });
}
});
}
// 清除希望完成时间
const clearExpectedFinishDate = ()=> {
workOrderForm.expectedFinishDate = ''
}
// 选择工单位置
const chooseWorkLocation = () => {
uni.chooseLocation({
success: async (res) => {
workOrderForm.roadName = ''
workOrderForm.roadId = 0
roadNameList.value = []
workOrderForm.workLocation = res.name
workOrderForm.lat = res.latitude
workOrderForm.lon = res.longitude
workOrderFormRef.value?.validateField('workLocation')
workOrderFormRef.value?.validateField('roadName')
await getRoadListByBusiLine();
},
fail: (err) => {
console.error('选择位置失败:', err)
uni.showToast({ title: '选择位置失败:' + err.errMsg, icon: 'none' })
}
})
}
// 完成时间确认
const expectedFinishDateConfirm = (e) => {
workOrderForm.expectedFinishDate = timeFormat(e.value, 'yyyy-mm-dd hh:MM:ss')
show.value = false
}
// 隐藏键盘
const hideKeyboard = () => {
uni.hideKeyboard()
}
// 提交工单
const submitWorkOrder = async () => {
try {
await workOrderFormRef.value.validate()
const busiLineEn = getBusiLineEnByCn(workOrderForm.busiLineCn);
if (!busiLineEn) {
uni.showToast({ title: '业务线选择异常,请重新选择', icon: 'none' });
return;
}
const commonSubmitData = {
roadId: workOrderForm.roadId,
roadName: workOrderForm.roadName,
problemsImgs: problemImgs.getSuccessImgUrls(),
remark: workOrderForm.problemDesc.trim(),
latLonType: 2,
lat: workOrderForm.lat,
lon: workOrderForm.lon,
lonLatAddress: workOrderForm.workLocation,
pressingType: workOrderForm.pressingType,
orderName: workOrderForm.orderName,
expectedFinishDate: new Date(workOrderForm.expectedFinishDate).getTime(),
sourceId: 1,
sourceName: workOrderForm.busiLineCn,
busiLine: busiLineEn
}
uni.showLoading({ title: '提交中...' })
let res
if (isRenew.value) {
const renewSubmitData = {
workerDataId: renewOrderData.value.id,
taskKey: renewOrderData.value.taskKey,
taskId: renewOrderData.value.taskId,
operateType: nextStepMap[renewOrderData.value.taskKey]?.operateTypeRenew || '',
agree: 0,
reason: '重新提交工单',
...commonSubmitData
}
res = await regionmgrUniversalApproval(renewSubmitData)
} else {
res = await regionmgrWorkorderCreate(commonSubmitData)
}
uni.hideLoading()
uni.showToast({
title: isRenew.value ? '重新提交成功' : '工单提交成功',
icon: 'success',
duration: 1000
})
setTimeout(() => {
uni.reLaunch({
url: '/pages-sub/problem/regional-order-manage/index'
})
}, 1000)
} catch (error) {
uni.hideLoading()
if (!Array.isArray(error)) {
console.error(isRenew.value ? '工单重新提交失败:' : '工单提交失败:', error)
uni.showToast({
title: isRenew.value ? error.msg : error.msg,
icon: 'none',
duration: 2000
})
}
}
}
</script>
<style lang="scss" scoped>
// 全局页面样式
.page-container {
min-height: 100vh;
padding-bottom: 100rpx; // 给底部按钮留空间
}
// 工单表单内容容器
.work-order-form-content {
background: #fff;
}
// 派单情况分组样式(核心:增加顶部间距)
.dispatch-group {
padding-top: 20rpx; // 分组内顶部内边距,增强视觉区分
}
// 派单情况标题样式
.dispatch-title {
font-size: 32rpx;
font-weight: 600;
color:$u-primary;
margin-bottom: 20rpx;
padding-left: 10rpx;
}
</style>