fix: 账户交易记录,列表展示优化。

This commit is contained in:
tianyongbao
2024-07-16 09:47:35 +08:00
parent 6e8e61b751
commit c3680a8543
2 changed files with 13 additions and 2 deletions

View File

@@ -54,6 +54,17 @@ export default defineConfig(({ mode, command }) => {
target: 'http://8.140.22.151:9000', // 本地
changeOrigin: true,
rewrite: (p) => p.replace(/^\/fileUrl/, '')
},
'/bimapi': {
target: 'http://140.249.24.92:3101', // 本地
changeOrigin: true,
rewrite: (p) => p.replace(/^\/bimapi/, '')
},
'/model': {
// bim模型
target: 'http://140.249.24.92:3101',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/model/, '')
}
}
},