This commit is contained in:
wwb 2026-03-18 09:08:58 +08:00
parent 3987c414f3
commit 6c170c01c2
1 changed files with 6 additions and 4 deletions

View File

@ -444,6 +444,7 @@ const queryParams = reactive({
pageSize: 10,
isOpenQuery: 0,
billno: undefined,
billStatus: undefined,
customerId: undefined,
customerName: undefined,
brandName: undefined,
@ -490,15 +491,16 @@ const getList = async () => {
total.value = data.total
if(
(queryParams.billno && queryParams.billno.trim().length>0)
|| (queryParams.customerName && queryParams.customerName.trim().length>0)
|| (queryParams.brandName && queryParams.brandName.trim().length>0)
|| (queryParams.materialName && queryParams.materialName.trim().length>0)
|| (queryParams.billStatus && queryParams.billStatus.trim().length>0)
|| (queryParams.logisticsCode && queryParams.logisticsCode.trim().length>0)
|| (queryParams.phone && queryParams.phone.trim().length>0)
|| (queryParams.remarks && queryParams.remarks.trim().length>0)
|| (queryParams.bizdate && queryParams.bizdate.length>0)
|| (queryParams.confirmdate && queryParams.confirmdate.length>0)
|| (queryParams.plansenddate && queryParams.plansenddate.length>0)
|| (queryParams.confirmdate && queryParams.confirmdate.length>0)
|| (queryParams.customerName && queryParams.customerName.trim().length>0)
|| (queryParams.brandName && queryParams.brandName.trim().length>0)
|| (queryParams.materialName && queryParams.materialName.trim().length>0)
){
querySumTotalQtyOpen.value = true
querySumTotalQty.value = data.otherMap['querySumTotalQty']