From 1e61215b48e59e94c1ed98e4ef956227d689d6bc Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Mon, 06 Nov 2023 08:48:39 +0800 Subject: [PATCH] fix:小程序订阅消息 --- pages/actionChange/agencyPage/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/actionChange/agencyPage/index.vue b/pages/actionChange/agencyPage/index.vue index 563f912..0d8b9fd 100644 --- a/pages/actionChange/agencyPage/index.vue +++ b/pages/actionChange/agencyPage/index.vue @@ -15,7 +15,7 @@ </view> </view> <view> - <u-tabs :list="list" :scrollable="scrollable" lineWidth="60" @change="changeTap" /> + <u-tabs :list="list" :scrollable="scrollable" lineWidth="60" :current='current' @change="changeTap" /> </view> <view class="" v-if="userName"> <view class="dataRangeSerch" v-if="current===3"> @@ -161,7 +161,7 @@ value: 3, }, ], showeEscalationTime: false, - current: 0, + current: 1, startTime: '', endTime: '', workOderList: [], @@ -349,10 +349,10 @@ id: e.allocationId }).then(res => { let data = res.data - data.pageState = data.state === 50 || data.state === 40 ? 'view' : pageState + data.pageState = e.stateName === '���������' ? pageState : 'view' let myData = JSON.stringify(data) uni.navigateTo({ - url: '/pages/actionChange/workOrderDetails/index?infor=' + myData, + url: '/pages/actionChange/workOrderDetails/index?infor=' + myData + '&type=jump', }) }) }, -- Gitblit v1.8.0