From 73ae0c0f94fe7d1f615d505a3a720b0ae5a993e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Wed, 17 Dec 2025 10:41:16 +0800 Subject: [PATCH] =?UTF-8?q?feat(crm):=20=E6=96=B0=E5=A2=9E=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E7=AE=A1=E7=90=86=E7=9B=B8=E5=85=B3=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E5=92=8C=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增客户信息展示、编辑组件及订单管理功能 优化客户详情页布局和交互体验 重构订单管理模块,增加客户关联功能 --- klp-ui/src/api/hrm/站位.txt | 0 klp-ui/src/views/crm/components/CoilTrace.vue | 0 .../src/views/crm/components/CustomerEdit.vue | 200 ++++++++++ .../src/views/crm/components/CustomerInfo.vue | 41 ++ .../views/crm/components/CustomerOrder.vue | 366 ++++++++++++++++++ .../src/views/crm/components/OrderDetail.vue | 26 +- klp-ui/src/views/crm/components/OrderEdit.vue | 0 klp-ui/src/views/crm/components/OrderInfo.vue | 0 .../src/views/crm/components/OrderRecord.vue | 0 klp-ui/src/views/crm/customer/index.vue | 278 ++++++------- klp-ui/src/views/crm/order/index.vue | 211 +++++++++- klp-ui/src/views/crm/preOrder/index.vue | 22 +- klp-ui/src/views/hrm/站位.txt | 0 13 files changed, 953 insertions(+), 191 deletions(-) create mode 100644 klp-ui/src/api/hrm/站位.txt create mode 100644 klp-ui/src/views/crm/components/CoilTrace.vue create mode 100644 klp-ui/src/views/crm/components/CustomerEdit.vue create mode 100644 klp-ui/src/views/crm/components/CustomerInfo.vue create mode 100644 klp-ui/src/views/crm/components/CustomerOrder.vue create mode 100644 klp-ui/src/views/crm/components/OrderEdit.vue create mode 100644 klp-ui/src/views/crm/components/OrderInfo.vue create mode 100644 klp-ui/src/views/crm/components/OrderRecord.vue create mode 100644 klp-ui/src/views/hrm/站位.txt diff --git a/klp-ui/src/api/hrm/站位.txt b/klp-ui/src/api/hrm/站位.txt new file mode 100644 index 00000000..e69de29b diff --git a/klp-ui/src/views/crm/components/CoilTrace.vue b/klp-ui/src/views/crm/components/CoilTrace.vue new file mode 100644 index 00000000..e69de29b diff --git a/klp-ui/src/views/crm/components/CustomerEdit.vue b/klp-ui/src/views/crm/components/CustomerEdit.vue new file mode 100644 index 00000000..9b9a88d5 --- /dev/null +++ b/klp-ui/src/views/crm/components/CustomerEdit.vue @@ -0,0 +1,200 @@ + + + + + \ No newline at end of file diff --git a/klp-ui/src/views/crm/components/CustomerInfo.vue b/klp-ui/src/views/crm/components/CustomerInfo.vue new file mode 100644 index 00000000..5c92bac0 --- /dev/null +++ b/klp-ui/src/views/crm/components/CustomerInfo.vue @@ -0,0 +1,41 @@ + + + \ No newline at end of file diff --git a/klp-ui/src/views/crm/components/CustomerOrder.vue b/klp-ui/src/views/crm/components/CustomerOrder.vue new file mode 100644 index 00000000..c08c0c4c --- /dev/null +++ b/klp-ui/src/views/crm/components/CustomerOrder.vue @@ -0,0 +1,366 @@ + + + diff --git a/klp-ui/src/views/crm/components/OrderDetail.vue b/klp-ui/src/views/crm/components/OrderDetail.vue index 51f69652..c32eb7ca 100644 --- a/klp-ui/src/views/crm/components/OrderDetail.vue +++ b/klp-ui/src/views/crm/components/OrderDetail.vue @@ -1,13 +1,14 @@