From 49530253cb602ca94226ef74bd5240c43de4e5e1 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 24 四月 2026 13:53:38 +0800
Subject: [PATCH] 天津宝东 1.新增客户只要客户名称,公司地址,公司电话,不需要法人 2.客户档案客户分类加个连锁店 3.客户档案客联系人联系电话也要,要加一个联系人岗位(手填) 4.客户档案客洽谈进度不要

---
 src/api/salesManagement/deliveryLedger.js |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/src/api/salesManagement/deliveryLedger.js b/src/api/salesManagement/deliveryLedger.js
index 4be5829..f596724 100644
--- a/src/api/salesManagement/deliveryLedger.js
+++ b/src/api/salesManagement/deliveryLedger.js
@@ -18,6 +18,7 @@
     data: query,
   });
 }
+
 // 淇敼鍙戣揣鍙拌处
 export function deductStock(query) {
   return request({
@@ -45,3 +46,50 @@
   });
 }
 
+// 鍙戣揣鏄庣粏鎺ュ彛
+
+// 鍒嗛〉鏌ヨ鍙戣揣鏄庣粏
+export function shippingInfoDetailListPage(query) {
+  return request({
+    url: "/shippingInfoDetail/listPage",
+    method: "get",
+    params: query,
+  });
+}
+
+// 鏂板鍙戣揣鏄庣粏
+export function addShippingInfoDetail(data) {
+  return request({
+    url: "/shippingInfoDetail/add",
+    method: "post",
+    data,
+  });
+}
+
+// 淇敼鍙戣揣鏄庣粏
+export function updateShippingInfoDetail(data) {
+  return request({
+    url: "/shippingInfoDetail/update",
+    method: "post",
+    data,
+  });
+}
+
+// 鍒犻櫎鍙戣揣鏄庣粏
+export function delShippingInfoDetail(ids) {
+  return request({
+    url: "/shippingInfoDetail/delete",
+    method: "delete",
+    data: ids,
+  });
+}
+
+// 鏍规嵁ID鑾峰彇鍙戣揣淇℃伅
+export function getShippingInfoById(id) {
+  return request({
+    url: "/shippingInfo/getById",
+    method: "get",
+    params: { id },
+  });
+}
+

--
Gitblit v1.9.3