discountsPopup.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <u-popup :show="show" mode="bottom" :round="10" closeable @close="close">
  3. <view class="content">
  4. <view class="goods-information" v-if="selectGoodsInformation.goods">
  5. <image
  6. class="goods-img"
  7. :src="selectGoodsInformation.goods.image"
  8. mode=""
  9. ></image>
  10. <view class="goods-right">
  11. <view class="title">
  12. {{ selectGoodsInformation.goods.name_cn }}
  13. </view>
  14. <view class="price">
  15. ¥{{ selectGoodsInformation.goods.discount_price }}
  16. </view>
  17. </view>
  18. </view>
  19. <view class="discount">
  20. <view class=""> 折扣 </view>
  21. <u--input
  22. inputAlign="right"
  23. placeholder="打8折请输入80,以原价计算"
  24. border="none"
  25. type="number"
  26. v-model="value"
  27. @change="change"
  28. maxlength="2"
  29. ></u--input>
  30. <view style="margin-left: 10rpx"> % </view>
  31. </view>
  32. <view class="text-list" v-if="value">
  33. <view class="_text-1">
  34. <text>折扣价</text>
  35. <text>¥{{ discountPrice }}</text>
  36. </view>
  37. <view class="_text-1">
  38. <text>优惠</text>
  39. <text style="color: #f83224">-¥{{ preferential }}</text>
  40. </view>
  41. </view>
  42. <button class="btn" @click="confirm">确定</button>
  43. </view>
  44. </u-popup>
  45. </template>
  46. <script>
  47. export default {
  48. props: {
  49. show: {
  50. typeof: Boolean,
  51. default: false,
  52. },
  53. selectGoodsInformation: {
  54. typeof: Object,
  55. default: () => {
  56. return {};
  57. },
  58. },
  59. },
  60. data() {
  61. return {
  62. value: "",
  63. discountPrice: 0,
  64. preferential: 0,
  65. };
  66. },
  67. methods: {
  68. close() {
  69. this.value = "";
  70. this.discountPrice = 0;
  71. this.preferential = 0;
  72. this.$emit("close");
  73. },
  74. confirm() {
  75. this.$emit("close", this.value);
  76. this.value = "";
  77. this.discountPrice = 0;
  78. this.preferential = 0;
  79. },
  80. change(e) {
  81. console.log(this.selectGoodsInformation);
  82. this.discountPrice =
  83. Number(this.selectGoodsInformation.goods.discount_price) *
  84. (Number(e) * 0.01);
  85. this.preferential =
  86. Number(this.selectGoodsInformation.goods.discount_price) -
  87. this.discountPrice;
  88. },
  89. },
  90. };
  91. </script>
  92. <style scoped lang="scss">
  93. .content {
  94. padding: 30rpx 24rpx;
  95. .goods-information {
  96. display: flex;
  97. justify-content: flex-start;
  98. .goods-img {
  99. width: 104rpx;
  100. height: 104rpx;
  101. border-radius: 10rpx;
  102. margin-right: 20rpx;
  103. }
  104. .goods-right {
  105. display: flex;
  106. flex-direction: column;
  107. justify-content: space-around;
  108. width: 70%;
  109. .title {
  110. font-size: 28rpx;
  111. color: #333;
  112. width: 70%;
  113. overflow: hidden;
  114. white-space: nowrap;
  115. text-overflow: ellipsis;
  116. }
  117. .price {
  118. font-size: 28rpx;
  119. opacity: 0.8;
  120. color: #333;
  121. }
  122. }
  123. }
  124. .discount {
  125. display: flex;
  126. padding: 36rpx;
  127. border-radius: 10rpx;
  128. border: 2rpx solid #f83224;
  129. margin-top: 56rpx;
  130. font-size: 30rpx;
  131. color: #222;
  132. align-items: center;
  133. font-weight: 600;
  134. }
  135. .text-list {
  136. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  137. margin-top: 40rpx;
  138. ._text-1 {
  139. display: flex;
  140. justify-content: space-between;
  141. height: 100rpx;
  142. align-items: center;
  143. font-size: 28rpx;
  144. }
  145. }
  146. .btn {
  147. background-color: #f83224;
  148. border-radius: 44rpx;
  149. color: #fff;
  150. margin-top: 30rpx;
  151. }
  152. }
  153. </style>