index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <view :style="viewColor">
  3. <!-- 选择送货方式 -->
  4. <view class="mask-box">
  5. <view class="bg" v-if="isShowDiscount"></view>
  6. <view class="mask-content animated" :class="{slideInUp:isShowDiscount}">
  7. <view class="title-bar">
  8. 优惠明细
  9. <view class="close" @click="closeShowBox"><text class="iconfont icon-guanbi"></text></view>
  10. </view>
  11. <view class="box">
  12. <view class="check-item">
  13. <view>商品售价:</view>
  14. <view class="radio">
  15. ¥{{couponData.total_price}}
  16. </view>
  17. </view>
  18. <view v-if="couponData.order_total_integral_price>0" class="check-item">
  19. <view>积分抵扣:</view>
  20. <view class="radio">
  21. -¥{{couponData.order_total_integral_price}}
  22. </view>
  23. </view>
  24. <view v-if="couponData.total_platform_coupon_price>0" class="check-item">
  25. <view>平台优惠金额:</view>
  26. <view class="radio">
  27. -¥{{ couponData.total_platform_coupon_price }}
  28. </view>
  29. </view>
  30. <view v-if="couponData.order_coupon_price>0" class="check-item">
  31. <view>店铺优惠金额:</view>
  32. <view class="radio">
  33. -¥{{ couponData.order_coupon_price }}
  34. </view>
  35. </view>
  36. <view v-if="couponData.order_svip_discount>0" class="check-item">
  37. <view>SVIP优惠金额:</view>
  38. <view class="radio">
  39. -¥{{ couponData.order_svip_discount }}
  40. </view>
  41. </view>
  42. <view v-if="use_integral1" class="check-item">
  43. <view>百分比付款优惠:</view>
  44. <view class="radio">
  45. -¥{{(couponData.total_price*discounts_percentage*0.01).toFixed(2)}}
  46. </view>
  47. </view>
  48. <view v-if="couponData.total_coupon>0" class="check-item total">
  49. <view>共优惠:</view>
  50. <view class="radio">
  51. -¥{{ use_integral1?couponData.total_coupon*1+(couponData.total_price*discounts_percentage*0.01).toFixed(2)*1:couponData.total_coupon}}
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. // +----------------------------------------------------------------------
  61. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  62. // +----------------------------------------------------------------------
  63. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  64. // +----------------------------------------------------------------------
  65. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  66. // +----------------------------------------------------------------------
  67. // | Author: CRMEB Team <admin@crmeb.com>
  68. // +----------------------------------------------------------------------
  69. import { mapGetters } from "vuex";
  70. export default{
  71. name:'Discount',
  72. props:{
  73. use_integral1:{
  74. type:Boolean,
  75. default:false
  76. },
  77. isShowDiscount:{
  78. type:Boolean,
  79. default:false
  80. },
  81. couponData:{
  82. type:Object,
  83. default:function(){
  84. return {}
  85. }
  86. },
  87. discounts_percentage:{
  88. type:Number,
  89. default:0
  90. }
  91. },
  92. computed: mapGetters(['viewColor']),
  93. data(){
  94. return {
  95. }
  96. },
  97. created() {
  98. },
  99. methods:{
  100. // 关闭配送方式弹窗
  101. closeShowBox(){
  102. this.$emit('close')
  103. },
  104. }
  105. }
  106. </script>
  107. <style lang="scss">
  108. .mask-box{
  109. .bg{
  110. z-index: 9;
  111. position: fixed;
  112. left: 0;
  113. bottom: 100rpx;
  114. width: 100%;
  115. height: 100%;
  116. background: rgba(0,0,0,0.5);
  117. }
  118. .mask-content{
  119. z-index: 10;
  120. position: fixed;
  121. left: 0;
  122. bottom: 100rpx;
  123. width: 100%;
  124. background-color: #f5f5f5;
  125. border-radius: 16rpx 16rpx 0 0;
  126. transform: translate3d(0, 200%, 0);
  127. transition: all .3s cubic-bezier(.25, .5, .5, .9);
  128. .title-bar{
  129. position: relative;
  130. text-align: center;
  131. padding: 30rpx 0;
  132. margin-bottom: 20rpx;
  133. font-size: 32rpx;
  134. color: #282828;
  135. .close{
  136. position: absolute;
  137. right: 30rpx;
  138. top: 50%;
  139. transform: translateY(-50%);
  140. .iconfont{
  141. color: #8A8A8A;
  142. }
  143. }
  144. }
  145. .box{
  146. padding: 0 30rpx 60rpx;
  147. .check-item{
  148. display: flex;
  149. align-items: center;
  150. justify-content: space-between;
  151. height: 40rpx;
  152. margin-bottom: 50rpx;
  153. font-size: 28rpx;
  154. &.total{
  155. font-weight: bold;
  156. font-size: 32rpx;
  157. .radio{
  158. color: var(--view-priceColor);
  159. }
  160. }
  161. }
  162. }
  163. }
  164. }
  165. .animated {
  166. animation-duration: .3s
  167. }
  168. </style>