You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pay/ruoyi-uih5/api/system/salary.js

38 lines
650 B

6 months ago
import upload from '@/utils/upload'
import request from '@/utils/request'
// 查询个人工资
export function getSalary(query) {
return request({
6 months ago
url: '/pay/wx/emp/salary',
6 months ago
method: 'get',
data: query
})
}
// 查询月包活
export function getBaohuo(query) {
return request({
6 months ago
url: '/pay/wocheck/getbaohuo',
6 months ago
method: 'get',
data: query
})
}
// 查询日工工时
export function listDwhours(query) {
return request({
6 months ago
url: '/pay/wx/emp/dayWork',
6 months ago
method: 'get',
data: query
})
}
// 查询月帮工
export function getBanggong(query) {
return request({
6 months ago
url: '/pay/wocheck/getbanggong',
6 months ago
method: 'get',
data: query
})
}