From 7220d4002120ff3731596347fef2f7ef89cf76dc Mon Sep 17 00:00:00 2001 From: sangchengzhi <2305486879@qq.com> Date: Fri, 16 Jan 2026 16:53:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=99=A2=E5=86=85=E5=AF=BC?= =?UTF-8?q?=E8=A7=86=E9=A1=B5=E4=B8=A4=E4=B8=AA=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/building.js | 17 -- src/utils/dict.js | 1 + src/views/system/building/index.vue | 291 ++++++++++++++------------- src/views/system/nxexpress/index.vue | 7 +- 4 files changed, 159 insertions(+), 157 deletions(-) diff --git a/src/api/system/building.js b/src/api/system/building.js index a8d46ae..00e274b 100644 --- a/src/api/system/building.js +++ b/src/api/system/building.js @@ -9,23 +9,6 @@ export function createBuilding(data) { }) } -// 查询楼层导视 -export function listBuilding(query) { - return request({ - url: '/system/building/list01', - method: 'get', - params: query - }) -} - -// 获楼层精简信息列表 -export function listSimpleBuildings() { - return request({ - url: '/system/building/list-all-simple', - method: 'get' - }) -} - // 更新楼层导视 export function updateBuilding(data) { return request({ diff --git a/src/utils/dict.js b/src/utils/dict.js index a8db4da..930260d 100644 --- a/src/utils/dict.js +++ b/src/utils/dict.js @@ -15,6 +15,7 @@ export const DICT_TYPE = { WQ_TYPE: 'wq_type', WQWT_TYPE: 'wqwt_type', BUILDING_STATUS: 'building_status', + BUILDING_DIRECTION: 'building_direction', DZ_TYPE_NUM: 'dz_type_num', BLACKLIST_TYPE: 'blacklist_type', EXPRESS_STATUS: 'express_status', diff --git a/src/views/system/building/index.vue b/src/views/system/building/index.vue index d271375..6798c92 100644 --- a/src/views/system/building/index.vue +++ b/src/views/system/building/index.vue @@ -1,85 +1,120 @@ + diff --git a/src/views/system/nxexpress/index.vue b/src/views/system/nxexpress/index.vue index 1e22254..a688b1a 100644 --- a/src/views/system/nxexpress/index.vue +++ b/src/views/system/nxexpress/index.vue @@ -446,10 +446,10 @@ export default { }, /** 开始自动刷新 */ startAutoRefresh() { - // 每10秒直接调用一次getList()方法 + // 每100秒直接调用一次getList()方法 this.autoRefreshTimer = setInterval(() => { this.getList(); - }, 10000); + }, 60000); }, /** 停止自动刷新 */ stopAutoRefresh() { @@ -535,7 +535,8 @@ export default { this.$modal.confirm('是否确认打回该申请?').then(() => { // 使用专门的打回接口,只需要传递id const rejectData = { - id: row.id + id: row.id, + status: 4, }; console.log('打回操作提交的数据:', rejectData);