You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import { parseTime, resetForm, handleTree, addDateRange } from '@/utils/ruoyi';
|
|
|
|
import { deepClone } from '@/utils/index';
|
|
|
|
import { download } from '@/utils/request';
|
|
|
|
import { getConfigKey } from '@/api/system/config';
|
|
|
|
|
|
|
|
// 全局方法挂载
|
|
|
|
Vue.prototype.parseTime = parseTime;
|
|
|
|
Vue.prototype.resetForm = resetForm;
|
|
|
|
Vue.prototype.download = download;
|
|
|
|
Vue.prototype.handleTree = handleTree;
|
|
|
|
Vue.prototype.deepClone = deepClone;
|
|
|
|
Vue.prototype.addDateRange = addDateRange;
|
|
|
|
Vue.prototype.getConfigKey = getConfigKey;
|