batchDiscountPopup.vue 3.1 KB

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