diff --git a/src/vuex/modules/com.js b/src/vuex/modules/com.js index a1b9667..8307526 100644 --- a/src/vuex/modules/com.js +++ b/src/vuex/modules/com.js @@ -1,13 +1,13 @@ import * as types from '../types' import { getStore, setStore } from '@js/mUtils.js' -const baseUrl = process.env.NODE_ENV === 'development' ? 'http://localhost:8010' : 'http://localhost:8010' +const baseUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.200.220:8010' : 'http://192.168.200.220:8010' /** * App通用配置 */ const state = { baseUrl: getStore('baseUrl') || baseUrl, - setTime: getStore('setTime') || 5000 + setTime: getStore('setTime') || 10000 } const actions = {