报修任务查询

This commit is contained in:
2022-09-16 10:23:52 +08:00
parent 90ac6ba5e7
commit 0b8654f6ab
3 changed files with 175 additions and 0 deletions

View File

@@ -505,3 +505,11 @@ export const repaireDtlConfirm = (form, row, pname) => post('api/pda/sb/repaireD
rows: row,
product_person_name: pname
})
/** 报修任务查询 */
// 1.12部门下拉框
export const deptList = () => post('api/pda/sb/deptList', {})
// 1.13报修单查询
export const repairRequest = (id) => post('api/pda/sb/repairRequest', {
dept_id: id
})