| | |
| | | * @Date: 2022-04-25 08:04:47 |
| | | * @LastEditors: your Name |
| | | * @LastEditTime: 2022-04-25 16:33:00 |
| | | * @Description: |
| | | * @Description: |
| | | */ |
| | | import Vue from 'vue' |
| | | import yearPicker from 'vue-year-picker' |
| | |
| | | import router from './router' |
| | | import directive from './directive' //directive |
| | | import plugins from './plugins' // plugins |
| | | |
| | | |
| | | import './assets/icons' // icon |
| | | import './permission' // permission control |
| | |
| | | // import li_area_select from '@components/Address' |
| | | import moment from "moment" |
| | | import '@/utils/drag.js'; |
| | | import DingTalkPC from 'dingtalk-jsapi'; |
| | | |
| | | Vue.prototype.$dingtalk = DingTalkPC; |
| | | DingTalkPC.config({ |
| | | agentId: 'your_agentId', |
| | | corpId: 'your_corpId', |
| | | timeStamp: new Date().getTime(), |
| | | nonceStr: 'your_nonceStr', |
| | | signature: 'your_signature', |
| | | jsApiList: ['runtime.permission.requestAuthCode'] |
| | | }); |
| | | |
| | | Vue.prototype.$moment = moment; |
| | | |
| | |
| | | import echarts from 'echarts' |
| | | Vue.prototype.$echarts = echarts |
| | | |
| | | |
| | | // 全局组件挂载 |
| | | // Vue.component('li_area_select',li_area_select) |
| | | Vue.component('DictTag', DictTag) |