This commit is contained in:
18500206848
2024-02-02 14:44:30 +08:00
parent 6647042acb
commit 91172a730c
255 changed files with 24805 additions and 0 deletions

24
api/wage.js Normal file
View File

@@ -0,0 +1,24 @@
import {
request
} from '@/untils/AxiosUtils.js';
export const getList = (userId, current, size, status) => {
return request({
url: '/api/jobslink-api/payment/userOrder/user/list',
method: 'get',
params: {
userId,
current,
size,
status
}
})
}
export const userOrderList = (params) => {
return request({
url: '/api/jobslink-api/payment/userOrder/userOrderList',
method: 'get',
params
})
}