88 lines
3.6 KiB
JavaScript
88 lines
3.6 KiB
JavaScript
import config from "./config"
|
|
import api from './api'
|
|
import tool from './utils/tool'
|
|
import http from "./utils/request"
|
|
import {
|
|
permission,
|
|
rolePermission
|
|
} from './utils/permission'
|
|
import scTable from './components/scTable'
|
|
import scTableColumn from './components/scTable/column.js'
|
|
import scFilterBar from './components/scFilterBar'
|
|
import scUpload from './components/scUpload'
|
|
import scUploadMultiple from './components/scUpload/multiple'
|
|
import scUploadFile from './components/scUpload/file'
|
|
import scFormTable from './components/scFormTable'
|
|
import scTableSelect from './components/scTableSelect'
|
|
import scPageHeader from './components/scPageHeader'
|
|
import scSelect from './components/scSelect'
|
|
import xDialog from './components/xDialog'
|
|
import scForm from './components/scForm'
|
|
import XItem from './components/scForm/item'
|
|
import xUser from './components/xUser'
|
|
import xUpdate from './components/xUpdate'
|
|
import scTitle from './components/scTitle'
|
|
import scWaterMark from './components/scWaterMark'
|
|
import scQrCode from './components/scQrCode'
|
|
import scStatusIndicator from './components/scMini/scStatusIndicator'
|
|
import scTrend from './components/scMini/scTrend'
|
|
import auth from './directives/auth'
|
|
import auths from './directives/auths'
|
|
import authsAll from './directives/authsAll'
|
|
import role from './directives/role'
|
|
import time from './directives/time'
|
|
import copy from './directives/copy'
|
|
import errorHandler from './utils/errorHandler'
|
|
import * as elIcons from '@element-plus/icons-vue'
|
|
import * as scIcons from './assets/icons'
|
|
export default {
|
|
install(app) {
|
|
//挂载全局对象
|
|
app.config.globalProperties.$config = config;
|
|
app.config.globalProperties.$tool = tool;
|
|
app.config.globalProperties.$http = http;
|
|
app.config.globalProperties.$api = api;
|
|
app.config.globalProperties.$auth = permission;
|
|
app.config.globalProperties.$role = rolePermission;
|
|
//注册全局组件
|
|
app.component('XItem', XItem);
|
|
app.component('xUser', xUser);
|
|
app.component('xUpdate', xUpdate);
|
|
app.component('scTable', scTable);
|
|
app.component('scTableColumn', scTableColumn);
|
|
app.component('scFilterBar', scFilterBar);
|
|
app.component('scUpload', scUpload);
|
|
app.component('scUploadMultiple', scUploadMultiple);
|
|
app.component('scUploadFile', scUploadFile);
|
|
app.component('scFormTable', scFormTable);
|
|
app.component('scTableSelect', scTableSelect);
|
|
app.component('scPageHeader', scPageHeader);
|
|
app.component('scSelect', scSelect);
|
|
app.component('xDialog', xDialog);
|
|
app.component('scForm', scForm);
|
|
app.component('scTitle', scTitle);
|
|
app.component('scWaterMark', scWaterMark);
|
|
app.component('scQrCode', scQrCode);
|
|
app.component('scStatusIndicator', scStatusIndicator);
|
|
app.component('scTrend', scTrend);
|
|
//注册全局指令
|
|
app.directive('auth', auth)
|
|
app.directive('auths', auths)
|
|
app.directive('auths-all', authsAll)
|
|
app.directive('role', role)
|
|
app.directive('time', time)
|
|
app.directive('copy', copy)
|
|
//统一注册el-icon图标
|
|
for (let icon in elIcons) {
|
|
app.component(`ElIcon${icon}`, elIcons[icon])
|
|
}
|
|
//统一注册sc-icon图标
|
|
for (let icon in scIcons) {
|
|
app.component(`ScIcon${icon}`, scIcons[icon])
|
|
}
|
|
//关闭async-validator全局控制台警告
|
|
window.ASYNC_VALIDATOR_NO_WARNING = 1
|
|
//全局代码错误捕捉
|
|
app.config.errorHandler = errorHandler
|
|
}
|
|
} |