修复bug
This commit is contained in:
parent
542352e840
commit
8b91a91f3c
|
@ -254,7 +254,7 @@ public class AdminContestController {
|
|||
if (!Constants.RemoteOJ.isRemoteOJ(oj)) {
|
||||
problemQueryWrapper.eq("is_remote", false);
|
||||
} else {
|
||||
problemQueryWrapper.eq("is_remote", true).likeLeft("problem_id", oj);
|
||||
problemQueryWrapper.eq("is_remote", true).likeRight("problem_id", oj);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -110,6 +110,7 @@ function getLanguages (all=true) {
|
|||
}
|
||||
|
||||
function stringToExamples(value){
|
||||
console.log(value)
|
||||
let reg = "<input>([\\s\\S]+?)</input><output>([\\s\\S]+?)</output>";
|
||||
let re = RegExp(reg,"g");
|
||||
let objList = []
|
||||
|
@ -117,6 +118,7 @@ function stringToExamples(value){
|
|||
while(tmp=re.exec(value)){
|
||||
objList.push({input:tmp[1],output:tmp[2]})
|
||||
}
|
||||
console.log(objList)
|
||||
return objList
|
||||
}
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@ module.exports={
|
|||
port: 8088, // 开发服务器运行端口号
|
||||
proxy: {
|
||||
'/api': { // 以'/api'开头的请求会被代理进行转发
|
||||
target: 'http://localhost:6688', // 要发向的后台服务器地址 如果后台服务跑在后台开发人员的机器上,就写成 `http://ip:port` 如 `http:192.168.12.213:8081` ip为后台服务器的ip
|
||||
target: 'https://hdoi.cn', // 要发向的后台服务器地址 如果后台服务跑在后台开发人员的机器上,就写成 `http://ip:port` 如 `http:192.168.12.213:8081` ip为后台服务器的ip
|
||||
changeOrigin: true
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue