main.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. import Vue from 'vue'
  2. import Element from 'element-ui'
  3. import App from '@/App'
  4. import i18n from '@/i18n'
  5. import router from '@/router'
  6. import store from '@/store'
  7. import '@/icons'
  8. import '@/element-ui/theme/index.css'
  9. import '@/assets/scss/aui.scss'
  10. import http from '@/utils/request'
  11. import postReq from '@/api'
  12. import { hasPermission, hasPermission2 } from '@/utils'
  13. import cloneDeep from 'lodash/cloneDeep'
  14. import BaiduMap from 'vue-baidu-map'
  15. Vue.config.productionTip = false
  16. Vue.use(Element, {
  17. size: 'default',
  18. i18n: (key, value) => i18n.t(key, value)
  19. })
  20. Vue.use(BaiduMap, {
  21. // ak 是在百度地图开发者平台申请的密钥 详见 http://lbsyun.baidu.com/apiconsole/key */
  22. ak: 'nL5KEWLUYhIxbFlhPGEAKN5aAzO1lMiY'
  23. })
  24. // 非生产环境, 适配mockjs模拟数据 // api: https://github.com/nuysoft/Mock
  25. if (process.env.NODE_ENV !== 'production') {
  26. require('@/mock')
  27. }
  28. // 点击非自身或者子类,则触发事件
  29. Vue.directive('click-outside', {
  30. bind: function (el, binding, vnode) {
  31. el.clickOutsideEvent = function (event) {
  32. // here I check that click was outside the el and his childrens
  33. if (!(el === event.target || el.contains(event.target))) {
  34. // and if it did, call method provided in attribute value
  35. vnode.context[binding.expression](event)
  36. }
  37. }
  38. document.body.addEventListener('click', el.clickOutsideEvent)
  39. },
  40. unbind: function (el) {
  41. document.body.removeEventListener('click', el.clickOutsideEvent)
  42. }
  43. })
  44. // 挂载全局
  45. Vue.prototype.$http = http
  46. Vue.prototype.$postReq = postReq
  47. Vue.prototype.$hasPermission = hasPermission
  48. Vue.prototype.$hasPermission2 = hasPermission2
  49. // 保存整站vuex本地储存初始状态
  50. window.SITE_CONFIG['storeState'] = cloneDeep(store.state)
  51. new Vue({
  52. i18n,
  53. router,
  54. store,
  55. render: h => h(App)
  56. }).$mount('#app')