9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import request from '@/utils/request'
|
|
|
|
// 工资明细列表列表
|
|
export function projectsalaryDetailLists(params: any) {
|
|
return request.get({ url: '/project.project_salary_detail/lists', params })
|
|
}
|
|
|
|
|