提交
This commit is contained in:
29
src/main.js
29
src/main.js
@@ -19,9 +19,38 @@ import './global';
|
||||
import './assets/icons'; // icon
|
||||
import './permission'; // permission control
|
||||
|
||||
import {
|
||||
download
|
||||
} from '@/utils/request'
|
||||
import {
|
||||
getDicts
|
||||
} from "@/api/system/dict/data";
|
||||
import {
|
||||
getConfigKey
|
||||
} from "@/api/system/config";
|
||||
import {
|
||||
parseTime,
|
||||
resetForm,
|
||||
addDateRange,
|
||||
selectDictLabel,
|
||||
selectDictLabels,
|
||||
handleTree
|
||||
} from "@/utils/ruoyi";
|
||||
|
||||
// 头部标签组件
|
||||
import VueMeta from 'vue-meta';
|
||||
|
||||
// 全局方法挂载
|
||||
Vue.prototype.getDicts = getDicts
|
||||
Vue.prototype.getConfigKey = getConfigKey
|
||||
Vue.prototype.parseTime = parseTime
|
||||
Vue.prototype.resetForm = resetForm
|
||||
Vue.prototype.addDateRange = addDateRange
|
||||
Vue.prototype.selectDictLabel = selectDictLabel
|
||||
Vue.prototype.selectDictLabels = selectDictLabels
|
||||
Vue.prototype.download = download
|
||||
Vue.prototype.handleTree = handleTree
|
||||
|
||||
import Mixin from './mixins/Mixin';
|
||||
Vue.mixin(Mixin);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user