From 88ecb47aa7ce189f27d2fbfd3a00bd7234ae3b49 Mon Sep 17 00:00:00 2001
From: guanqb <18720758508@163.com>
Date: Fri, 07 Apr 2023 20:48:13 +0800
Subject: [PATCH] 首页显示与隐藏按钮完善
---
src/store/modules/popupParams.js | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/store/modules/popupParams.js b/src/store/modules/popupParams.js
index fe981e5..ef388f3 100644
--- a/src/store/modules/popupParams.js
+++ b/src/store/modules/popupParams.js
@@ -30,7 +30,9 @@
videoRowClickPopupData: {},
houseDeepDataPopup: false,
- houseDeepDataPopupData: {}
+ houseDeepDataPopupData: {},
+
+ isShowHomeContent: true,
},
mutations: {
@@ -81,7 +83,11 @@
SET_VIDEOROWCLICKPOPUPDATA (state, videoRowClickPopupData) {
state.videoRowClickPopupData = videoRowClickPopupData
- }
+ },
+
+ SET_ISSHOWHOMECONTENT (state, isShowHomeContent) {
+ state.isShowHomeContent = isShowHomeContent
+ },
},
actions: {
--
Gitblit v1.9.3