This commit is contained in:
2025-11-03 13:40:27 +08:00
parent 64426e6834
commit f1daab1193
10 changed files with 124 additions and 82 deletions

View File

@@ -1,9 +1,15 @@
/*
* @Date: 2025-10-31 11:06:15
* @LastEditors: shirlwang
* @LastEditTime: 2025-11-03 10:28:16
*/
import { post, get } from '../../utils/request.js'
import request from '@/utilsRc/request'
export function listJobType(query) {
return get({
url: 'basicdata/workType/list',
return request({
url: '/basicdata/workType/list',
method: 'get',
params: query
})
}