main.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import Vue from 'vue'
  2. import Cookies from 'js-cookie'
  3. import Element from 'element-ui'
  4. import './assets/styles/element-variables.scss'
  5. import '@/assets/styles/index.scss' // global css
  6. import '@/assets/styles/ruoyi.scss' // ruoyi css
  7. import App from './App'
  8. import store from './store'
  9. import router from './router'
  10. import permission from './directive/permission'
  11. import './assets/icons' // icon
  12. import './permission' // permission control
  13. import { getDicts } from "@/api/system/dict/data";
  14. import { getConfigKey } from "@/api/system/config";
  15. import { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, download, handleTree } from "@/utils/ruoyi";
  16. import Pagination from "@/components/Pagination";
  17. // 自定义表格工具扩展
  18. import RightToolbar from "@/components/RightToolbar"
  19. // 头部标签插件
  20. import VueMeta from 'vue-meta'
  21. // 全局方法挂载
  22. Vue.prototype.getDicts = getDicts
  23. Vue.prototype.getConfigKey = getConfigKey
  24. Vue.prototype.parseTime = parseTime
  25. Vue.prototype.resetForm = resetForm
  26. Vue.prototype.addDateRange = addDateRange
  27. Vue.prototype.selectDictLabel = selectDictLabel
  28. Vue.prototype.selectDictLabels = selectDictLabels
  29. Vue.prototype.download = download
  30. Vue.prototype.handleTree = handleTree
  31. Vue.prototype.msgSuccess = function (msg) {
  32. this.$message({ showClose: true, message: msg, type: "success" });
  33. }
  34. Vue.prototype.msgError = function (msg) {
  35. this.$message({ showClose: true, message: msg, type: "error" });
  36. }
  37. Vue.prototype.msgInfo = function (msg) {
  38. this.$message.info(msg);
  39. }
  40. // 全局组件挂载
  41. Vue.component('Pagination', Pagination)
  42. Vue.component('RightToolbar', RightToolbar)
  43. Vue.use(permission)
  44. Vue.use(VueMeta)
  45. /**
  46. * If you don't want to use mock-server
  47. * you want to use MockJs for mock api
  48. * you can execute: mockXHR()
  49. *
  50. * Currently MockJs will be used in the production environment,
  51. * please remove it before going online! ! !
  52. */
  53. Vue.use(Element, {
  54. size: Cookies.get('size') || 'medium' // set element-ui default size
  55. })
  56. Vue.config.productionTip = false
  57. new Vue({
  58. el: '#app',
  59. router,
  60. store,
  61. render: h => h(App)
  62. })