From dbccfc04eb5a927d690bb75277f614e63d4544c9 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Wed, 21 Jan 2026 15:54:13 +0800
Subject: [PATCH] 适配64位
---
pages/tabBar/responsivity/countyResponsivity.vue | 24 ++++++++++++++++--------
1 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/pages/tabBar/responsivity/countyResponsivity.vue b/pages/tabBar/responsivity/countyResponsivity.vue
index b5ab7cc..d99d4f3 100644
--- a/pages/tabBar/responsivity/countyResponsivity.vue
+++ b/pages/tabBar/responsivity/countyResponsivity.vue
@@ -20,7 +20,7 @@
<th></th>
<th>处理情况</th>
<th v-if="unittype == 4">叫应时间</th>
- <th v-else>叫应率</th>
+ <th v-else>转发叫应率</th>
<th v-if="unittype == 4">反馈</th>
<th v-else>详情</th>
</tr>
@@ -74,7 +74,8 @@
console.log("data",test)
this.title = test.title;
this.tableData = test.appPageResponseByIdRespDTOS;
- this.unittype = test.unittype;
+ this.unittype = this.tableData[0].unittype;
+ console.log("unittype",this.tableData)
this.tableData.forEach((item,index) => {
this.tableData[index].response = item.responseStatus ==1 ? '待叫应' :item.responseStatus == 2 ? '已叫应' :'超时未叫应'
this.tableData[index].responsivity = item.forwardRate ? item.forwardRate :'--';
@@ -109,11 +110,11 @@
}
})
}else {
- // uni.showToast({
- // icon: 'none',
- // title: '无转发',
- // duration: 3000
- // })
+ uni.showToast({
+ icon: 'none',
+ title: '暂无下级转发数据',
+ duration: 3000
+ })
}
},
toDetail(item){
@@ -121,6 +122,13 @@
getMeasureDetail({id: item.id}).then(res => {
if(res.code == 100){
if(res.data.baseMeasures && res.data.baseMeasures.length>0 ){
+ uni.setStorageSync('backMeasures','county')
+ let obj = {
+ title: this.title,
+ appPageResponseByIdRespDTOS: this.tableData //this.tableDate
+ }
+ console.log("obj",obj)
+ uni.setStorageSync('countyDetail', obj)
uni.navigateTo({
url: `/pages/tabBar/responsivity/showMeasures?data=` + encodeURIComponent(JSON.stringify(res.data))
})
@@ -193,7 +201,7 @@
background-color: rgb(207, 223, 241);
line-height: 35px;
}
- tr:nth-child(odd+1) {
+ tr:nth-child(odd) {
background-color: rgb(207, 223, 241); /* 设置奇数行颜色 */
}
tr:nth-child(even) {
--
Gitblit v1.9.2