feat(service): 重构服务列表页面
- 更新服务列表获取逻辑,使用新的 API 接口 - 优化服务列表渲染逻辑,支持动态加载
This commit is contained in:
@@ -12,7 +12,14 @@ module.exports = {
|
||||
outputDir: 'dist', //打包输出目录
|
||||
productionSourceMap: false,
|
||||
devServer: {
|
||||
https: false
|
||||
https: false,
|
||||
proxy: {
|
||||
'/api': {
|
||||
target: 'http://127.0.0.1:7100',
|
||||
changeOrigin: true,
|
||||
rewrite: path => path.replace(/^\/api/, '')
|
||||
}
|
||||
}
|
||||
},
|
||||
css: {
|
||||
sourceMap: true, // 查看css属于哪个css文件
|
||||
|
||||
Reference in New Issue
Block a user