2131e99ec4
- 新增路由 /business/contract-manage/detail,详情页共享合同管理组件 - 列表、表单、详情三分支用 isFormPage 和 isDetailPage 控制 - openDetail 方法改为跳转详情路由,initDetailPage 获取详情数据 - 新增 resetDetailState 和 closeDetailPage 方法,复用关闭逻辑 - 详情页去除弹窗高度限制,样式改为页面自滚动 - 详情页底栏使用固定位置关闭按钮,保持页面布局一致 - watch 和 created 中添加对 isDetailPage 的初始化调用和监听
100 lines
2.8 KiB
JavaScript
100 lines
2.8 KiB
JavaScript
import { defineConfig, loadEnv } from 'vite';
|
|
import { resolve } from 'path';
|
|
import createVitePlugins from './vite/plugins';
|
|
// https://vitejs.dev/config/
|
|
export default ({ mode, command }) => {
|
|
const env = loadEnv(mode, process.cwd());
|
|
const { VITE_APP_ENV, VITE_APP_BASE } = env;
|
|
// 判断是打生产环境包
|
|
const isProd = VITE_APP_ENV === 'production';
|
|
|
|
const assetFileNames = assetInfo => {
|
|
const fileName = assetInfo.names?.[0] || assetInfo.name || '';
|
|
return fileName.endsWith('.mjs') ? 'assets/[name]-[hash].js' : 'assets/[name]-[hash][extname]';
|
|
};
|
|
|
|
// 根据是否生产环境,动态设置压缩配置
|
|
const buildConfig = {
|
|
target: 'esnext',
|
|
minify: isProd ? 'terser' : 'esbuild', // 根据环境选择压缩工具
|
|
rollupOptions: {
|
|
output: {
|
|
assetFileNames,
|
|
},
|
|
},
|
|
};
|
|
|
|
// 如果是生产环境,添加Terser的配置
|
|
if (isProd) {
|
|
buildConfig.terserOptions = {
|
|
compress: {
|
|
drop_console: true, // 删除 console
|
|
drop_debugger: true, // 删除 debugger
|
|
},
|
|
format: {
|
|
comments: false, // 删除所有注释
|
|
},
|
|
};
|
|
buildConfig.rollupOptions.output.manualChunks = {
|
|
'element-plus': ['element-plus'],
|
|
'@smallwei/avue': ['@smallwei/avue'],
|
|
};
|
|
}
|
|
return defineConfig({
|
|
base: VITE_APP_BASE,
|
|
define: {
|
|
__VUE_I18N_FULL_INSTALL__: true,
|
|
__VUE_I18N_LEGACY_API__: true,
|
|
__INTLIFY_PROD_DEVTOOLS__: false,
|
|
},
|
|
// server: {
|
|
// port: 2888,
|
|
// proxy: {
|
|
// '/api': {
|
|
// target: 'http://localhost',
|
|
// //target: 'https://saber3.bladex.cn/api',
|
|
// changeOrigin: true,
|
|
// rewrite: path => path.replace(/^\/api/, ''),
|
|
// },
|
|
// },
|
|
// },
|
|
server: {
|
|
port: 2889,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://172.16.203.228:8000',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'~': resolve(__dirname, './'),
|
|
'@': resolve(__dirname, './src'),
|
|
components: resolve(__dirname, './src/components'),
|
|
styles: resolve(__dirname, './src/styles'),
|
|
utils: resolve(__dirname, './src/utils'),
|
|
},
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
api: 'modern-compiler',
|
|
additionalData: `@use "@/styles/variables.scss" as *;`,
|
|
},
|
|
},
|
|
},
|
|
plugins: createVitePlugins(env, command === 'build'),
|
|
build: buildConfig,
|
|
optimizeDeps: {
|
|
// vue-pdf-embed is loaded on demand by the PDF preview component. Keeping
|
|
// it out of the shared dependency bundle avoids stale Vue chunk cycles
|
|
// when the development dependency cache is refreshed.
|
|
exclude: ['vue-pdf-embed'],
|
|
esbuildOptions: {
|
|
target: 'esnext',
|
|
},
|
|
},
|
|
});
|
|
};
|