From 71a7d1da8a740f1579a8d9f658182e6f9d2e116a Mon Sep 17 00:00:00 2001
From: guanqb <18720758508@163.com>
Date: Tue, 15 Nov 2022 14:44:53 +0800
Subject: [PATCH] 弹窗样式内容
---
src/store/modules/popupParams.js | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/store/modules/popupParams.js b/src/store/modules/popupParams.js
index a20c749..773cc5f 100644
--- a/src/store/modules/popupParams.js
+++ b/src/store/modules/popupParams.js
@@ -1,10 +1,14 @@
const popupParams = {
state: {
- detailsPopup: false
+ detailsPopup: false,
+ dataPopup: {}
},
mutations: {
SET_DETAILSPOPUP (state, detailsPopup) {
state.detailsPopup = detailsPopup
+ },
+ SET_DATAPOPUP (state, dataPopup) {
+ state.dataPopup = dataPopup
}
},
actions: {
--
Gitblit v1.9.3