From 53bf1e11c46964e15ab2d334457066ed3b68c98d Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期五, 06 六月 2025 12:57:57 +0800 Subject: [PATCH] refactor(lb-eims):调整代码和更新配置- 注释掉 EimsEquImportVo 中的 @ExcelProperty 注解 - 优化 EimsEquImportListener 中的异常日志输出- 更新 snailjob 监控页面的 iframe 源地址- 修改移动端项目的 API 基础 URL - 优化移动端页面跳转逻辑 - 改进维修请求列表的接单操作流程 --- eims-ui-mobile/src/pages/maint/maint-order.vue | 45 +++++++++++++++++++++++---------------------- 1 files changed, 23 insertions(+), 22 deletions(-) diff --git a/eims-ui-mobile/src/pages/maint/maint-order.vue b/eims-ui-mobile/src/pages/maint/maint-order.vue index e87f216..7f2da57 100644 --- a/eims-ui-mobile/src/pages/maint/maint-order.vue +++ b/eims-ui-mobile/src/pages/maint/maint-order.vue @@ -2,25 +2,7 @@ { layout: 'default', needLogin: true, - style: { - navigationBarTitleText: '淇濆吇宸ュ崟', - 'app-plus': { - titleNView: { - buttons: [ - { - text: '鎻愪氦', - fontSize: '14px', - color: '#FFFFFF', - }, - { - text: '', - fontSize: '24px', - color: '#FFFFFF', - }, - ], - }, - }, - }, + style: { navigationBarTitleText: '淇濆吇宸ュ崟', navigationStyle: 'custom' }, } </route> @@ -33,6 +15,19 @@ show-refresher-update-time > <template #top> + <wd-navbar + title="淇濆吇宸ュ崟" + left-arrow + @click-left="goBack" + right-text="鎻愪氦" + @click-right="handleClickRight" + custom-style="background: #4D80F0;" + safeAreaInsetTop + > + <template #right> + <text v-if="isOperatorOrRepair()" class="text-white">鎻愪氦</text> + </template> + </wd-navbar> <wd-cell> <template #title> <text class="text-color-gray">璁惧</text> @@ -434,11 +429,17 @@ function reloadData() { initMaintSt(maintStId.value) } -onNavigationBarButtonTap((e) => { - if (e.index === 0) { + +const goBack = () => { + uni.navigateBack() +} + +function handleClickRight() { + if(isOperatorOrRepair()){ handleUpdateMaintSt() } -}) + +} onLoad(() => { uni.$on('maint-order-refresh', reloadData) -- Gitblit v1.9.3