You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
621 B
JavaScript
18 lines
621 B
JavaScript
|
2 months ago
|
/*
|
||
|
|
* @Author: qinzhenpen qzp1807@126.com
|
||
|
|
* @Date: 2025-04-27 16:51:15
|
||
|
|
* @LastEditors: qinzhenpen qzp1807@126.com
|
||
|
|
* @LastEditTime: 2025-05-07 11:20:22
|
||
|
|
* @FilePath: \e-commerce-internet\src\api\caseTraining.js
|
||
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||
|
|
*/
|
||
|
|
import request from "@/utils/request"
|
||
|
|
|
||
|
|
export function pythonRun(data) {
|
||
|
|
return request({
|
||
|
|
baseURL:'https://jrdsj.sztzjy.com:598',
|
||
|
|
url: "/api/jupyter/validate",
|
||
|
|
method: "post",
|
||
|
|
data: data
|
||
|
|
})
|
||
|
|
}
|