quickBuy.vue 5.4 KB

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