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.
38 lines
648 B
38 lines
648 B
import upload from '@/utils/upload'
|
|
import request from '@/utils/request'
|
|
|
|
// 查询个人工资
|
|
export function getSalary(query) {
|
|
return request({
|
|
url: '/wx/emp/salary',
|
|
method: 'get',
|
|
data: query
|
|
})
|
|
}
|
|
|
|
// 查询月包活
|
|
export function getBaohuo(query) {
|
|
return request({
|
|
url: '/secure/wocheck/getbaohuo',
|
|
method: 'get',
|
|
data: query
|
|
})
|
|
}
|
|
|
|
// 查询日工工时
|
|
export function listDwhours(query) {
|
|
return request({
|
|
url: '/wx/emp/dayWork',
|
|
method: 'get',
|
|
data: query
|
|
})
|
|
}
|
|
|
|
// 查询月帮工
|
|
export function getBanggong(query) {
|
|
return request({
|
|
url: '/secure/wocheck/getbanggong',
|
|
method: 'get',
|
|
data: query
|
|
})
|
|
} |