main.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 '@/assets/styles/extend.scss' // extend css
  8. import App from './App'
  9. import store from './store'
  10. import router from './router'
  11. import directive from './directive' // directive
  12. import plugins from './plugins' // plugins
  13. import { download } from '@/utils/request'
  14. /**更换更为强大的富文本工具tinymce**/
  15. import tinymce from 'tinymce'
  16. import VueTinymce from '@packy-tang/vue-tinymce'
  17. Vue.prototype.$tinymce = tinymce // 将全局tinymce对象指向给Vue作用域下
  18. Vue.use(VueTinymce) // 安装vue的tinymce组件
  19. //精简,灵活的web pc弹窗组件
  20. import layer from 'vue-layer'
  21. import 'vue-layer/lib/vue-layer.css';
  22. Vue.prototype.$layer = layer(Vue);
  23. import './assets/icons' // icon
  24. import './permission' // permission control
  25. import { getDicts } from "@/api/system/dict/data";
  26. import { getConfigKey } from "@/api/system/config";
  27. import { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, handleTree,iframe } from "@/utils/ruoyi";
  28. // 分页组件
  29. import Pagination from "@/components/Pagination";
  30. // 自定义表格工具组件
  31. import RightToolbar from "@/components/RightToolbar"
  32. // 富文本组件
  33. /* import Editor from "@/components/Editor" */
  34. // 文件上传组件
  35. import FileUpload from "@/components/FileUpload"
  36. // 图片上传组件
  37. import ImageUpload from "@/components/ImageUpload"
  38. // 图片预览组件
  39. import ImagePreview from "@/components/ImagePreview"
  40. // 字典标签组件
  41. import DictTag from '@/components/DictTag'
  42. // 头部标签组件
  43. import VueMeta from 'vue-meta'
  44. // 字典数据组件
  45. import DictData from '@/components/DictData'
  46. import editor from '@/components/editor';//富文本
  47. import cropper from '@/components/cropper';//图片裁剪上传
  48. // 全局方法挂载
  49. Vue.prototype.getDicts = getDicts
  50. Vue.prototype.getConfigKey = getConfigKey
  51. Vue.prototype.parseTime = parseTime
  52. Vue.prototype.resetForm = resetForm
  53. Vue.prototype.addDateRange = addDateRange
  54. Vue.prototype.selectDictLabel = selectDictLabel
  55. Vue.prototype.selectDictLabels = selectDictLabels
  56. Vue.prototype.download = download
  57. Vue.prototype.handleTree = handleTree
  58. Vue.prototype.iframe = iframe
  59. // 全局组件挂载
  60. Vue.component('DictTag', DictTag)
  61. Vue.component('Pagination', Pagination)
  62. Vue.component('RightToolbar', RightToolbar)
  63. Vue.component('editor', editor)
  64. Vue.component('FileUpload', FileUpload)
  65. Vue.component('ImageUpload', ImageUpload)
  66. Vue.component('ImagePreview', ImagePreview)
  67. Vue.component('cropper', cropper)
  68. Vue.prototype.baseUrl = process.env.VUE_APP_BASE_API;
  69. Vue.use(directive)
  70. Vue.use(plugins)
  71. Vue.use(VueMeta)
  72. DictData.install()
  73. /**
  74. * If you don't want to use mock-server
  75. * you want to use MockJs for mock api
  76. * you can execute: mockXHR()
  77. *
  78. * Currently MockJs will be used in the production environment,
  79. * please remove it before going online! ! !
  80. */
  81. Vue.use(Element, {
  82. size: Cookies.get('size') || 'medium' // set element-ui default size
  83. })
  84. Vue.config.productionTip = false
  85. new Vue({
  86. el: '#app',
  87. router,
  88. store,
  89. render: h => h(App)
  90. })