12345678910111213141516171819202122232425262728 |
- export default {
-
- namespaced: true,
- state: {
- // host: 'http://127.0.0.1',
- //fileHost: 'http://127.0.0.1/uploads',
-
- host: 'http://education.gxsrkj.com',
- fileHost: 'http://education.gxsrkj.com/uploads'
- // host: 'http://111.229.169.170:8003',
- // fileHost: 'http://111.229.169.170:8003/uploads'
- },
-
- getters: {
-
- host: state => {
- return state.host
- },
-
- fileHost: state => {
- return state.fileHost
- },
- },
-
- mutations: {
- }
- }
|