diff --git a/src/request/customer_management.js b/src/request/customer_management.js index dc79979..4455f66 100644 --- a/src/request/customer_management.js +++ b/src/request/customer_management.js @@ -1,10 +1,13 @@ import { post, upload } from "@/request/axios.js"; export const getSecurityCustomerList = (params) => - post("/securitycustomer/listForSecurityCustomerManagement", params); // 客户管理列表 + post("/securitycustomer/listForSecurityCustomerManagement", params); // 客户管理列表(table) export const addSafetyCustomerView = (params) => upload("/securitycustomer/add", params); // 添加 export const deleteSafetyCustomerView = (params) => upload("/securitycustomer/delete", params); // 删除 + +export const getTrafficCustomerSelectList = (params) => + post("/securitycustomer/getTrafficCustomerSelectList", params); // 客户管理列表(list) diff --git a/src/request/location_management.js b/src/request/location_management.js index 699e05d..44c01ef 100644 --- a/src/request/location_management.js +++ b/src/request/location_management.js @@ -8,3 +8,6 @@ export const addSafetyLocationView = (params) => export const deleteSafetyLocationView = (params) => post("/securitylocation/delete", params); // 添加地段管理 + +export const getTrafficLocationSelectList = (params) => + post("/securitylocation/getTrafficLocationSelectList", params); // 地点管理列表 diff --git a/src/request/waybill_registration.js b/src/request/waybill_registration.js index 716821d..52e3928 100644 --- a/src/request/waybill_registration.js +++ b/src/request/waybill_registration.js @@ -3,9 +3,6 @@ import { post, upload } from "@/request/axios.js"; export const getSecurityWaybillreList = (params) => post("/waybillregistration/listForSecurityWaybillre", params); // 运单登记列表 -export const getSecurityPerson = (params) => - post("/waybillregistration/forSecurityPerson", params); - export const addSafetyWaybillreView = (params) => upload("/waybillregistration/add", params); // 添加运单登记 diff --git a/src/views/electronic_waybill_management/customer_management/add.vue b/src/views/electronic_waybill_management/customer_management/add.vue index e72f639..53b0a0f 100644 --- a/src/views/electronic_waybill_management/customer_management/add.vue +++ b/src/views/electronic_waybill_management/customer_management/add.vue @@ -104,8 +104,7 @@