赫艾前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
957 B

export default {
namespaced: true,
state: {
id: 0,
name: '',
site: 0,
languageDefault: '',
userDisplay: '',
//客户环境
// padSopUrl:'http://192.168.2.172/upload/',
// tvSopUrl:'http://192.168.2.172/sopFile/',
//自己环境
padSopUrl:process.env.NODE_ENV !== 'production' && process.env.OPEN_PROXY ? 'http://192.168.1.83:81/upload/' :'http://192.168.2.172/upload/',
tvSopUrl:process.env.NODE_ENV !== 'production' && process.env.OPEN_PROXY ? 'http://192.168.1.83:81/sopFile/' :'http://192.168.2.172/sopFile/',
},
mutations: {
updateId (state, id) {
state.id = id
},
updateName (state, name) {
state.name = name
},
updateLanguageDefault (state,languageDefault){
state.languageDefault = languageDefault
},
updateSite (state,site){
state.site = site
},
updateUserDisplay (state,userDisplay){
state.userDisplay = userDisplay
}
}
}