This commit is contained in:
2023-08-26 14:10:16 +08:00
parent 77de5d5d6e
commit c3e6002ca3
9 changed files with 95 additions and 45 deletions

View File

@@ -13,7 +13,8 @@ export function questionCategory(data) {
return request({
url: 'driver-api/tdQuestion/questionCategory',
method: 'POST',
data
data,
noToken: true
});
}
@@ -45,7 +46,8 @@ export function testTotal(data) {
export function querySysConfigList(carTypeId, configKey) {
return request({
url: 'driver-api/tdSysConfigList/querySysConfigList?configKey=' + configKey + '&carTypeId=' + carTypeId,
method: 'GET'
method: 'GET',
noToken: true
});
}
@@ -54,6 +56,7 @@ export function queryProjectList(data) {
return request({
url: 'driver-api/tdTestProject/queryProjectList',
method: 'POST',
data
data,
noToken:true
});
}