修改积分计算

This commit is contained in:
2025-12-25 19:03:44 +08:00
parent eeadcb382f
commit 55207667b0
13 changed files with 758 additions and 587 deletions

View File

@@ -9,16 +9,16 @@ export default defineConfig({
],
server: {
proxy: {
'/server3': {
'/testApi': {
target: 'http://192.168.1.42', // 目标服务
changeOrigin: true,
rewrite: path => path.replace(/^\/server3/, ''),
rewrite: path => path.replace(/^\/testApi/, ''),
},
"/ysk": {
"/proApi": {
// 需要被代理的后台地址
target: "http://192.168.1.42",
target: "https://cashier.sxczgkj.com",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/ysk/, '')
rewrite: (path) => path.replace(/^\/proApi/, '')
},
}
}