更新页面样式和结构,优化加载、错误和刷新页面的用户体验,调整Vite配置以使用生产环境API,新增订单详情展示功能,提升整体界面一致性和可读性

This commit is contained in:
yahaozhang
2025-11-03 21:20:52 +08:00
parent fba18fc32c
commit 2e35f219e7
9 changed files with 781 additions and 235 deletions

View File

@@ -27,8 +27,8 @@ export default defineConfig({
server: {
proxy: {
'/api': {
// target: 'https://uzi1.cn/api',
target: 'http://localhost:18080',
target: 'https://uzi1.cn/api',
// target: 'http://localhost:18080',
changeOrigin: true,
rewrite: (p) => p.replace(/^\/api/, ''),
},