From 4e44261ac4f6dcac2f15b3d30636d4b4823f6918 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 27 五月 2026 13:24:38 +0800
Subject: [PATCH] 君哥 1.恢复之前工艺路线模块,删除字段计件/计时字段,工资定额修改成计划工时,新增计划执行人员。工艺绑定,工艺路线恢复。仅需删除bom。 2.对于新增订单需流转协同办公进行审批,审批完成流转生产管控-生产订单 3.新增审批管理,规范管理所有节点审批人。 4.修改菜单栏样式bug

---
 src/api/basicData/customerFile.js |   44 ++++++++++++++++++++++++++++++++++++++------
 1 files changed, 38 insertions(+), 6 deletions(-)

diff --git a/src/api/basicData/customerFile.js b/src/api/basicData/customerFile.js
index 8685664..489ccf5 100644
--- a/src/api/basicData/customerFile.js
+++ b/src/api/basicData/customerFile.js
@@ -9,6 +9,7 @@
         params: query
     })
 }
+
 // 鏌ヨ瀹㈡埛妗f璇︾粏
 export function getCustomer(id) {
     return request({
@@ -16,6 +17,7 @@
         method: 'get'
     })
 }
+
 // 鏂板瀹㈡埛妗f
 export function addCustomer(data) {
     return request({
@@ -24,6 +26,7 @@
         data: data
     })
 }
+
 // 淇敼瀹㈡埛妗f
 export function updateCustomer(data) {
     return request({
@@ -32,6 +35,7 @@
         data: data
     })
 }
+
 // 瀵煎嚭瀹㈡埛妗f
 export function exportCustomer(query) {
     return request({
@@ -41,6 +45,7 @@
         responseType: 'blob'
     })
 }
+
 // 鍒犻櫎瀹㈡埛妗f
 export function delCustomer(ids) {
     return request({
@@ -62,16 +67,43 @@
 
 // 淇敼瀹㈡埛璺熻繘
 export function updateCustomerFollow(data) {
-  return request({
-    url: '/basic/customer-follow/edit',
-    method: 'put',
-    data: data,
-  })
+    return request({
+        url: '/basic/customer-follow/edit',
+        method: 'put',
+        data: data,
+    })
 }
+
 // 鍒犻櫎瀹㈡埛璺熻繘
 export function delCustomerFollow(id) {
     return request({
-        url: '/basic/customer-follow/'+id,
+        url: '/basic/customer-follow/' + id,
         method: 'delete',
     })
+}
+
+// 鍥炶鎻愰啋-鏂板/鏇存柊
+export function addReturnVisit(data) {
+    return request({
+        url: '/basic/customer-follow/return-visit',
+        method: 'post',
+        data: data
+    })
+}
+
+// 鑾峰彇鍥炶鎻愰啋璇︽儏
+export function getReturnVisit(id) {
+    return request({
+        url: '/basic/customer-follow/return-visit/' + id,
+        method: 'get'
+    })
+}
+
+// 淇敼瀹㈡埛妗f
+export function transferCustomer(data) {
+    return request({
+        url: '/basic/customer/transferCustomer',
+        method: 'patch',
+        data: data
+    })
 }
\ No newline at end of file

--
Gitblit v1.9.3