Browse Source

feat:优化细节

叶静 1 tháng trước cách đây
mục cha
commit
af610f8083

+ 7 - 1
src/views/order/payOrder/index.vue

@@ -113,11 +113,17 @@
 						{{ scope.row.paymentChannelName || '--' }}
 					</template>
 				</el-table-column>
-				<el-table-column label="金额" prop="amount" show-overflow-tooltip>
+				<el-table-column label="提交金额" prop="amount" show-overflow-tooltip>
 					<template #default="scope">
+						<!-- 橙色 -->
 						<span style="color: #f56c6c; font-weight: bold">¥{{ scope.row.amount ? scope.row.amount.toFixed(2) : '0.00' }}</span>
 					</template>
 				</el-table-column>
+				<el-table-column label="实际金额" prop="noticeAmount" show-overflow-tooltip>
+					<template #default="scope">
+						<span style="color: #f56c6c; font-weight: bold">¥{{ scope.row.noticeAmount ? scope.row.noticeAmount.toFixed(2) : '0.00' }}</span>
+					</template>
+				</el-table-column>
 				<el-table-column label="订单状态" prop="orderStatus" show-overflow-tooltip>
 					<template #default="scope">
 						<el-tag :type="orderStatusMap[scope.row.orderStatus]?.type || 'info'" size="small">

+ 7 - 1
src/views/order/withdrawOrder/index.vue

@@ -75,11 +75,17 @@
 						{{ scope.row.paymentChannelName || '--' }}
 					</template>
 				</el-table-column>
-				<el-table-column label="金额" prop="amount" show-overflow-tooltip>
+				<el-table-column label="提交金额" prop="amount" show-overflow-tooltip>
 					<template #default="scope">
+						<!-- 橙色 -->
 						<span style="color: #f56c6c; font-weight: bold">¥{{ scope.row.amount ? scope.row.amount.toFixed(2) : '0.00' }}</span>
 					</template>
 				</el-table-column>
+				<el-table-column label="实际金额" prop="noticeAmount" show-overflow-tooltip>
+					<template #default="scope">
+						<span style="color: #f56c6c; font-weight: bold">¥{{ scope.row.noticeAmount ? scope.row.noticeAmount.toFixed(2) : '0.00' }}</span>
+					</template>
+				</el-table-column>
 				<el-table-column label="订单状态" prop="orderStatus" show-overflow-tooltip>
 					<template #default="scope">
 						<el-tag :type="orderStatusMap[scope.row.orderStatus]?.type || 'info'" size="small">