diff --git a/inventory-web/src/views/stock/inbound/semi.vue b/inventory-web/src/views/stock/inbound/semi.vue index a6e0322..fbead64 100644 --- a/inventory-web/src/views/stock/inbound/semi.vue +++ b/inventory-web/src/views/stock/inbound/semi.vue @@ -614,7 +614,7 @@ const dialogStatus = ref<'create' | 'update'>('create') const tableData = ref([]) const total = ref(0) const formRef = ref() -const queryParams = reactive({ page: 1, pageSize: 100, keyword: '', category: '', material_type: '', statuses: ['在库', '借库'], company: '' }) +const queryParams = reactive({ page: 1, pageSize: 100, keyword: '', category: '', material_type: '', statuses: ['在库', '借库'], company: '', orderByColumn: '', isAsc: '', advancedFilters: [] }) const categoryOptions = ref([]) const typeOptions = ref([]) const companyOptions = ref([]) // [新增] @@ -1049,6 +1049,9 @@ const resetQuery = () => { queryParams.material_type = '' queryParams.company = '' queryParams.page = 1 + queryParams.orderByColumn = '' + queryParams.isAsc = '' + queryParams.advancedFilters = [] fetchData() }