C端小程序
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.

40 lines
485 B

  1. const spellStatus=[
  2. {
  3. name:'拼团中',
  4. value:10
  5. },
  6. {
  7. name: '拼团成功',
  8. value: 11
  9. },
  10. {
  11. name: '拼团已过期',
  12. value: 12
  13. },
  14. {
  15. name: '拼团失败',
  16. value: 13
  17. }
  18. ]
  19. const spellStatus02 = [
  20. {
  21. name: '继续邀请好友',
  22. value: 10
  23. },
  24. {
  25. name: '去使用',
  26. value: 11
  27. },
  28. {
  29. name: '已过期',
  30. value: 12
  31. },
  32. {
  33. name: '重新拼团',
  34. value: 13
  35. }
  36. ]
  37. module.exports={
  38. spellStatus,
  39. spellStatus02
  40. }