|
@@ -596,7 +596,10 @@ export default {
|
|
|
const queryParams = {
|
|
|
year: params.year ?? this.query.year,
|
|
|
month: params.month ?? this.query.month,
|
|
|
- customerName: params.customerName ?? this.query.customerName
|
|
|
+ customerName: params.customerName ?? this.query.customerName,
|
|
|
+ // 补充:将“客户编码、审批状态”一并传给接口
|
|
|
+ customerCode: params.customerCode ?? this.query.customerCode,
|
|
|
+ approvalStatus: params.approvalStatus ?? this.query.approvalStatus
|
|
|
}
|
|
|
|
|
|
// 使用新分页接口(主表分页)
|