quickBuy.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <template>
  2. <uni-popup ref="randomPop" type="bottom" class="randomPop">
  3. <view class="popup-content">
  4. <view class="popup-head">
  5. <text v-if="customerType==1">购买碳汇</text>
  6. <text v-else>线下认购</text>
  7. <text class="close" @click="closePop">X</text>
  8. </view>
  9. <view class="popup-body">
  10. <view class="conditions-item input-number">
  11. <view class="conditions-item-til">请输入您想认购的碳汇数:</view>
  12. <view class="num">
  13. <input class="input" type="number" v-model="shoppingNum" placeholder="单次购买不超过1000株" placeholder-style="font-size:20rpx"/>
  14. </view>
  15. </view>
  16. <view class="conditions-item remark-wrap" v-if="productType == 'all'">
  17. <view class="conditions-item-til">备注说明:</view>
  18. <view class="remark">
  19. <textarea class="remark-textarea" maxlength="240" v-model="remark" placeholder="请输入您对认购的碳汇产品要求" />
  20. </view>
  21. </view>
  22. <view class="amount-wrap">
  23. <view class="amount-flex-wrap">
  24. <view class="amount-til">预估金额:</view>
  25. <view class="amount">
  26. <text class="rmb">¥</text>
  27. <text class="num">{{totalMoney}}</text>
  28. </view>
  29. </view>
  30. <view class="amount-btn" @click="goCart">提交认购申请</view>
  31. </view>
  32. <view class="tip">
  33. 购买{{shoppingNum}}kg,预估金额{{totalMoney}}元,认购期3年
  34. </view>
  35. </view>
  36. </view>
  37. </uni-popup>
  38. </template>
  39. <script>
  40. import {
  41. mapMutations
  42. } from 'vuex';
  43. import {
  44. debounce
  45. } from '@/utils/util.js'
  46. import uniPopup from '@/components/uni-popup/uni-popup.vue'
  47. export default {
  48. name: 'quickBuy',
  49. components: {
  50. uniPopup,
  51. },
  52. created() {
  53. let self = this;
  54. this.shoppingNum = 1;
  55. uni.getStorage({
  56. key:'userInfo',
  57. success: function (res) {
  58. self.customerType = res.data.customerType;
  59. console.log('userInfo',res);
  60. }
  61. });
  62. console.log('prohelpPeople',this.prohelpPeople);
  63. },
  64. props: {
  65. visible: {
  66. type: Boolean,
  67. default: false
  68. },
  69. productType:{
  70. type: String,
  71. default: 'all'
  72. },
  73. prohelpPeople:{
  74. type: Array,
  75. default: () => []
  76. }
  77. },
  78. data() {
  79. return {
  80. customerType:null,
  81. shoppingNum:'',
  82. remark:'',
  83. totalMoney:0,
  84. price:3,
  85. helpPeople:[],
  86. // goodsId:'',
  87. // carbonVal:''
  88. }
  89. },
  90. methods: {
  91. ...mapMutations(['addCart']),
  92. getHelpPeople:debounce(function(num){
  93. if(this.productType=='self'){
  94. console.log('this.prohelpPeople',this.prohelpPeople);
  95. this.helpPeople = this.prohelpPeople;
  96. this.helpPeople[0].carbonSkin = this.shoppingNum;
  97. return ;
  98. };
  99. this.helpPeople = []
  100. this.loading = true
  101. this.$api.http.get(this.config.apiBaseurl + '/carbon-h5/wap/goodsManage/getGoodsInfoByCarbonNum?carbonNum='+this.shoppingNum,{
  102. header: {
  103. Accept:'application/json',
  104. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  105. },
  106. }).then(res =>{
  107. // this.loading = false
  108. console.log('getHelpPeople',res);
  109. this.helpPeople = res.data.retBody;
  110. })
  111. },200),
  112. refreshfarmer(){
  113. this.getHelpPeople(this.shoppingNum);
  114. },
  115. goCart(){
  116. console.log('customerType',this.customerType);
  117. if(this.customerType!=1){
  118. this.$emit('closeModal',true);
  119. this.offlineBuy();
  120. // this.$api.href('/pages/offlineBuy/offlineBuy');
  121. return;
  122. };
  123. if(this.helpPeople === undefined || this.helpPeople.length == 0){
  124. this.$api.msg("请等待农户数据加载完毕!")
  125. return
  126. }else{
  127. this.$refs.randomPop.close()
  128. this.$emit('closeModal',true);
  129. this.addCart(this.helpPeople);
  130. this.$api.href('/pages/confirmOrder/confirmOrder')
  131. }
  132. },
  133. openPop() {
  134. this.$refs.randomPop.open();
  135. if(this.customerType!=1){
  136. return;
  137. };
  138. this.getHelpPeople(this.shoppingNum);
  139. },
  140. closePop() {
  141. Object.assign(this.$data, this.$options.data.call(this))
  142. this.$refs.randomPop.close()
  143. this.$emit('closeModal', true)
  144. },
  145. offlineBuy(){
  146. let self = this;
  147. let offlineparams = {amount:this.shoppingNum,remark:this.remark};
  148. self.$api.http.post(this.config.apiBaseurl + "/carbon-h5/wap/apply",offlineparams,{
  149. header: {
  150. Accept:'application/json',
  151. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  152. },
  153. }).then(res=>{
  154. self.$api.href('/pages/usercenter/subscribe/subscribe')
  155. }).catch( err =>{
  156. console.log('err',err)
  157. })
  158. }
  159. },
  160. watch: {
  161. //碳汇购入量计算
  162. shoppingNum(n, o) {
  163. if (n > 1000) {
  164. // this.$api.msg("单次购买不得超过1000KG!")
  165. // setTimeout(res => {
  166. // this.shoppingNum = 1000
  167. // }, 200)
  168. }
  169. this.getHelpPeople(n)
  170. this.totalMoney = this.price * n;
  171. }
  172. }
  173. }
  174. </script>
  175. <style>
  176. @import url("./quickBuy.css");
  177. </style>