diff --git a/api/index.js b/api/index.js index c0ff3d3..82b1f1b 100644 --- a/api/index.js +++ b/api/index.js @@ -57,6 +57,7 @@ export const setTaskSave = (params) => post('/app/Task/init', params) //八项 export const getCurrentNextOperation = (params) => post('/app/Task/getSupplementInfo', params) //获取当前任务的下一步操作 export const addFormInfo = (params) => post('/app/Task/addSupplementInfo', params) //审批过程中添加其他信息 export const getDepartmentTree = (params) => post('/app/util/getDepartmentTree', params) //获取部门树 +export const getTree = (params) => post('/app/util/getTree', params) //获取部门树 export const getUserList = (params) => post('/app/util/getUserList', params) //获取人员 export const getToDoTaskList = (params) => post('/app/Task/getAllList', params) //获取待办列表 export const getTaskTechnologicalProcess = (params) => post('/app/Task/getAgencyList', params) //获取流程 @@ -86,3 +87,7 @@ export const compareUserExamFaceCertify = (params) => post('/app/user/compareExa export const compareUserExamVideoFaceCertify = (params) => post('/app/user/compareExamVideoFace', params) // 考试视频人脸认证 export const getClassInfoByParams = (params) => post("/app/stagestudentrelation/getClassInfoByParams", params ); // 获取班级信息 // ********************* end *********************** + +export const addVehicleMessage = (params) => post('/app/vehiclemessage/addVehicleMessage', params) // 添加车联信息 +export const goCheckLicenceNo = (params) => post("/app/vehiclemessage/goCheckLicenceNo", params); +export const getVehiclemessagePageList = (params) => post("/app/vehiclemessage/getPageList", params); diff --git a/components/department/department.vue b/components/department/department.vue index 6b6479e..3b46ab7 100644 --- a/components/department/department.vue +++ b/components/department/department.vue @@ -9,16 +9,16 @@ :is-show-clear="isShowClear" theme-color="#3377ff" page-height="92vh" - label-key="DEPARTMENT_NAME" - value-key="DEPARTMENT_ID" - children-key="nodes" + label-key="name" + value-key="departmentId" + children-key="list" @confirm="fnTreeConfirm" @cancel="$emit('update:visible', false)" />