网格选择
@@ -83,8 +83,8 @@ export default {
methods: {
handleSelectGird(v) {
- this.form = v?.[0]
- this.getGridList(v?.[0].id, true)
+ this.form = v||{}
+ this.getGridList(v?.id, true)
},
toChoose() {
uni.navigateTo({
diff --git a/src/saas/AppGridManagement/Statistics.vue b/src/saas/AppGridManagement/Statistics.vue
index cfadee6a..7c1fbaa7 100644
--- a/src/saas/AppGridManagement/Statistics.vue
+++ b/src/saas/AppGridManagement/Statistics.vue
@@ -31,14 +31,14 @@
网格名称
- {{ girdMsgList.girdName || '' }}
+ {{ gridInfo.girdName || '' }}
标绘状态
- {{ girdMsgList.plottingStatus == 1 ? '已标绘' : '未标绘' }}
+ {{ gridInfo.plottingStatus == 1 ? '已标绘' : '未标绘' }}