index.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import { setCouponReceive } from '../../api/api.js';
  2. const app = getApp();
  3. Component({
  4. properties: {
  5. coupon: {
  6. type: Object,
  7. value:{
  8. list:[],
  9. statusTile:''
  10. },
  11. },
  12. //打开状态 0=领取优惠券,1=使用优惠券
  13. openType:{
  14. type:Number,
  15. value:0,
  16. }
  17. },
  18. data: {
  19. },
  20. attached: function () {
  21. },
  22. methods: {
  23. close: function () {
  24. this.triggerEvent('ChangCouponsClone');
  25. },
  26. getCouponUser:function(e){
  27. var that = this;
  28. var id = e.currentTarget.dataset.id;
  29. var index = e.currentTarget.dataset.index;
  30. var list = that.data.coupon.list;
  31. if (list[index].is_use == true && this.data.openType==0) return true;
  32. switch (this.data.openType){
  33. case 0:
  34. //领取优惠券
  35. setCouponReceive(id).then(res=>{
  36. list[index].is_use = true;
  37. that.setData({
  38. ['coupon.list']: list
  39. });
  40. app.Tips({ title: '领取成功' });
  41. that.triggerEvent('ChangCoupons', list[index]);
  42. });
  43. break;
  44. case 1:
  45. that.triggerEvent('ChangCoupons',index);
  46. break;
  47. }
  48. },
  49. }
  50. })