This commit is contained in:
30404 2024-07-12 11:26:49 +08:00
parent 11ccfedcb5
commit 8d7fec561f
2 changed files with 2 additions and 1 deletions

View File

@ -83,6 +83,7 @@ function SendTest(){
const SendTrainBtn=()=>{
if(selectedItems.length>0 && (HourValue || MinValue)&&StopTime){
SendTrainTest()
window.location.href='/student/managetest'
}else{
alert('发布信息未完全')
}

View File

@ -4,7 +4,7 @@ module.exports = function(app) {
app.use(
'/api', // 如果请求路径匹配'/api',则进行代理
createProxyMiddleware({
target: 'http://127.0.0.1:8000', // 目标后端服务地址
target: 'http://127.0.0.1:5000', // 目标后端服务地址
changeOrigin: true,
})
);