feat(crm): 添加客户联系方式和公司名称字段
在订单和客户管理界面中新增联系方式和公司名称字段显示 调整客户列表和订单列表的布局及字段展示 优化收款表单首次加载时的处理逻辑
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<div class="app-container">
|
||||
<el-row :gutter="20">
|
||||
<!-- 客户列表区域 -->
|
||||
<el-col :span="5" style="border-right: 1px solid #e4e7ed;">
|
||||
<el-col :span="6" style="border-right: 1px solid #e4e7ed;">
|
||||
<div style="font-weight: 900;">客户列表</div>
|
||||
<!-- 搜索区域 -->
|
||||
<div style="display: flex; align-items: center; gap: 5px; margin-top: 10px;">
|
||||
@@ -55,7 +55,9 @@
|
||||
listKey="customerId"
|
||||
:loading="customerLoading"
|
||||
field1="customerCode"
|
||||
field4="companyName"
|
||||
field2="companyName"
|
||||
field4="contactPerson"
|
||||
field5="contactWay"
|
||||
@item-click="handleItemClick"
|
||||
>
|
||||
<template slot="actions" slot-scope="{ item }">
|
||||
@@ -66,7 +68,7 @@
|
||||
</el-col>
|
||||
|
||||
<!-- 右侧内容区域 -->
|
||||
<el-col :span="19">
|
||||
<el-col :span="18">
|
||||
<el-tabs v-model="activeTab" type="border-card" v-if="currentCustomer && currentCustomer.customerId">
|
||||
<!-- 客户详情标签页 -->
|
||||
<el-tab-pane label="客户详情" name="detail">
|
||||
|
||||
Reference in New Issue
Block a user