Merge branch 'developer' of ssh://code.cyweb.top:30033/scj/zhxy/v3/cloud-ui into developer
This commit is contained in:
@@ -30,7 +30,7 @@ export const fetchListStatic = (query?: any) => {
|
||||
*/
|
||||
export const addObj = (obj: any) => {
|
||||
return request({
|
||||
url: '/recruit/recruitprestudent',
|
||||
url: '/recruit/recruitprestudent/add',
|
||||
method: 'post',
|
||||
data: obj,
|
||||
});
|
||||
@@ -42,7 +42,7 @@ export const addObj = (obj: any) => {
|
||||
*/
|
||||
export const addObjStu = (obj: any) => {
|
||||
return request({
|
||||
url: '/recruit/recruitprestudent/saveStuData',
|
||||
url: '/recruit/recruitprestudent/add',
|
||||
method: 'post',
|
||||
data: obj,
|
||||
});
|
||||
@@ -54,8 +54,9 @@ export const addObjStu = (obj: any) => {
|
||||
*/
|
||||
export const getObj = (id: string | number) => {
|
||||
return request({
|
||||
url: `/recruit/recruitprestudent/${id}`,
|
||||
url: `/recruit/recruitprestudent/getById`,
|
||||
method: 'get',
|
||||
params: {id:id}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -65,8 +66,9 @@ export const getObj = (id: string | number) => {
|
||||
*/
|
||||
export const delObj = (id: string | number) => {
|
||||
return request({
|
||||
url: `/recruit/recruitprestudent/${id}`,
|
||||
method: 'delete',
|
||||
url: `/recruit/recruitprestudent/deleteById`,
|
||||
method: 'post',
|
||||
data:{id:id}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -76,8 +78,8 @@ export const delObj = (id: string | number) => {
|
||||
*/
|
||||
export const putObj = (obj: any) => {
|
||||
return request({
|
||||
url: '/recruit/recruitprestudent',
|
||||
method: 'put',
|
||||
url: '/recruit/recruitprestudent/edit',
|
||||
method: 'post',
|
||||
data: obj,
|
||||
});
|
||||
};
|
||||
@@ -89,7 +91,7 @@ export const putObj = (obj: any) => {
|
||||
export const sureDJ = (obj: any) => {
|
||||
return request({
|
||||
url: '/recruit/recruitprestudent/sureDJ',
|
||||
method: 'put',
|
||||
method: 'post',
|
||||
data: obj,
|
||||
});
|
||||
};
|
||||
|
||||
@@ -30,7 +30,7 @@ export const list = (query?: any) => {
|
||||
*/
|
||||
export const addObj = (obj: any) => {
|
||||
return request({
|
||||
url: '/recruit/recruitstudentplancorrectscoreconfig',
|
||||
url: '/recruit/recruitstudentplancorrectscoreconfig/add',
|
||||
method: 'post',
|
||||
data: obj,
|
||||
});
|
||||
@@ -42,8 +42,9 @@ export const addObj = (obj: any) => {
|
||||
*/
|
||||
export const getObj = (id: string | number) => {
|
||||
return request({
|
||||
url: `/recruit/recruitstudentplancorrectscoreconfig/${id}`,
|
||||
url: `/recruit/recruitstudentplancorrectscoreconfig/getById`,
|
||||
method: 'get',
|
||||
params:{id:id}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -53,8 +54,9 @@ export const getObj = (id: string | number) => {
|
||||
*/
|
||||
export const delObj = (id: string | number) => {
|
||||
return request({
|
||||
url: `/recruit/recruitstudentplancorrectscoreconfig/${id}`,
|
||||
method: 'delete',
|
||||
url: `/recruit/recruitstudentplancorrectscoreconfig/deleteById`,
|
||||
method: 'post',
|
||||
data:{id:id}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -64,8 +66,8 @@ export const delObj = (id: string | number) => {
|
||||
*/
|
||||
export const putObj = (obj: any) => {
|
||||
return request({
|
||||
url: '/recruit/recruitstudentplancorrectscoreconfig',
|
||||
method: 'put',
|
||||
url: '/recruit/recruitstudentplancorrectscoreconfig/edit',
|
||||
method: 'post',
|
||||
data: obj,
|
||||
});
|
||||
};
|
||||
|
||||
@@ -71,3 +71,15 @@ export const putObj = (obj: any) => {
|
||||
data: obj,
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 更新
|
||||
* @param obj
|
||||
*/
|
||||
export const editQuickField = (obj: any) => {
|
||||
return request({
|
||||
url: '/recruit/recruitstudentplangroup/editQuickField',
|
||||
method: 'post',
|
||||
data: obj,
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user