diff --git a/src/assets/js/constant.js b/src/assets/js/constant.js
index 3d53f6e..f4fc1c5 100644
--- a/src/assets/js/constant.js
+++ b/src/assets/js/constant.js
@@ -64,18 +64,12 @@ export const ENDMENU = [
{ title: "湖北", model: MODEL["4"] },
];
export const CUSTOMERTYPEMENU = [
- { title: "委托方", model: MODEL["1"] },
- { title: "确认方", model: MODEL["2"] },
+ { id: "委托方", name: "1" },
+ { id: "确认方", name: "2" },
];
export const LOCATIONTYPEMENU = [
- { title: "公司", model: MODEL["1"] },
- { title: "仓库", model: MODEL["2"] },
- { title: "中转站", model: MODEL["3"] },
-];
-export const LOCATIONNAMEMENU = [
- { title: "中科", model: MODEL["1"] },
- { title: "中软", model: MODEL["2"] },
- { title: "中天", model: MODEL["3"] },
+ { id: "起运地", name: "1" },
+ { id: "目的地", name: "2" },
];
export const BOROUGHMENU = [
{ title: "湖北", model: MODEL["1"] },
diff --git a/src/request/location_management.js b/src/request/location_management.js
index 9b97c78..8f8469b 100644
--- a/src/request/location_management.js
+++ b/src/request/location_management.js
@@ -1,7 +1,7 @@
import { post } from "@/request/axios.js";
export const getSecurityLocationList = (params) =>
- post("/securitylocation/listForSecurityLocationManagement", params); // 客户管理列表
+ post("/securitylocation/listForSecurityLocationManagement", params); // 地点管理列表
export const addSafetyLocationView = (params) =>
- post("/securitylocation/add", params); // 添加运单登记
+ post("/securitylocation/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 ab823ef..cc8f509 100644
--- a/src/views/electronic_waybill_management/customer_management/add.vue
+++ b/src/views/electronic_waybill_management/customer_management/add.vue
@@ -9,21 +9,6 @@
添加
-
-
-
-
-
-
-
diff --git a/src/views/electronic_waybill_management/customer_management/index.vue b/src/views/electronic_waybill_management/customer_management/index.vue
index 159881a..aa56542 100644
--- a/src/views/electronic_waybill_management/customer_management/index.vue
+++ b/src/views/electronic_waybill_management/customer_management/index.vue
@@ -10,12 +10,8 @@
-
+
+
@@ -55,16 +51,22 @@
{{ serialNumber(pagination, $index) }}
-
-
+
+
+ {{
+ row.CUSTOMERTYPE === "1"
+ ? "委托方"
+ : row.CUSTOMERTYPE === "2"
+ ? "确认方"
+ : ""
+ }}
+
+
+
-
+
@@ -95,7 +97,6 @@ import useListData from "@/assets/js/useListData.js";
import { onMounted, reactive, ref } from "vue";
import router from "@/router/index.js";
import { getSecurityCustomerList } from "@/request/customer_management.js";
-import { CUSTOMERTYPEMENU } from "@/assets/js/constant.js";
import { getSecurityPerson } from "@/request/waybill_registration.js";
const tableRef = ref(null);
diff --git a/src/views/electronic_waybill_management/location_managemen/add.vue b/src/views/electronic_waybill_management/location_managemen/add.vue
index 9da42b9..b6a49c1 100644
--- a/src/views/electronic_waybill_management/location_managemen/add.vue
+++ b/src/views/electronic_waybill_management/location_managemen/add.vue
@@ -8,21 +8,21 @@
>
添加
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+ placeholder="请输入地点名称"
+ />
-
-
+
-
-
+ :level="2"
+ />
@@ -111,11 +98,8 @@