综合办公系统
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.

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * @Author: ysh
  3. * @Date: 2025-01-16 11:17:07
  4. * @LastEditors: Please set LastEditors
  5. * @LastEditTime: 2025-03-18 17:11:37
  6. */
  7. import Vue from 'vue'
  8. import App from './App'
  9. import store from './store' // store
  10. import plugins from './plugins' // plugins
  11. import './permission' // permission
  12. import uView from './uni_modules/uview-ui'
  13. Vue.use(plugins)
  14. Vue.use(uView)
  15. Vue.config.productionTip = false
  16. Vue.prototype.$store = store
  17. // 创建全局的 publicData 对象
  18. Vue.prototype.publicData = {
  19. partySecretary: 4, // 党委书记
  20. leagueSecretary: 15, // 团委书记
  21. gm: 7, //总经理
  22. chairman: 2,//董事长
  23. zg: 9,
  24. }
  25. App.mpType = 'app'
  26. const app = new Vue({
  27. ...App
  28. })
  29. app.$mount()