赫艾前端
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

4 years ago
3 years ago
2 years ago
2 years ago
4 years ago
  1. export default {
  2. namespaced: true,
  3. state: {
  4. id: 0,
  5. name: '',
  6. site: 0,
  7. languageDefault: '',
  8. userDisplay: '',
  9. //客户环境
  10. // padSopUrl:'http://192.168.2.172/upload/',
  11. // tvSopUrl:'http://192.168.2.172/sopFile/',
  12. //自己环境
  13. padSopUrl:process.env.NODE_ENV !== 'production' && process.env.OPEN_PROXY ? 'http://192.168.1.83:81/upload/' :'http://192.168.2.172/upload/',
  14. tvSopUrl:process.env.NODE_ENV !== 'production' && process.env.OPEN_PROXY ? 'http://192.168.1.83:81/sopFile/' :'http://192.168.2.172/sopFile/',
  15. },
  16. mutations: {
  17. updateId (state, id) {
  18. state.id = id
  19. },
  20. updateName (state, name) {
  21. state.name = name
  22. },
  23. updateLanguageDefault (state,languageDefault){
  24. state.languageDefault = languageDefault
  25. },
  26. updateSite (state,site){
  27. state.site = site
  28. },
  29. updateUserDisplay (state,userDisplay){
  30. state.userDisplay = userDisplay
  31. }
  32. }
  33. }