From 51874e8daba918d1a7b5901cf309b542e7a06200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Wed, 31 Dec 2025 10:36:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=88=91=E7=9A=84=E5=B7=A5?= =?UTF-8?q?=E5=8D=95=E9=A1=B5=E9=9D=A2=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/workOrderDashboard/index/index.css | 3 +++ packages/workOrderDashboard/index/index.vue | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/packages/workOrderDashboard/index/index.css b/packages/workOrderDashboard/index/index.css index 2c9a055a..85ca8d00 100644 --- a/packages/workOrderDashboard/index/index.css +++ b/packages/workOrderDashboard/index/index.css @@ -136,6 +136,9 @@ page { .orderItem_row_label { width: 200rpx; } +.orderItem_row_status{ + min-width: 90rpx; +} .orderItem_row_state { font-size: 28rpx; diff --git a/packages/workOrderDashboard/index/index.vue b/packages/workOrderDashboard/index/index.vue index b5397cbb..46a545ad 100644 --- a/packages/workOrderDashboard/index/index.vue +++ b/packages/workOrderDashboard/index/index.vue @@ -37,7 +37,7 @@ {{ item.room.name }} - + {{ statusType[item.status].desc }} @@ -183,7 +183,9 @@ export default { const meun = menuButtonInfo(); this.top = meun.top; this.localHeight = meun.height; - this.communityId = JSON.parse(options.communityId); + if (options.communityId) { + this.communityId = JSON.parse(options.communityId); + } }, onShow() { this.page_num = 1; @@ -193,7 +195,7 @@ export default { }, onReachBottom() { if (this.flag) { - this.init(); + this.getTabsList(); } }, }