apaas-custom-mydemo/babel.config.js
Zhou 46b01b4504 feat: 完善批量修改填写人、审核页面优化、人员管理等功能
- 批量修改填写人:添加左侧分类列表、折叠功能、暂存和重新分配
- 审核页面:添加折叠和分页功能
- 查询分析页面:添加单位列显示
- 人员管理:创建独立页面,支持搜索、分页、批量操作
- 修复各种UI和功能问题
2026-06-23 09:55:55 +08:00

56 lines
1.0 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 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
]
}