feat(crm): 添加客户联系方式和公司名称字段
在订单和客户管理界面中新增联系方式和公司名称字段显示 调整客户列表和订单列表的布局及字段展示 优化收款表单首次加载时的处理逻辑
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user