quickBuy.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <uni-popup ref="randomPop" type="bottom" class="randomPop">
  3. <view class="popup-content">
  4. <view class="product">
  5. <view class="product-img-wrap">
  6. <image :src="pData.product.pic|miniImg(50)+'/thumbnail/286x286'" class="product-img" mode="widthFix"></image>
  7. </view>
  8. <view class="product-info">
  9. <view class="product-info-name">
  10. {{pData.product.name}}
  11. </view>
  12. <view class="product-info-price-wrap">
  13. ¥<text class="product-info-price">{{pData.product.price}}</text>
  14. <text class="product-info-unit" v-if="pData.product.unit">/{{pData.product.unit}}</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="nums">
  19. <view class="nums-til">数量</view>
  20. <view class="countNum">
  21. <view class="countNum-action reduce" @click="calcValue('reduce',total)">-</view>
  22. <view class="countNum-input">
  23. <input class="uni-input" v-model="total" type="number" @blur="onInput(total)"/>
  24. </view>
  25. <view class="countNum-action add" @click="calcValue('add',total)">+</view>
  26. </view>
  27. </view>
  28. <view class="buy-btn" @click="submit">立即购买</view>
  29. </view>
  30. </uni-popup>
  31. </template>
  32. <script>
  33. // import { mapMutations } from 'vuex';
  34. import { debounce } from '@/utils/util.js'
  35. // import uniLoadMore from "@/components/uni-load-more/uni-load-more.vue"
  36. import uniPopup from '@/components/uni-popup/uni-popup.vue'
  37. import { bus } from '../../../utils/bus.js';
  38. export default{
  39. name:'quickBuy',
  40. components:{
  41. uniPopup,
  42. },
  43. created(){
  44. console.log('this.pData',JSON.parse(JSON.stringify(this.pData)));
  45. if(this.pData.product.stock>0){this.total = 1};
  46. },
  47. props:{
  48. visible: {
  49. type: Boolean,
  50. default: false
  51. },
  52. pData: {
  53. type: Object,
  54. default: []
  55. }
  56. },
  57. data(){
  58. return{
  59. loading:false,
  60. loadStatus:'loading',
  61. min:1,
  62. total:0,
  63. }
  64. },
  65. methods:{
  66. openPop(){
  67. this.$refs.randomPop.open();
  68. },
  69. closePop(){
  70. Object.assign(this.$data, this.$options.data.call(this))
  71. this.$refs.randomPop.close()
  72. this.$emit('closeModal',true)
  73. },
  74. onInput(total){
  75. console.log(this.total)
  76. if(!(/(^[1-9]\d*$)/.test(this.total))){
  77. this.total = 1
  78. if(this.total < this.min){
  79. this.total = 1
  80. }
  81. }
  82. if(this.total>=this.pData.product.stock){
  83. this.$api.msg('超出最大库存');
  84. this.total = this.pData.product.stock;
  85. }
  86. },
  87. //数量计算
  88. calcValue(type,total){
  89. if (type === "reduce") {
  90. this.total--
  91. if (total <= this.min) {
  92. this.total = 1
  93. }
  94. } else if (type === "add") {
  95. // console.log('total',total);
  96. if(total>=this.pData.product.stock){
  97. this.$api.msg('超出最大库存');
  98. return;
  99. }
  100. this.total++;
  101. }
  102. },
  103. submit(){
  104. if(this.total<=0){
  105. this.$api.msg('商品数量不能小于1');
  106. return;
  107. };
  108. this.$emit('closeModal',true)
  109. bus.$emit('toDetailPage', {
  110. data: {
  111. productId:this.pData.product.id,
  112. bayNum:this.total,
  113. productName:this.pData.product.name,
  114. productPrice:this.pData.product.price,
  115. productImg:this.pData.product.pic,
  116. productUnit:this.pData.product.unit,
  117. }
  118. });
  119. uni.navigateTo({
  120. url: '/pages/confirmorder/confirmorder',
  121. });
  122. }
  123. },
  124. }
  125. </script>
  126. <style scoped>
  127. @import url("./quickBuy.css");
  128. </style>