diff --git a/src/views/basic/product/drug/drugAdd.vue b/src/views/basic/product/drug/drugAdd.vue index 5b27495c..54f210d8 100644 --- a/src/views/basic/product/drug/drugAdd.vue +++ b/src/views/basic/product/drug/drugAdd.vue @@ -279,7 +279,7 @@ - + 选入 + + + + + + + + diff --git a/src/views/collect/PanelOrderEndSearch.vue b/src/views/collect/PanelOrderEndSearch.vue index 4e56c356..8c7477ac 100644 --- a/src/views/collect/PanelOrderEndSearch.vue +++ b/src/views/collect/PanelOrderEndSearch.vue @@ -273,6 +273,7 @@ export default { showSearch: true, filterQuery: { + tagStatus: 3, billNo: null, page: 1, limit: 10, diff --git a/src/views/collect/fieldOperation.vue b/src/views/collect/fieldOperation.vue index 389dcf64..eb07b5c9 100644 --- a/src/views/collect/fieldOperation.vue +++ b/src/views/collect/fieldOperation.vue @@ -5,6 +5,19 @@ + + + + + + + + 搜索 + + + + + @@ -76,6 +89,13 @@ export default { name: 'fieldOperation', data() { return { + query:{ + key: '', + status: 1, + invCode: this.$store.getters.locInvCode, + page: 1, + limit: 200 + }, // 假设这是你的卡片数据 stationList: [] }; @@ -91,13 +111,7 @@ export default { window.open(url, '_blank'); }, getStationList() { - let param = { - status: 1, - invCode: this.$store.getters.locInvCode, - page: 1, - limit: 200 - } - listPage(param).then(res => { + listPage(this.query).then(res => { this.stationList = res.data?.list || [] }) },