3
0
Fork 0

Compare commits

...

3 Commits

Author SHA1 Message Date
woody cddf0dfc70 fix(order): 订单列表添加订单总金额展示 2025-09-17 09:33:24 +08:00
sangelxiu1 2e2b995e61 ## Opt - 业绩改金额 2025-09-17 09:33:24 +08:00
sangelxiu1 d071e699ec ## Opt - 业绩改金额 2025-09-17 09:33:24 +08:00
3 changed files with 50 additions and 7 deletions

View File

@ -23,7 +23,8 @@
<text class="value">{{ item.creationTime }}</text>
</view>
<view class="item-row">
<text class="label">注册业绩</text>
<!-- <text class="label">注册业绩</text>-->
<text class="label">注册金额</text>
<text class="value">{{ item.consumeAchieve }}</text>
</view>
<view class="item-row">

View File

@ -44,7 +44,8 @@
<view class="special-performance-compact">
<view class="special-performance-row">
<view class="special-performance-item-compact">
<text class="special-performance-label-compact">销售业绩</text>
<!-- <text class="special-performance-label-compact">销售业绩</text>-->
<text class="special-performance-label-compact">销售金额</text>
<text class="special-performance-value-compact">{{
specialData.currentMonthPv
}}</text>
@ -58,7 +59,8 @@
</view>
<view class="special-performance-row">
<view class="special-performance-item-compact">
<text class="special-performance-label-compact">复购业绩</text>
<!-- <text class="special-performance-label-compact">复购业绩</text>-->
<text class="special-performance-label-compact">复购金额</text>
<text class="special-performance-value-compact">{{
specialData.repurchasePv
}}</text>
@ -89,7 +91,8 @@
<view class="item-performance">
<view class="performance-row">
<view class="performance-group">
<text class="performance-label">销售业绩</text>
<!-- <text class="performance-label">销售业绩</text>-->
<text class="performance-label">销售金额</text>
<text class="performance-value">{{
item.currentMonthPv
}}</text>
@ -103,7 +106,8 @@
</view>
<view class="performance-row">
<view class="performance-group">
<text class="performance-label">复购业绩</text>
<!-- <text class="performance-label">复购业绩</text>-->
<text class="performance-label">复购金额</text>
<text class="performance-value">{{
item.repurchasePv
}}</text>

View File

@ -62,9 +62,17 @@
<view class="tit5"> x{{ ctem.quantity }} </view>
</view>
</view>
<view class="order-info-row">
<view class="tit1"> {{ '创建时间' }}{{ item.creationTime }} </view>
<view class="order-amount-highlight">
<text class="amount-label">订单金额</text>
<text class="amount-value">{{
item.orderAmount | numberToCurrency | isLocal
}}</text>
</view>
<view class="xian"></view>
</view>
</view>
<view v-if="[0, 3, 5].includes(item.orderStatus)" class="xian"></view>
<view class="disFlex">
<view style="flex: 1"></view>
<view class="disFlex">
@ -815,6 +823,36 @@ export default {
color: #333333;
}
.order-info-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 16rpx;
padding-top: 16rpx;
border-top: 1rpx solid #f5f5f5;
}
.order-amount-highlight {
font-family: Source Han Sans CN;
color: #f82c1a;
// background: rgba(248, 44, 26, 0.08);
// padding: 8rpx 16rpx;
// border-radius: 8rpx;
display: flex;
align-items: baseline;
}
.amount-label {
font-size: 22rpx;
font-weight: 400;
margin-right: 4rpx;
}
.amount-value {
font-size: 32rpx;
font-weight: 700;
}
.xian {
background: #eee;
height: 2rpx;