| | |
| | | }, |
| | | }), |
| | | // 获取分公司信息 |
| | | getCompanyData: () => |
| | | axios.post('/engineering/company/pulldown'), |
| | | getCompanyData: (params) => |
| | | axios.post('/engineering/company/pulldown',{ |
| | | header: { |
| | | "content-type":'application/json' |
| | | }, |
| | | ...params |
| | | }), |
| | | // 获取岗位信息 |
| | | getPositionData: (params) => |
| | | axios.post('/staff/position/findall', params), |
| | |
| | | getAllPersons: (params) => |
| | | axios.post('/staff/platUser/pulldown', params), |
| | | // 获取所有部门信息 |
| | | getAllDepartmentData: () => |
| | | axios.post('/staff/depart/pulldownList'), |
| | | getAllDepartmentData: (params) => |
| | | axios.post('/staff/depart/pulldownList',{ |
| | | header: { |
| | | "content-type":'application/json' |
| | | }, |
| | | ...params |
| | | }), |
| | | } |