f0ec74d6
刘淇
大区经理派单
|
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
|
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 isRenew = ref(false);
const renewOrderData = ref(null);
// ========== 下拉列表数据 ==========
const orderNameList = ref([])
// ========== 工单表单数据 ==========
const workOrderForm = reactive({
orderName: '',
problemDesc: '',
lat: 0,
lon: 0,
workLocation: '',
})
// ========== 表单校验规则 ==========
const workOrderFormRules = reactive({
workLocation: [
{ type: 'string', required: true, message: '请选择工单位置', trigger: ['change', 'blur'] }
],
orderName: [
{ type: 'string', required: true, message: '请选择工单名称', trigger: ['change', 'blur'] }
],
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 (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'))
})
// ========== 核心方法 ==========
const echoOrderData = (orderItem) => {
// 回显基础字段
workOrderForm.workLocation = orderItem.lonLatAddress || orderItem.roadName || '';
workOrderForm.orderName = orderItem.orderName || '';
workOrderForm.problemDesc = orderItem.remark || '';
workOrderForm.lat = orderItem.lat || 0;
workOrderForm.lon = orderItem.lon || 0;
// 回显图片
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;
}
};
// ========== 通用弹窗方法 ==========
const handleActionSheetOpen = (type) => {
const configMap = {
orderName: {
title: '请选择工单名称',
list: orderNameList.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 'orderName':
workOrderForm.orderName = e.name
workOrderFormRef.value?.validateField('orderName')
break
}
showActionSheet.value = false
}
const navigateBack = () => {
uni.reLaunch({
url: '/pages-sub/problem/work-order-manage/index',
fail: () => {
uni.navigateBack({ delta: 2 });
}
});
}
// 选择工单位置
const chooseWorkLocation = () => {
uni.chooseLocation({
success: async (res) => {
workOrderForm.workLocation = res.name
workOrderForm.lat = res.latitude
workOrderForm.lon = res.longitude
workOrderFormRef.value?.validateField('workLocation')
},
fail: (err) => {
console.error('选择位置失败:', err)
uni.showToast({ title: '选择位置失败:' + err.errMsg, icon: 'none' })
}
})
}
// 隐藏键盘
const hideKeyboard = () => {
uni.hideKeyboard()
}
// 提交工单
const submitWorkOrder = async () => {
try {
await workOrderFormRef.value.validate()
const commonSubmitData = {
problemsImgs: problemImgs.getSuccessImgUrls(),
remark: workOrderForm.problemDesc.trim(),
latLonType: 2,
lat: workOrderForm.lat,
lon: workOrderForm.lon,
lonLatAddress: workOrderForm.workLocation,
orderName: workOrderForm.orderName,
sourceId: 1
}
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,
|