From 57487151d6ef0b8a668a415b33f94b8b8da64954 Mon Sep 17 00:00:00 2001 From: xiepeng Date: Fri, 12 Apr 2024 18:04:26 +0800 Subject: [PATCH] =?UTF-8?q?BUG=20=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/request/customer_management.js | 6 + src/request/location_management.js | 6 + .../customer_management/edit.vue | 206 ++++++++++++++++++ .../customer_management/index.vue | 13 ++ .../location_managemen/add.vue | 10 +- .../location_managemen/edit.vue | 184 ++++++++++++++++ .../location_managemen/index.vue | 13 ++ .../waybill_registration/edit.vue | 9 - .../information/edit.vue | 1 + 9 files changed, 435 insertions(+), 13 deletions(-) create mode 100644 src/views/electronic_waybill_management/customer_management/edit.vue create mode 100644 src/views/electronic_waybill_management/location_managemen/edit.vue diff --git a/src/request/customer_management.js b/src/request/customer_management.js index 5a07e75..8530070 100644 --- a/src/request/customer_management.js +++ b/src/request/customer_management.js @@ -11,3 +11,9 @@ export const deleteSafetyCustomerView = (params) => export const getTrafficCustomerSelectList = (params) => post("/securitycustomer/getTrafficCustomerSelectList", params); // 客户管理列表(list) + +export const getTrafficCustomerSelectView = (params) => + post("/securitycustomer/getTrafficCustomerSelectView", params); // 获取客户管理的数据回显 + +export const editSafetyCustomerInfo = (params) => + upload("/securitycustomer/edit", params); // 添加 diff --git a/src/request/location_management.js b/src/request/location_management.js index a48b7f4..daa097c 100644 --- a/src/request/location_management.js +++ b/src/request/location_management.js @@ -11,3 +11,9 @@ export const deleteSafetyLocationView = (params) => export const getTrafficLocationSelectList = (params) => post("/securitylocation/getTrafficLocationSelectList", params); // 地点管理列表 + +export const getSecurityLocationView = (params) => + post("/securitylocation/goEdit", params); // 根据Id获取地点管理信息 + +export const editSafetyLocationInfo = (params) => + post("/securitylocation/edit", params); // 添加地段管理 diff --git a/src/views/electronic_waybill_management/customer_management/edit.vue b/src/views/electronic_waybill_management/customer_management/edit.vue new file mode 100644 index 0000000..ad70549 --- /dev/null +++ b/src/views/electronic_waybill_management/customer_management/edit.vue @@ -0,0 +1,206 @@ + + + + + diff --git a/src/views/electronic_waybill_management/customer_management/index.vue b/src/views/electronic_waybill_management/customer_management/index.vue index 958d8f4..945bb70 100644 --- a/src/views/electronic_waybill_management/customer_management/index.vue +++ b/src/views/electronic_waybill_management/customer_management/index.vue @@ -58,6 +58,19 @@