feat:增加美食表单功能

This commit is contained in:
2025-06-24 20:00:06 +08:00
parent 4956c1822e
commit 69c0bfa4c7
18 changed files with 836 additions and 92 deletions

View File

@@ -20,6 +20,13 @@ export default defineConfig({
}
},
server: {
port: 5175
port: 5175,
proxy: {
'/food-service': {
target: 'http://127.0.0.1:8090',
changeOrigin: true,
rewrite: (item) => item.replace(/^\/food-service/, '')
}
}
}
})