feat(service): 重构服务列表页面

- 更新服务列表获取逻辑,使用新的 API 接口
- 优化服务列表渲染逻辑,支持动态加载
This commit is contained in:
huangze
2025-07-03 14:45:36 +08:00
parent ce9b94ffd8
commit 88361595e8
12 changed files with 199 additions and 98 deletions

View File

@@ -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文件