From 124fbeefcae9d4d8ed51cdf450448f2f95b49853 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Thu, 28 Sep 2023 11:18:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=8A=B6=E6=80=81=E7=AE=A1?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/uniApi.js | 1 + store/modules/index.js | 4 +++- store/modules/storage.js | 29 +++++++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 store/modules/storage.js diff --git a/libs/uniApi.js b/libs/uniApi.js index 612c4c8..ae80c51 100644 --- a/libs/uniApi.js +++ b/libs/uniApi.js @@ -130,6 +130,7 @@ export function Modal(title = '提示', content = '这是一个模态弹窗!', o }) { return new Promise((reslove, reject) => { uni.showModal({ + ...obj, title: title, content: content, success: (res) => { diff --git a/store/modules/index.js b/store/modules/index.js index 1c3a43a..c9cccdb 100644 --- a/store/modules/index.js +++ b/store/modules/index.js @@ -8,6 +8,8 @@ // | Author: CRMEB Team // +---------------------------------------------------------------------- import app from "./app"; +import storage from "./storage.js"; export default { - app + app, + storage }; diff --git a/store/modules/storage.js b/store/modules/storage.js new file mode 100644 index 0000000..7338e70 --- /dev/null +++ b/store/modules/storage.js @@ -0,0 +1,29 @@ +import { + getUserInfo, + Appversion +} from "../../api/user.js"; +import { + LOGIN_STATUS, + UID, + USER_INFO +} from '../../config/cache'; +import Cache from '../../utils/cache'; + +const state = { + storage: {}, +}; + +const mutations = { + setStorage(state, data) { + state.storage = data; + }, +}; + +const actions = { +}; + +export default { + state, + mutations, + actions +}; \ No newline at end of file