From 72935b2a35765bcc3622561bb06f2eccd64caf83 Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期二, 16 五月 2023 16:49:00 +0800
Subject: [PATCH] 修改上传图片时页面跳转问题

---
 pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue b/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue
index f3896fb..8ace7d0 100644
--- a/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue
+++ b/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue
@@ -7,7 +7,10 @@
 					<view class="top-title">鍙戣繍璁″垝璇︽儏</view>
 				</view>
 				<view class="middle-container">
-					<view class="dept-name" v-show="deptName">{{ deptName }}({{ coalName }})</view>
+					<view class="dept-name">
+						{{ deptName }}
+						<text v-show="deptName">({{ coalName }})</text>
+					</view>
 					<view class="dept-num">
 						<text
 							style="font-size: 46rpx;
@@ -54,7 +57,7 @@
 				</view>
 			</view>
 			<view class="block-top">
-				<combined-title title="鎻愮叅鍗曡鎯�"></combined-title>
+				<combined-title title="鎻愮叅鍗曞巻鍙�"></combined-title>
 				<view class="total">
 					鎬诲噣閲�
 					<text>{{ total || 0 }}</text>
@@ -64,7 +67,7 @@
 				<view class="empty-pointer" v-if="!yyDailyList">鏆傛棤鏇村鏁版嵁</view>
 				<view class="main-block">
 					<view class="main-container">
-						<view class="main-container_content" v-for="(item, index) in yyDailyList" :key="index" @click="showMore(index)">
+						<view class="main-container_content" v-for="(item, index) in yyDailyList" :key="index" @click="showMore(item)">
 							<view class="arrow-icon"><u-icon name="arrow-right" size="30" color="#999999"></u-icon></view>
 							<view class="divider"><u-divider></u-divider></view>
 							<view class="first-line">
@@ -127,9 +130,9 @@
 				delta: 1
 			});
 		},
-		showMore(index) {
+		showMore(item) {
 			uni.navigateTo({
-				url: `/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanMore/fayunPlanMore?orderPlanId=${this.orderPlanId}&index=${index}`
+				url: `/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanMore/fayunPlanMore?orderPlanId=${this.orderPlanId}&id=${item.id}`
 			});
 		},
 		init() {
@@ -214,6 +217,7 @@
 			position: relative;
 			top: vww(54);
 			.dept-name {
+				min-width: 100rpx;
 				font-size: 32rpx;
 				font-weight: normal;
 				color: #ffffff;

--
Gitblit v1.9.1