课程辅助
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
326 B

import request from '@/utils/request';
import {getToken} from "@/utils/auth";
export function dbDLC(data) {
return request({
url: '/pythonJs/dbDLC',
method: 'post',
data:data,
headers: {
'Authorization': 'Bearer '+ getToken() // 将 token 放在请求头中
}
})
}