diff --git a/src/api/distribution/distributionReservation.js b/src/api/distribution/distributionReservation.js index d7e4f80e..9cc703d4 100644 --- a/src/api/distribution/distributionReservation.js +++ b/src/api/distribution/distributionReservation.js @@ -250,6 +250,15 @@ export const cancelReservation = data => { }); }; +// 取消预约-新 +export const $_batchCancelReservation = params => { + return request({ + url: '/api/logpm-distribution/mall/order/batchCancelMallReservation', + method: 'delete', + params, + }); +}; + export const getReservationDetail = id => { return request({ url: '/api/logpm-distribution/reservation/getReservationDetail', diff --git a/src/api/storagecost/index.js b/src/api/storagecost/index.js index 6ac80718..052cd5ec 100644 --- a/src/api/storagecost/index.js +++ b/src/api/storagecost/index.js @@ -251,4 +251,13 @@ export const $_expenseDispatchPricesave = data => { method: 'post', data, }); -}; \ No newline at end of file +}; + +// 配送-模板-车型计费配置-详情 +export const $_expenseDispatchPricedetail = params => { + return request({ + url: '/api/logpm-statisticsdata/expenseDispatchPrice/detail', + method: 'get', + params, + }); +}; diff --git a/src/option/storagecost/Categorypricingunit.js b/src/option/storagecost/Categorypricingunit.js index f4ee8533..45f8b34c 100644 --- a/src/option/storagecost/Categorypricingunit.js +++ b/src/option/storagecost/Categorypricingunit.js @@ -15,7 +15,7 @@ export const columnList = [ fixed: true, }, { - prop: 'categoryId', + prop: 'categoryName', label: '成本结算品类', type: 2, values: '', diff --git a/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue b/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue index d10c44b6..b65ec7e8 100644 --- a/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue +++ b/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue @@ -360,7 +360,7 @@ const handleEdit = row => { form.value.unit = row.unit; categoryList.value = [ { - goodsName: '', + goodsName: row.categoryName, goodsId: row.categoryId, }, ]; diff --git a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue index c7db93c8..dc77db4d 100644 --- a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue +++ b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue @@ -1,8 +1,8 @@