This commit is contained in:
parent
3987c414f3
commit
6c170c01c2
|
|
@ -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']
|
||||
|
|
|
|||
Loading…
Reference in New Issue