couindex.js 815 B

123456789101112131415161718192021222324252627
  1. // 创新券
  2. // 类型
  3. export const couponsType = ['科技创新券', '研发补贴', '奖励兑现'];
  4. // 折扣类型
  5. export const discounTtype = ['全额折扣券', '折扣券', '定额券'];
  6. // 适用服务类型
  7. export const useType = ['服务类型1', '服务类型2', '服务类型3'];
  8. // 所属分类
  9. export const classify = ['分类1', '分类2', '分类3'];
  10. // 状态
  11. export const couponsStatus = [
  12. { label: '待上架', value: '0' },
  13. { label: '上架', value: '1' },
  14. { label: '下架', value: '-1' },
  15. ];
  16. // 创新券申领
  17. // 状态
  18. export const couponsapplyStatus = [
  19. { label: '待审中', value: '0' },
  20. { label: '通过', value: '1' },
  21. { label: '拒绝', value: '-1' },
  22. ];
  23. // 是否使用
  24. export const isuse = [
  25. { label: '未使用', value: '0' },
  26. { label: '已使用', value: '1' },
  27. ];