This commit is contained in:
guochunsi
2026-01-07 16:17:49 +08:00
parent e1cb334fbf
commit 9490c6670c
21 changed files with 642 additions and 603 deletions

View File

@@ -87,6 +87,18 @@ export const putObj = (obj: any) => {
});
};
/**
* 审核
* @param obj
*/
export const examObj = (obj: any) => {
return request({
url: '/professional/professionalteacherpaper/exam',
method: 'post',
data: obj,
});
};
/**
* 更新状态
* @param obj

View File

@@ -87,6 +87,18 @@ export const putObj = (obj: any) => {
});
};
/**
* 审核
* @param obj
*/
export const examObj = (obj: any) => {
return request({
url: '/professional/professionalteachingmaterial/exam',
method: 'post',
data: obj,
});
};
/**
* 更新状态
* @param obj

View File

@@ -75,6 +75,18 @@ export const putObj = (obj: any) => {
});
};
/**
* 审核
* @param obj
*/
export const examObj = (obj: any) => {
return request({
url: '/professional/professionaltopiclist/exam',
method: 'post',
data: obj,
});
};
/**
* 更新状态
* @param obj

View File

@@ -107,6 +107,18 @@ export function putObj(obj?: any) {
});
}
/**
* 审核对象
* @param obj 对象数据
*/
export function examObj(obj?: any) {
return request({
url: '/professional/professionalqualificationrelation/exam',
method: 'post',
data: obj,
});
}
/**
* 获取图表选项
*/

View File

@@ -107,6 +107,18 @@ export const putObj = (obj: any) => {
});
};
/**
* 审核
* @param obj
*/
export const examObj = (obj: any) => {
return request({
url: '/professional/professionalteacheracademicrelation/exam',
method: 'post',
data: obj,
});
};
/**
* 获取图表配置
*/

View File

@@ -81,6 +81,18 @@ export const putObj = (obj: any) => {
});
};
/**
* 审核
* @param obj
*/
export const examObj = (obj: any) => {
return request({
url: '/professional/professionalteachercertificaterelation/exam',
method: 'post',
data: obj,
});
};
/**
* 获取证书统计信息
*/

View File

@@ -81,3 +81,15 @@ export const putObj = (obj: any) => {
});
};
/**
* 审核
* @param obj
*/
export const examObj = (obj: any) => {
return request({
url: '/professional/professionalteacherhonor/exam',
method: 'post',
data: obj,
});
};