12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import Vue from 'vue'
- import Vuex from 'vuex'
- import user from './model/user'
- Vue.use(Vuex)
- const store = new Vuex.Store({
- state: {
- baseURL: "http://m.manyuanchunjia.com", //请求地址配置
- // baseURL:"http://myc.frp.liuniu946.com",//请求地址配置
- loginInterceptor: true, //是否打开强制登录
- urlFile: '/index', //项目部署所在文件夹
- // #ifdef H5 || MP-WEIXIN
- weichatInfo: {}, //保存微信注册信息
- weichatObj: '', //微信对象
- // #endif
- // #ifdef APP-PLUS
- isShowIllegality: false, //不显示ios审核不允许的功能
- // #endif
- // #ifndef APP-PLUS
- isShowIllegality: true, //允许显示隐藏信息
- // #endif
- latitude: '',
- longitude: '',
- storeInfo: {},
- canChange: 1,
- },
- mutations: {
- //保存微信信息
- setWeiChatInfo(state, provider) {
- state.weichatInfo = provider;
- },
- //保存微信对象
- setWeiChatObj(state, provider) {
- state.weichatObj = provider;
- },
- // 修改显示隐藏ios审核不允许显示的功能
- changeState(state, provider) {
- state.isShowIllegality = provider;
- },
- setLat(state, provider) {
- state.latitude = provider
- },
- setLon(state, provider) {
- state.longitude = provider
- },
- setStoreInfo(state, provider) {
- state.storeInfo = provider
- console.log(state.storeInfo, 'success');
- },
- setCanChange(state) {
- state.canChange = 0
- console.log('不能点击')
- }
- },
- modules: {
- user
- },
- actions: {}
- })
- export default store
|