|
|
@@ -3,18 +3,27 @@
|
|
|
<view class="form-page">
|
|
|
<u-form ref="formRef" :model="form" :rules="rules" labelPosition="left" labelWidth="85px">
|
|
|
<u-form-item label="快递单号:" prop="waybillCode" required>
|
|
|
- <u-input v-model="form.waybillCode" placeholder="请输入快递单号" clearable></u-input>
|
|
|
+ <template v-if="isReadonly && form.waybillCode">
|
|
|
+ <text class="readonly-text">{{ form.waybillCode }}</text>
|
|
|
+ </template>
|
|
|
+ <u-input v-else v-model="form.waybillCode" placeholder="请输入快递单号" clearable></u-input>
|
|
|
</u-form-item>
|
|
|
+ <!-- <u-form-item label="订单编号:" prop="orderId" v-if="form.orderId || isReadonly">
|
|
|
+ <template v-if="isReadonly && form.orderId">
|
|
|
+ <text class="clickable-text" @click="goToOrderDetail">{{ form.orderId }}</text>
|
|
|
+ </template>
|
|
|
+ <u-input v-else v-model="form.orderId" placeholder="请输入订单编号" clearable></u-input>
|
|
|
+ </u-form-item> -->
|
|
|
<u-form-item label="承运商:" prop="carrier" required>
|
|
|
- <u-input :value="carrierText" readonly suffixIcon="arrow-down" placeholder="请选择"
|
|
|
- @click="showCarrierPicker = true"></u-input>
|
|
|
+ <u-input v-model="carrierText" readonly suffixIcon="arrow-down" placeholder="请选择"
|
|
|
+ @click="!isReadonly && (showCarrierPicker = true)"></u-input>
|
|
|
</u-form-item>
|
|
|
<u-form-item label="验货状态:" prop="verifyStatus" required>
|
|
|
- <u-input :value="verifyText" readonly suffixIcon="arrow-down" placeholder="请选择"
|
|
|
+ <u-input v-model="verifyText" readonly suffixIcon="arrow-down" placeholder="请选择"
|
|
|
@click="showVerifyPicker = true"></u-input>
|
|
|
</u-form-item>
|
|
|
<u-form-item label="任务类型:" prop="taskType" required>
|
|
|
- <u-input :value="taskTypeText" readonly suffixIcon="arrow-down" placeholder="请选择"
|
|
|
+ <u-input v-model="taskTypeText" readonly suffixIcon="arrow-down" placeholder="请选择"
|
|
|
@click="showTaskTypePicker = true"></u-input>
|
|
|
</u-form-item>
|
|
|
<u-form-item label="任务详情:" prop="taskDetail" required>
|
|
|
@@ -25,9 +34,9 @@
|
|
|
<cy-upload :filename="form.images" @update:filename="form.images = $event" />
|
|
|
</u-form-item>
|
|
|
<view class="divider"></view>
|
|
|
- <u-form-item label="指派给:" prop="assignTo" required>
|
|
|
- <u-input :value="assignText" readonly suffixIcon="arrow-down" placeholder="请选择"
|
|
|
- @click="showAssignPicker = true"></u-input>
|
|
|
+ <u-form-item label="指派给:" prop="assignTo">
|
|
|
+ <u-input v-model="assignText" readonly suffixIcon="arrow-down" placeholder="请选择 (非必填)"
|
|
|
+ @click="openAssignPicker"></u-input>
|
|
|
</u-form-item>
|
|
|
</u-form>
|
|
|
</view>
|
|
|
@@ -38,8 +47,33 @@
|
|
|
@cancel="showVerifyPicker = false" @close="showVerifyPicker = false"></u-picker>
|
|
|
<u-picker :show="showTaskTypePicker" :columns="[taskTypeOptions]" title="选择任务类型" @confirm="onPickTaskType"
|
|
|
@cancel="showTaskTypePicker = false" @close="showTaskTypePicker = false"></u-picker>
|
|
|
- <u-picker :show="showAssignPicker" :columns="[assignOptions]" title="指派给" @confirm="onPickAssign"
|
|
|
- @cancel="showAssignPicker = false" @close="showAssignPicker = false"></u-picker>
|
|
|
+ <!-- 指派给选择器 - 使用 popup + checkbox 实现多选 -->
|
|
|
+ <u-popup v-model:show="showAssignPicker" mode="bottom" :round="20">
|
|
|
+ <view class="assign-picker-content">
|
|
|
+ <view class="assign-header">
|
|
|
+ <text class="title">选择指派人</text>
|
|
|
+ <view class="actions">
|
|
|
+ <text class="cancel-btn" @click="showAssignPicker = false">取消</text>
|
|
|
+ <text class="confirm-btn" @click="confirmAssign">确定</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="assign-body">
|
|
|
+ <view
|
|
|
+ v-for="(item, index) in assignOptions"
|
|
|
+ :key="index"
|
|
|
+ class="assign-item"
|
|
|
+ @click="toggleAssign(index)"
|
|
|
+ >
|
|
|
+ <text class="item-text">{{ item.text }}</text>
|
|
|
+ <view
|
|
|
+ class="custom-checkbox"
|
|
|
+ :class="{ checked: tempAssignIndexes.includes(index) }"
|
|
|
+ >
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </u-popup>
|
|
|
|
|
|
<view class="fixed-bottom">
|
|
|
<u-button type="warning" size="large" @click="onCancel">取消</u-button>
|
|
|
@@ -58,51 +92,87 @@ const submitting = ref(false)
|
|
|
|
|
|
const form = ref({
|
|
|
waybillCode: '',
|
|
|
- carrier: '',
|
|
|
+ orderId: '',
|
|
|
+ expressType: '',
|
|
|
verifyStatus: '',
|
|
|
taskType: '',
|
|
|
taskDetail: '',
|
|
|
images: [],
|
|
|
- assignTo: ''
|
|
|
+ assignTo: []
|
|
|
})
|
|
|
|
|
|
const rules = {
|
|
|
waybillCode: [{ required: true, message: '请输入快递单号' }],
|
|
|
- carrier: [{ required: true, message: '请选择承运商' }],
|
|
|
+ expressType: [{ required: true, message: '请选择承运商' }],
|
|
|
verifyStatus: [{ required: true, message: '请选择验货状态' }],
|
|
|
taskType: [{ required: true, message: '请选择任务类型' }],
|
|
|
taskDetail: [{ required: true, message: '请输入任务详情' }],
|
|
|
- images: [{ type: 'array', required: true, min: 1, message: '请上传图片' }],
|
|
|
- assignTo: [{ required: true, message: '请选择指派对象' }]
|
|
|
+ assignTo: [{ required: false, message: '请选择指派对象' }]
|
|
|
}
|
|
|
|
|
|
-const carrierOptions = [
|
|
|
- { text: '圆通', value: 'YTO' },
|
|
|
- { text: '中通', value: 'ZTO' },
|
|
|
- { text: '申通', value: 'STO' },
|
|
|
- { text: '韵达', value: 'YUNDA' },
|
|
|
- { text: '京东', value: 'JD' }
|
|
|
-]
|
|
|
+const carrierOptions = ref([])
|
|
|
const verifyOptions = [
|
|
|
- { text: '已验货', value: 'VERIFIED' },
|
|
|
- { text: '未验货', value: 'UNVERIFIED' }
|
|
|
-]
|
|
|
-const taskTypeOptions = [
|
|
|
- { text: '部分发货', value: 'PART_SHIP' },
|
|
|
- { text: '少发', value: 'LESS_SHIP' },
|
|
|
- { text: '破损', value: 'BROKEN' },
|
|
|
- { text: '其他', value: 'OTHER' }
|
|
|
-]
|
|
|
-const assignOptions = [
|
|
|
- { text: 'Agoni', value: 'Agoni' },
|
|
|
- { text: '张三', value: 'ZhangSan' },
|
|
|
- { text: '李四', value: 'LiSi' }
|
|
|
+ { text: '已验货', value: 1 },
|
|
|
+ { text: '未验货', value: 0 }
|
|
|
]
|
|
|
+const taskTypeOptions = ref([])
|
|
|
+const assignOptions = ref([{ text: '默认(不指派)', value: '' }])
|
|
|
+
|
|
|
+// 获取快递公司字典
|
|
|
+const getCarrierOptions = async () => {
|
|
|
+ try {
|
|
|
+ const res = await uni.$u.http.get('/system/dict/data/type/shop_order_express_name')
|
|
|
+ if (res.code === 200 && res.data) {
|
|
|
+ carrierOptions.value = res.data.map(item => ({
|
|
|
+ text: item.dictLabel,
|
|
|
+ value: item.dictValue
|
|
|
+ }))
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.error('获取快递公司失败', e)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 获取任务类型字典
|
|
|
+const getTaskTypeOptions = async () => {
|
|
|
+ try {
|
|
|
+ const res = await uni.$u.http.get('/system/dict/data/type/sell_task_type')
|
|
|
+ if (res.code === 200 && res.data) {
|
|
|
+ taskTypeOptions.value = res.data.map(item => ({
|
|
|
+ text: item.dictLabel,
|
|
|
+ value: parseInt(item.dictValue)
|
|
|
+ }))
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.error('获取任务类型失败', e)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 获取指派人列表
|
|
|
+const getAssignOptions = async () => {
|
|
|
+ try {
|
|
|
+ const res = await uni.$u.http.get('/system/user/list', {
|
|
|
+ params: {
|
|
|
+ pageSize: 1000
|
|
|
+ }
|
|
|
+ })
|
|
|
+ if (res.code === 200 && res.rows) {
|
|
|
+ assignOptions.value = res.rows.map(item => ({
|
|
|
+ text: item.nickName,
|
|
|
+ value: item.userId
|
|
|
+ }))
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.error('获取指派人失败', e)
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
const showCarrierPicker = ref(false)
|
|
|
const showVerifyPicker = ref(false)
|
|
|
const showTaskTypePicker = ref(false)
|
|
|
const showAssignPicker = ref(false)
|
|
|
+// 临时存储选中的索引数组
|
|
|
+const tempAssignIndexes = ref([])
|
|
|
|
|
|
const carrierText = ref('')
|
|
|
const verifyText = ref('')
|
|
|
@@ -111,33 +181,135 @@ const assignText = ref('')
|
|
|
|
|
|
const onPickCarrier = (e) => {
|
|
|
const cell = e.value?.[0]
|
|
|
- form.value.carrier = cell?.value || ''
|
|
|
+ form.value.expressType = cell?.value || ''
|
|
|
carrierText.value = cell?.text || ''
|
|
|
showCarrierPicker.value = false
|
|
|
+ console.log('选择承运商:', form.value.expressType, carrierText.value)
|
|
|
}
|
|
|
const onPickVerify = (e) => {
|
|
|
const cell = e.value?.[0]
|
|
|
form.value.verifyStatus = cell?.value || ''
|
|
|
verifyText.value = cell?.text || ''
|
|
|
showVerifyPicker.value = false
|
|
|
+ console.log('选择验货状态:', form.value.verifyStatus, verifyText.value)
|
|
|
}
|
|
|
const onPickTaskType = (e) => {
|
|
|
const cell = e.value?.[0]
|
|
|
form.value.taskType = cell?.value || ''
|
|
|
taskTypeText.value = cell?.text || ''
|
|
|
showTaskTypePicker.value = false
|
|
|
+ console.log('选择任务类型:', form.value.taskType, taskTypeText.value)
|
|
|
+}
|
|
|
+
|
|
|
+// 打开指派人选择器时,初始化临时选中状态
|
|
|
+const openAssignPicker = () => {
|
|
|
+ if (isReadonly.value) return
|
|
|
+ // 根据当前已选择的值,初始化 tempAssignIndexes
|
|
|
+ tempAssignIndexes.value = []
|
|
|
+ if (form.value.assignTo && form.value.assignTo.length > 0) {
|
|
|
+ assignOptions.value.forEach((item, index) => {
|
|
|
+ if (form.value.assignTo.includes(item.value)) {
|
|
|
+ tempAssignIndexes.value.push(index)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ showAssignPicker.value = true
|
|
|
+ console.log('打开选择器,已选中索引:', tempAssignIndexes.value)
|
|
|
}
|
|
|
const onPickAssign = (e) => {
|
|
|
- const cell = e.value?.[0]
|
|
|
- form.value.assignTo = cell?.value || ''
|
|
|
- assignText.value = cell?.text || ''
|
|
|
+ // 这个方法不再使用,改用 toggleAssign 和 confirmAssign
|
|
|
+}
|
|
|
+
|
|
|
+// 切换选中状态
|
|
|
+const toggleAssign = (index) => {
|
|
|
+ const idx = tempAssignIndexes.value.indexOf(index)
|
|
|
+ if (idx > -1) {
|
|
|
+ tempAssignIndexes.value.splice(idx, 1)
|
|
|
+ } else {
|
|
|
+ tempAssignIndexes.value.push(index)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 确认选择
|
|
|
+const confirmAssign = () => {
|
|
|
+ const selectedList = []
|
|
|
+ tempAssignIndexes.value.forEach(index => {
|
|
|
+ selectedList.push(assignOptions.value[index])
|
|
|
+ })
|
|
|
+
|
|
|
+ form.value.assignTo = selectedList.map(item => item.value)
|
|
|
+ assignText.value = selectedList.map(item => item.text).join(',')
|
|
|
showAssignPicker.value = false
|
|
|
+ console.log('选择指派人:', form.value.assignTo, assignText.value)
|
|
|
}
|
|
|
|
|
|
const onCancel = () => {
|
|
|
uni.navigateBack()
|
|
|
}
|
|
|
|
|
|
+const goToOrderDetail = () => {
|
|
|
+ if (!form.value.orderId) return
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pages/index/detail/index?id=${form.value.orderId}`
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const workOrderId = ref('')
|
|
|
+const isEdit = ref(false)
|
|
|
+const isReadonly = ref(false)
|
|
|
+
|
|
|
+const onLoadDetail = async (id) => {
|
|
|
+ try {
|
|
|
+ const res = await uni.$u.http.get('/app/workOrder/getWorkOrderDetail', {
|
|
|
+ params: { workOrderId: id }
|
|
|
+ })
|
|
|
+ if (res.code === 200 && res.data) {
|
|
|
+ const data = res.data
|
|
|
+ form.value.waybillCode = data.waybillCode || ''
|
|
|
+ form.value.orderId = data.orderId || ''
|
|
|
+ form.value.taskDetail = data.deatil || data.taskDetail || ''
|
|
|
+ form.value.images = data.imgInfo?.imgUrlList.length ? data.imgInfo.imgUrlList : []
|
|
|
+
|
|
|
+ // 加载任务类型字典
|
|
|
+ await getTaskTypeOptions()
|
|
|
+
|
|
|
+ // 回显任务类型
|
|
|
+ if (data.taskType) {
|
|
|
+ form.value.taskType = data.taskType
|
|
|
+ const matchedType = taskTypeOptions.value.find(item => item.value === data.taskType)
|
|
|
+ if (matchedType) {
|
|
|
+ taskTypeText.value = matchedType.text
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 回显指派人(多选)
|
|
|
+ if (data.handleUsers && data.handleUsers.length > 0) {
|
|
|
+ form.value.assignTo = data.handleUsers.map(user => user.userId)
|
|
|
+ assignText.value = data.handleUsers.map(user => user.userName).join(',')
|
|
|
+ }
|
|
|
+ if (data.inspectionStatus !== undefined && data.inspectionStatus !== null) {
|
|
|
+ form.value.verifyStatus = data.inspectionStatus
|
|
|
+ const matchedVerify = verifyOptions.find(item => item.value === data.inspectionStatus)
|
|
|
+ if (matchedVerify) {
|
|
|
+ verifyText.value = matchedVerify.text
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 回显承运商
|
|
|
+ if (data.expressType) {
|
|
|
+ form.value.expressType = data.expressType
|
|
|
+ // 从字典中查找对应的文本
|
|
|
+ const matchedCarrier = carrierOptions.value.find(item => {
|
|
|
+ return item.value === data.expressType
|
|
|
+ })
|
|
|
+ if (matchedCarrier) {
|
|
|
+ carrierText.value = matchedCarrier.text
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.error(e)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
const onSubmit = async () => {
|
|
|
if (submitting.value) return
|
|
|
try {
|
|
|
@@ -146,9 +318,27 @@ const onSubmit = async () => {
|
|
|
return
|
|
|
}
|
|
|
submitting.value = true
|
|
|
- const payload = { ...form.value, type: 'mall' }
|
|
|
+ const payload = {
|
|
|
+ taskType: form.value.taskType || 9,
|
|
|
+ inspectionStatus: form.value.verifyStatus ?? 0,
|
|
|
+ deatil: form.value.taskDetail,
|
|
|
+ expressType: form.value.expressType || 0,
|
|
|
+ waybillCode: form.value.waybillCode,
|
|
|
+ orderId: form.value.orderId || '',
|
|
|
+ type: 1, // 工单类型:1-卖书
|
|
|
+ imgInfo: form.value.images.length > 0 ? form.value.images : [],
|
|
|
+ handleUsers: form.value.assignTo.length > 0 ? form.value.assignTo : []
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isEdit.value) {
|
|
|
+ payload.id = workOrderId.value
|
|
|
+ payload.updateType = 1
|
|
|
+ }
|
|
|
+
|
|
|
+ const apiUrl = isEdit.value ? '/app/workOrder/update' : '/app/workOrder/createWorkOrder'
|
|
|
+
|
|
|
try {
|
|
|
- const res = await uni.$u.http.post('/app/workorder/create', payload)
|
|
|
+ const res = await uni.$u.http.post(apiUrl, payload)
|
|
|
if (res?.code === 200) {
|
|
|
uni.$u.toast('提交成功')
|
|
|
uni.navigateBack()
|
|
|
@@ -164,7 +354,35 @@ const onSubmit = async () => {
|
|
|
|
|
|
onLoad((options) => {
|
|
|
form.value.waybillCode = options?.waybillCode || ''
|
|
|
- uni.setNavigationBarTitle({ title: '提交工单' })
|
|
|
+ form.value.orderId = options?.orderId || ''
|
|
|
+
|
|
|
+ if (options?.readonly == 1) {
|
|
|
+ isReadonly.value = true
|
|
|
+ // 尝试回显承运商
|
|
|
+ if (options?.expressType !== undefined && options?.expressType !== null) {
|
|
|
+ form.value.expressType = parseInt(options.expressType)
|
|
|
+ // 从字典中查找对应的文本
|
|
|
+ const matchedCarrier = carrierOptions.value.find(item => item.value === options.expressType)
|
|
|
+ if (matchedCarrier) {
|
|
|
+ carrierText.value = matchedCarrier.text
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (options?.mode === 'edit' && options?.workOrderId) {
|
|
|
+ isEdit.value = true
|
|
|
+ isReadonly.value = true
|
|
|
+ workOrderId.value = options.workOrderId
|
|
|
+ uni.setNavigationBarTitle({ title: '编辑工单' })
|
|
|
+ onLoadDetail(options.workOrderId)
|
|
|
+ } else {
|
|
|
+ uni.setNavigationBarTitle({ title: '提交工单' })
|
|
|
+ }
|
|
|
+
|
|
|
+ // 加载字典数据
|
|
|
+ getCarrierOptions()
|
|
|
+ getTaskTypeOptions()
|
|
|
+ getAssignOptions()
|
|
|
})
|
|
|
</script>
|
|
|
|
|
|
@@ -177,6 +395,105 @@ onLoad((options) => {
|
|
|
.divider {
|
|
|
height: 16rpx;
|
|
|
background: #f4f5f5;
|
|
|
- margin: 8rpx 0 16rpx;
|
|
|
+ margin: 20rpx 0;
|
|
|
+}
|
|
|
+
|
|
|
+// 指派人多选选择器样式
|
|
|
+.assign-picker-content {
|
|
|
+ padding: 0 24rpx;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 20rpx 20rpx 0 0;
|
|
|
+
|
|
|
+ .assign-header {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding: 24rpx 0;
|
|
|
+ border-bottom: 1px solid #eee;
|
|
|
+
|
|
|
+ .title {
|
|
|
+ font-size: 32rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #333;
|
|
|
+ }
|
|
|
+
|
|
|
+ .actions {
|
|
|
+ display: flex;
|
|
|
+ gap: 24rpx;
|
|
|
+
|
|
|
+ .cancel-btn {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #666;
|
|
|
+ padding: 8rpx 16rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .confirm-btn {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #2979ff;
|
|
|
+ font-weight: 500;
|
|
|
+ padding: 8rpx 16rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .assign-body {
|
|
|
+ max-height: 600rpx;
|
|
|
+ overflow-y: auto;
|
|
|
+ padding: 16rpx 0;
|
|
|
+
|
|
|
+ .assign-item {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding: 24rpx 16rpx;
|
|
|
+ border-bottom: 1px solid #f5f5f5;
|
|
|
+
|
|
|
+ &:active {
|
|
|
+ background: #f8f9fa;
|
|
|
+ }
|
|
|
+
|
|
|
+ .item-text {
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: #333;
|
|
|
+ }
|
|
|
+
|
|
|
+ .custom-checkbox {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ border: 2px solid #c8c9cc;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ position: relative;
|
|
|
+ transition: all 0.2s;
|
|
|
+
|
|
|
+ &.checked {
|
|
|
+ background: #2979ff;
|
|
|
+ border-color: #2979ff;
|
|
|
+
|
|
|
+ &::after {
|
|
|
+ content: '✓';
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ color: #fff;
|
|
|
+ font-size: 28rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.readonly-text {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #333;
|
|
|
+ line-height: 60rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.clickable-text {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #2979ff;
|
|
|
+ line-height: 60rpx;
|
|
|
}
|
|
|
</style>
|