| | |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 根据对象信息查询 |
| | | export function queryOne (data: any): Promise<any> { |
| | | return httpRequest({ |
| | | url: '/ext/salaryParam/queryOne', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |
| | | // 根据对象信息查询 |
| | | export function queryList (data: any): Promise<any> { |
| | | return httpRequest({ |
| | | url: '/ext/salaryParam/queryList', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |
| | | // 一键报工 |
| | | export function autoWorkReport (data: any): Promise<any> { |
| | | return httpRequest({ |
| | | url: '/ext/plansExt/autoWorkReport', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |
| | | // 根据id查询 |
| | | export function getIdPlansExt(id: any): Promise<any> { |
| | | return httpRequest({ |
| | | url: `/ext/plansExt/${id}`, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 列表查询 |
| | | export function categoryExtList (data: any): Promise<any> { |
| | | return httpRequest({ |
| | | url: '/ext/categoryExt/list', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |
| | | // 查询全部 |
| | | export function allUser (data: any): Promise<any> { |
| | | return httpRequest({ |
| | | url: '/ext/companyUserExt/allUser', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |