feat(crm): 添加客户联系方式和公司名称字段

在订单和客户管理界面中新增联系方式和公司名称字段显示
调整客户列表和订单列表的布局及字段展示
优化收款表单首次加载时的处理逻辑
This commit is contained in:
砂糖
2026-02-02 10:55:15 +08:00
parent 84f141896c
commit 0cb51f6117
5 changed files with 26 additions and 9 deletions

View File

@@ -247,7 +247,8 @@ export default {
// 收款表单参数
receiveForm: {},
// 是否显示收款弹出层
receiveOpen: false
receiveOpen: false,
isFirst: true,
};
},
methods: {
@@ -258,6 +259,10 @@ export default {
this.receivableList = response.rows;
this.total = response.total;
this.loading = false;
if (this.isFirst) {
this.isFirst = false;
return;
}
updateOrder({
orderId: this.orderId,
unpaidAmount: this.unreceivedAmount,