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=()=>{ const SendTrainBtn=()=>{
if(selectedItems.length>0 && (HourValue || MinValue)&&StopTime){ if(selectedItems.length>0 && (HourValue || MinValue)&&StopTime){
SendTrainTest() SendTrainTest()
window.location.href='/student/managetest'
}else{ }else{
alert('发布信息未完全') alert('发布信息未完全')
} }

View File

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