Browse Source

配送适配编辑回复

master
马远东 1 year ago
parent
commit
ad7b2fe105
  1. 24
      src/router/views/index.js
  2. 70
      src/views/aftersales/aftersalesWorkOrdermodify.vue
  3. 7
      src/views/distribution/deliverylist/distributionDeliveryListmar.vue
  4. 4
      vite.config.js

24
src/router/views/index.js

@ -1193,18 +1193,18 @@ export default [
],
},
// {
// path: '/aftersales/VueTemp',
// component: Layout,
// redirect: '/aftersales/VueTemp',
// children: [
// {
// path: '/aftersales/VueTemp',
// name: '工单',
// component: () => import('@/views/aftersales/aftersalesWorkOrder.vue'),
// },
// ],
// },
{
path: '/aftersales/aftersalesWorkOrder',
component: Layout,
redirect: '/aftersales/aftersalesWorkOrder',
children: [
{
path: '/aftersales/aftersalesWorkOrder',
name: '工单',
component: () => import('@/views/aftersales/aftersalesWorkOrder.vue'),
},
],
},
{
path: '/aftersales/aftersalesWorkOrderAdd',
component: Layout,

70
src/views/aftersales/aftersalesWorkOrdermodify.vue

@ -635,6 +635,7 @@ const deletePackageInfo = ref([]); //被删除的包间信息
const unDecreaseImageEntityList = ref([]); //
const NewImageAddress = ref([]); //
const InitialresponsibleParty = ref(); //
const ProcessingParty =ref();//
const CompensationParty = ref([
{ name: '', state: 0, num: null, reason: '', cld: 1, explains: '' }, //
{ name: '', state: 1, num: null, reason: '', cld: 1, explains: '' }, //
@ -817,6 +818,7 @@ const onLoad = () => {
Indexform.value.processor.push(item.businessId);
}
});
ProcessingParty.value = JSON.parse(JSON.stringify(Indexform.value.processor))//
console.log(Indexform.value.processor, ' Indexform.value.processor');
getDictionaryBiz('pc_work_order').then(res => {
//
@ -1156,8 +1158,8 @@ const ConfirmForm = () => {
completionRecordEntities: [], //
aftersalesProcessingResultsDTO: {}, //
personResponsibleDTO: [], //
unPersonResponsibleDTO: [], //
personResponsibleDTO: [], //()
unPersonResponsibleDTO: [], //
surveyRecordDTO: {}, //
};
@ -1252,6 +1254,70 @@ if(unProcessorEntityList.value.length){
}
//
DataSubmit['processorEntityList'].push({
businessName:'',//
businessId:'',//ID
workOrderId:$route.query.id,//ID
conditions:2,// 1 2 3
typesOf:2,// 1 2
processingStatus:'',// 1 2
warehouseId:$route.query.warehouseId,//ID
assignTime:'',//
})
//
DataSubmit['unProcessorEntityList'].push({
businessName:'',//
businessId:'',//ID
workOrderId:$route.query.id,//ID
conditions:2,// 1 2 3
typesOf:2,// 1 2
processingStatus:'',// 1 2
warehouseId:$route.query.warehouseId,//ID
assignTime:'',//
})
//
Indexform.value.processor.forEach(item=>{
msgData['processorEntityList'].push({
businessName: warehouseData.value.find(obj => obj.value == item).label, //
businessId: warehouseData.value.find(obj => obj.value == item).value, //ID
workOrderId: $route.query.id, //ID
conditions:2,// 1 2 3
typesOf: 2, //1 2
warehouseId: $route.query.warehouseId, //ID
processingStatus:'',// 1 2
assignTime:'',//
});
})
//
Indexform.value.processor.forEach(item=>{
msgData['unProcessorEntityList'].push({
businessName: warehouseData.value.find(obj => obj.value == item).label, //
businessId: warehouseData.value.find(obj => obj.value == item).value, //ID
workOrderId: $route.query.id, //ID
conditions:3,// 1 2 3
typesOf: 2, //1 2
warehouseId: $route.query.warehouseId, //ID
processingStatus:'',// 1 2
assignTime:'',//
});
})
//
console.log(DataSubmit, '处理好的数据');
// $_modifyData(DataSubmit).then(res => {

7
src/views/distribution/deliverylist/distributionDeliveryListmar.vue

@ -124,6 +124,13 @@
<el-text size="small" @click="editmap(slotProps.scope)"> </el-text>
<!-- <el-text size="small" v-if="slotProps.scope.row.deliveryStatusName !== '已完成' ||-->
<!-- slotProps.scope.row.deliveryStatus !== '3'-->
<el-text size="small" v-if="slotProps.scope.row.deliveryStatusName !== '已完成' ||
slotProps.scope.row.deliveryStatus !== '3'
" @click="handleEdit(slotProps.scope)">
</el-text>
<!-- " @click="handleEdit(slotProps.scope)"> </el-text>-->
<!-- <el-button size="small" @click="costadd(slotProps.scope)"> </el-button>-->

4
vite.config.js

@ -23,7 +23,7 @@ export default ({ mode, command }) => {
// 新zyc
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.10.25:13000',
target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.25:2888',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.6.116:8777',
@ -31,7 +31,7 @@ export default ({ mode, command }) => {
// sst
// target: 'http://192.168.10.94:8888',
// target: 'http://192.168.10.29:13000',
target: 'http://h5uapi.huitongys.com',
// target: 'http://h5uapi.huitongys.com',
// target: 'http://test.api.huitongys.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),

Loading…
Cancel
Save