project init

This commit is contained in:
zxy
2024-02-02 10:24:54 +08:00
commit 21a84c3035
253 changed files with 25212 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
})
}