From 4253da96a80b36aa66a1322b0379ec624e01101c Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期二, 26 十二月 2023 17:38:36 +0800 Subject: [PATCH] 修复表单FYForm不传入初始数据时报错问题 --- src/views/baseinfo/fysp/scene/SceneInfo.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/views/baseinfo/fysp/scene/SceneInfo.vue b/src/views/baseinfo/fysp/scene/SceneInfo.vue index 535e602..b3e7682 100644 --- a/src/views/baseinfo/fysp/scene/SceneInfo.vue +++ b/src/views/baseinfo/fysp/scene/SceneInfo.vue @@ -107,7 +107,7 @@ }, itemEdit(scope) { scope.row.loading1 = true; - this.loadingStore.loadingStatus.push(() => (scope.row.loading1 = false)); + this.loadingStore.pushLoading(() => (scope.row.loading1 = false)); this.$router.push(`sceneEdit/${scope.row.guid}`); }, itemActive(scope) { -- Gitblit v1.9.3