瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
663 B

6 months ago
3 months ago
6 months ago
3 months ago
6 months ago
3 months ago
6 months ago
6 months ago
6 months ago
3 months ago
6 months ago
  1. export default {
  2. data() {
  3. return {
  4. productCategory : [
  5. {
  6. name : '户外',
  7. value : 0,
  8. },
  9. {
  10. name : '美食',
  11. value : 1,
  12. },
  13. {
  14. name : '兑换',
  15. value : 2,
  16. },
  17. {
  18. name : '特产',
  19. value : 3,
  20. },
  21. {
  22. name : '校园',
  23. value : 4,
  24. },
  25. ],
  26. }
  27. },
  28. methods : {
  29. // 商品详情->积分兑换
  30. isProductPoint(detail){
  31. return [2].includes(detail.className)
  32. },
  33. // 商品详情->微信支付
  34. isProductPrice(detail){
  35. return [0, 1, 3].includes(detail.className)
  36. },
  37. // 是否跳转到商店
  38. isShopBuy(detail){
  39. return [1, 3, 4].includes(detail.className)
  40. },
  41. }
  42. }