| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | 
							- import Vue from 'vue'
 
- import App from '@/App'
 
- // import SuperFlow from 'vue-super-flow'
 
- // import 'vue-super-flow/lib/index.css'
 
- import router from '@/router'                 // api: https://github.com/vuejs/vue-router
 
- import store from '@/store'                   // api: https://github.com/vuejs/vuex
 
- import VueCookie from 'vue-cookie'            // api: https://github.com/alfhen/vue-cookie
 
- import '@/element-ui'                         // api: https://github.com/ElemeFE/element
 
- import '@/icons'                              // api: http://www.iconfont.cn/
 
- import '@/element-ui-theme'
 
- import '@/assets/scss/index.scss'
 
- import httpRequest from '@/utils/httpRequest' // api: https://github.com/axios/axios
 
- import { isAuth } from '@/utils'
 
- import cloneDeep from 'lodash/cloneDeep'
 
- import SuperFlow from './views/modules/common/vue-super-flow/index'
 
- import html2pdf from '@/api/pdf'
 
- import Print from 'vue-print-nb'
 
- import * as echarts from 'echarts'
 
- import ElementUI from 'element-ui'
 
- import Contextmenu from 'vue-contextmenujs'
 
- // import 'element-ui/lib/theme-chalk/index.css'
 
- import preventReClick from '@/utils/preventReClick'
 
- Vue.use(VueCookie)
 
- Vue.use(SuperFlow)
 
- Vue.use(html2pdf)
 
- Vue.use(Print)
 
- Vue.use(ElementUI)
 
- Vue.use(Contextmenu)
 
- Vue.use(preventReClick) // 防止重复提交
 
- Vue.config.productionTip = false
 
- // 非生产环境, 适配mockjs模拟数据                 // api: https://github.com/nuysoft/Mock
 
- if (process.env.NODE_ENV !== 'production') {
 
-   require('@/mock')
 
- }
 
- // 挂载全局
 
- Vue.prototype.$echarts = echarts
 
- Vue.prototype.$http = httpRequest // ajax请求方法
 
- Vue.prototype.isAuth = isAuth     // 权限方法
 
- // 保存整站vuex本地储存初始状态
 
- window.SITE_CONFIG['storeState'] = cloneDeep(store.state)
 
- // 禁止复制
 
- // document.onselectstart = function () { return false }
 
- /* eslint-disable no-new */
 
- new Vue({
 
-   el: '#app',
 
-   router,
 
-   store,
 
-   template: '<App/>',
 
-   components: { App }
 
- })
 
- // 版本封存(2023-7-3)
 
 
  |