From ce7a8db2ad76ca3e8189d9348b14c187b88a17b8 Mon Sep 17 00:00:00 2001
From: wk
Date: 星期六, 29 六月 2024 13:49:52 +0800
Subject: [PATCH] feat:购买证

---
 pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue b/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue
index 56a46f5..9c92412 100644
--- a/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue
+++ b/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails.vue
@@ -12,7 +12,7 @@
 				<view class="middle-container">
 					<view class="dept-name">
 						{{ deptName }}
-						<text v-show="deptName">({{ coalName  || productName}})</text>
+						<text v-show="deptName">({{ productNames || productName}})</text>
 					</view>
 					<view class="dept-num">
 						<text style="font-size: 46rpx;
@@ -63,8 +63,8 @@
 				<combined-title title="鎻愮叅鍗曞巻鍙�"></combined-title>
 				<view class="total">
 					鎬诲噣閲�
-					<text>{{ total.toFixed(2) || 0 }}</text>
-				</view>
+					<text>{{ Number(total).toFixed(2) || 0 }}</text>
+				</view> 
 			</view>
 			<view class="main-banner">
 				<view class="empty-pointer"
@@ -86,11 +86,11 @@
 							<view class="second-line">
 								<view class="line-content">
 									<view class="line-content_text">鍑�閲�</view>
-									<view class="line-content_num">{{ item.clean.toFixed(2)  || 0 }}</view>
+									<view class="line-content_num">{{ Number(item.clean) .toFixed(2)  || 0 }}</view>
 								</view>
 								<view class="line-content">
 									<view class="line-content_text">浣欓噺</view>
-									<view class="line-content_num">{{ item.allowance.toFixed(2)  || 0 }}</view>
+									<view class="line-content_num">{{ Number(item.allowance).toFixed(2)  || 0 }}</view>
 								</view>
 							</view>
 						</view>
@@ -114,7 +114,7 @@
 			this.cars2 = value.cars2 ? value.cars2 : null;
 			this.deptName = value.deptName;
 			this.coalName = value.coalName;
-			this.productName =  value.productName;
+			this.productName =  value.productNames;
 			this.carNum = value.carNum ? value.carNum : null
 			console.log(value, '鍙戣繍璁″垝鍙傛暟');
 		},

--
Gitblit v1.9.1