Files
huangjingfen/pro_v3.5.1/view/uniapp_v2/components/cartDiscount/index.vue
apple 8e17762510 feat(uniapp_v2): 二开功能迁移与小程序主包优化
- 从 uniapp 迁移 HJF 页面、API、组件及用户/订单相关改动
- queue、assets 使用独立分包以降低主包体积
- 修复首页单根节点与支付结果页 v-if 链
- 关闭 HjfDemoPanel 全局注册;uniNoticeBar 注释 $getAppWebview 避免 __webviewId__ 报错
- 配置域名与 manifest 应用名称;cache/store 防御性处理

Made-with: Cursor
2026-03-26 12:16:01 +08:00

93 lines
3.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view>
<!-- 购物车优惠明细 -->
<base-drawer mode="bottom" :visible="discountInfo.discount" background-color="transparent" mask maskClosable @close="closeDiscount">
<view class="w-full bg--w111-fff rd-t-40rpx py-32">
<view class="text-center fs-32 text--w111-333 fw-500">金额明细</view>
<scroll-view scroll-y="true" class="mt-32 scroll-content">
<view class="p-32">
<view class="flex-between-center">
<view class="fs-26">商品总价</view>
<view class="fs-28 SemiBold">{{discountInfo.deduction.sum_price}}</view>
</view>
<!-- <view class="flex-between-center mt-38">
<view class="fs-26">优惠抵扣</view>
<view class="fs-28 SemiBold">-{{$util.$h.Sub(discountInfo.deduction.sum_price,discountInfo.deduction.pay_price)}}</view>
</view> -->
<view class="flex-between-center mt-38" v-if="discountInfo.deduction.coupon_price">
<view class="fs-26">{{discountInfo.coupon.coupon_title}}</view>
<view class="fs-28 SemiBold">-{{discountInfo.deduction.coupon_price}}</view>
</view>
<view class="flex-between-center mt-38" v-if="discountInfo.deduction.first_order_price">
<view class="fs-26">新人首单优惠</view>
<view class="fs-28 SemiBold">-{{discountInfo.deduction.first_order_price}}</view>
</view>
<view class="flex-between-center mt-38" v-if="discountInfo.deduction.promotions_price">
<view class="fs-26">优惠活动</view>
<view class="fs-28 SemiBold">-{{discountInfo.deduction.promotions_price}}</view>
</view>
<view class="flex-between-center mt-38" v-if="discountInfo.deduction.vip_price">
<view class="fs-26">会员优惠</view>
<view class="fs-28 SemiBold">-{{discountInfo.deduction.vip_price}}</view>
</view>
<view class="flex-between-center mt-38" v-if="discountInfo.deduction.channel_price">
<view class="fs-26">采购优惠</view>
<view class="fs-28 SemiBold">-{{discountInfo.deduction.channel_price}}</view>
</view>
<view class="flex-between-center mt-44" v-if="discountInfo.deduction.vip_price">
<view class="fs-28 fw-500">优惠合计</view>
<view class="fs-32 SemiBold font-num">-{{$util.$h.Sub(discountInfo.deduction.sum_price,discountInfo.deduction.pay_price)}}</view>
</view>
</view>
</scroll-view>
<view :class="showFooter ? 'show-footer' : 'hide-footer'"></view>
</view>
</base-drawer>
</view>
</template>
<script>
import baseDrawer from '@/components/tui-drawer/tui-drawer.vue';
export default {
props: {
discountInfo: {
type: Object,
default: () => {}
},
showFooter:{
type:Boolean,
default: false
}
},
components:{
baseDrawer
},
data() {
return {};
},
mounted() {},
methods: {
closeDiscount(){
this.$emit('myevent');
}
}
}
</script>
<style scoped lang="scss">
.scroll-content {
max-height: 800rpx;
}
.show-footer{
height: calc(194rpx + env(safe-area-inset-bottom));
}
.hide-footer{
/* #ifdef H5 */
height: calc(194rpx + env(safe-area-inset-bottom));
/* #endif */
/* #ifdef MP || APP-PLUS */
height: calc(100rpx + env(safe-area-inset-bottom));
/* #endif */
}
</style>