|
@@ -112,4 +112,30 @@ export const personJobCvLook = async (id) => {
|
|
openEncryption: true
|
|
openEncryption: true
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 根据专业名称模糊搜索
|
|
|
|
+export const schoolMajorByName = async (params) => {
|
|
|
|
+ return request({
|
|
|
|
+ url: '/app-api/menduner/system/major/search/by/name',
|
|
|
|
+ params,
|
|
|
|
+ method: 'GET',
|
|
|
|
+ custom: {
|
|
|
|
+ showLoading: false,
|
|
|
|
+ auth: true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// 根据专业id搜索
|
|
|
|
+export const schoolMajorById = async (params) => {
|
|
|
|
+ return request({
|
|
|
|
+ url: '/app-api/menduner/system/major/get',
|
|
|
|
+ params,
|
|
|
|
+ method: 'GET',
|
|
|
|
+ custom: {
|
|
|
|
+ showLoading: false,
|
|
|
|
+ auth: true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|