diff --git a/src/views/lb-business/order-manage/index.vue b/src/views/lb-business/order-manage/index.vue index 95f207e..93dd55c 100644 --- a/src/views/lb-business/order-manage/index.vue +++ b/src/views/lb-business/order-manage/index.vue @@ -2,6 +2,25 @@
+ + + + + + + + + + + + + + + + + + + @@ -17,21 +36,6 @@ - - - - - - - - - - - - - - - 查询 清空 @@ -407,7 +411,7 @@ export default { sellerId: '', consignee: '', phone: '', - status: '', + status: undefined, isResell: undefined, dataType: '' }, @@ -473,7 +477,9 @@ export default { sellerId: parseOptionalLong(this.queryParams.sellerId), consignee: this.queryParams.consignee || undefined, phone: this.queryParams.phone || undefined, - status: parseOptionalInt(this.queryParams.status), + status: this.queryParams.status === 0 || this.queryParams.status === 1 || this.queryParams.status === 2 + ? this.queryParams.status + : undefined, isResell: this.queryParams.isResell === 0 || this.queryParams.isResell === 1 ? this.queryParams.isResell : undefined, @@ -497,7 +503,7 @@ export default { sellerId: '', consignee: '', phone: '', - status: '', + status: undefined, isResell: undefined, dataType: '' }