| | |
| | | * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE |
| | | */ |
| | | import { createApp } from 'vue' |
| | | |
| | | import Cookies from 'js-cookie' |
| | | |
| | | import ElementPlus from 'element-plus' |
| | |
| | | import store from './store' |
| | | import router from './router' |
| | | import directive from './directive' // directive |
| | | import './utils/rem.js' |
| | | |
| | | // 注册指令 |
| | | import plugins from './plugins' // plugins |
| | |
| | | |
| | | import { parseTime, resetForm, addDateRange, handleTree, selectDictLabel, selectDictLabels } from '@/utils/ruoyi' |
| | | |
| | | // 按需引入echarts |
| | | import * as echarts from 'echarts/core'; |
| | | import { GridComponent, ToolboxComponent, TooltipComponent, TitleComponent, VisualMapComponent, } from 'echarts/components'; |
| | | import { LineChart, BarChart } from 'echarts/charts'; |
| | | import { UniversalTransition } from 'echarts/features'; |
| | | import { CanvasRenderer } from 'echarts/renderers'; |
| | | |
| | | echarts.use([GridComponent, LineChart, BarChart, CanvasRenderer, UniversalTransition, ToolboxComponent, TooltipComponent, TitleComponent, VisualMapComponent,]); |
| | | |
| | | // 分页组件 |
| | | import Pagination from '@/components/Pagination' |
| | | // 自定义树选择组件 |