From dd244fc0513e954b4f1c46efd1f5f24fda2cd67d Mon Sep 17 00:00:00 2001 From: guoyuepeng <770272267@qq.com> Date: Mon, 21 Jul 2025 15:32:28 +0800 Subject: [PATCH] =?UTF-8?q?1.=E7=9B=B8=E5=85=B3=E6=96=B9app=E8=BD=A6?= =?UTF-8?q?=E8=BE=86=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/index.js | 5 +++ components/department/department.vue | 25 +++++++----- components/department/index.vue | 14 ++++++- pages/door_access_control/index.vue | 2 +- .../door_access_control/vehicle_info/add.vue | 39 ++++++++++++++++--- .../vehicle_info/index.vue | 27 ++++++++----- 6 files changed, 84 insertions(+), 28 deletions(-) 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)" />