更改地址使平台可以正常启动

This commit is contained in:
lip
2025-11-03 13:00:49 +08:00
parent 22cb414232
commit 8c25a3ab4f
7 changed files with 715 additions and 1 deletions

15
apiRc/jobType/index.js Normal file
View File

@@ -0,0 +1,15 @@
/*
* @Date: 2025-10-31 11:06:15
* @LastEditors: lip
* @LastEditTime: 2025-11-03 12:48:22
*/
// import { post, get } from '@/utilsRc/request'
import request from '@/utilsRc/request'
export function listJobType(query) {
return request({
url: '/basicdata/workType/list',
method: 'get',
params: query
})
}