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 || []
})
},