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.
14 lines
326 B
14 lines
326 B
|
1 year ago
|
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 放在请求头中
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|