1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import config from '@/app.config.js'
- let lifeData = uni.getStorageSync('lifeData') || {};
- let $app = lifeData.$app || {};
- export default {
-
- namespaced: true,
-
- state: {
-
- inited: $app.inited || false,
- config: {
- ...config
- },
- systemConfig: $app.systemConfig || {
- property_list_style: 'row',
- cache_time: 0,
- use_skeleton: true
- },
- propertyList: $app.propertyList || [],
- imgcode: $app.imgcode || null,
- },
-
- getters: {
- },
-
- mutations: {
- },
-
- actions: {
- }
- }
|