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 | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/pages/tabBar/responsivity/countyResponsivity.vue b/pages/tabBar/responsivity/countyResponsivity.vue
index ce1a066..d99d4f3 100644
--- a/pages/tabBar/responsivity/countyResponsivity.vue
+++ b/pages/tabBar/responsivity/countyResponsivity.vue
@@ -123,6 +123,12 @@
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))
})
@@ -195,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