- 批量修改填写人:添加左侧分类列表、折叠功能、暂存和重新分配 - 审核页面:添加折叠和分页功能 - 查询分析页面:添加单位列显示 - 人员管理:创建独立页面,支持搜索、分页、批量操作 - 修复各种UI和功能问题
56 lines
1.0 KiB
JavaScript
56 lines
1.0 KiB
JavaScript
/**
|
||
* Element UI 懒加载插件,由于我们需要使用懒加载scss动态编译主题,所以不使用
|
||
*/
|
||
// eslint-disable-next-line no-unused-vars
|
||
const elementUIComponentPlugin = [
|
||
'component',
|
||
{
|
||
libraryName: 'element-ui',
|
||
styleLibraryName: '../packages/theme-chalk/src',
|
||
ext: '.scss'
|
||
},
|
||
'element-ui'
|
||
]
|
||
|
||
const XLibComponentPlugin = [
|
||
'component',
|
||
{
|
||
libraryName: '@x-ui/x-dcloud-ui',
|
||
styleLibrary: {
|
||
base: false,
|
||
name: 'theme-chalk/theme'
|
||
},
|
||
ext: '.scss'
|
||
},
|
||
'@x-ui/x-dcloud-ui'
|
||
]
|
||
|
||
const XDcloudPageWebPlugin = [
|
||
'component',
|
||
{
|
||
libraryName: '@x-apaas/x-dcloud-page-web',
|
||
styleLibrary: {
|
||
base: false,
|
||
name: 'theme-chalk/theme'
|
||
},
|
||
ext: '.scss'
|
||
},
|
||
'@x-apaas/x-dcloud-page-web'
|
||
]
|
||
|
||
module.exports = {
|
||
presets: [
|
||
[
|
||
'@vue/cli-plugin-babel/preset',
|
||
{
|
||
useBuiltIns: 'entry'
|
||
}
|
||
]
|
||
],
|
||
plugins: [
|
||
elementUIComponentPlugin,
|
||
XLibComponentPlugin,
|
||
XDcloudPageWebPlugin
|
||
]
|
||
}
|