diff --git a/src/views/AppGroupMonitorTable.vue b/src/views/AppGroupMonitorTable.vue
index c2918e1..ee04f05 100644
--- a/src/views/AppGroupMonitorTable.vue
+++ b/src/views/AppGroupMonitorTable.vue
@@ -35,8 +35,12 @@ export default {
})
}
},
- created() {
- this.getTableData()
+ watch:{
+ search: {
+ immediate:true,deep:true,handler(){
+ this.getTableData()
+ }
+ }
}
}
diff --git a/src/views/AppKeyGoods.vue b/src/views/AppKeyGoods.vue
index 342c16a..8ec607b 100644
--- a/src/views/AppKeyGoods.vue
+++ b/src/views/AppKeyGoods.vue
@@ -29,8 +29,12 @@ export default {
})
}
},
- created() {
- this.getTableData()
+ watch:{
+ search: {
+ immediate:true,deep:true,handler(){
+ this.getTableData()
+ }
+ }
}
}
diff --git a/src/views/AppStoreMonitor.vue b/src/views/AppStoreMonitor.vue
new file mode 100644
index 0000000..a4e6ebf
--- /dev/null
+++ b/src/views/AppStoreMonitor.vue
@@ -0,0 +1,119 @@
+
+
+
+
+
+
+