123456789101112131415161718192021222324252627 |
- // 创新券
- // 类型
- export const couponsType = ['科技创新券', '研发补贴', '奖励兑现'];
- // 折扣类型
- export const discounTtype = ['全额折扣券', '折扣券', '定额券'];
- // 适用服务类型
- export const useType = ['服务类型1', '服务类型2', '服务类型3'];
- // 所属分类
- export const classify = ['分类1', '分类2', '分类3'];
- // 状态
- export const couponsStatus = [
- { label: '待上架', value: '0' },
- { label: '上架', value: '1' },
- { label: '下架', value: '-1' },
- ];
- // 创新券申领
- // 状态
- export const couponsapplyStatus = [
- { label: '待审中', value: '0' },
- { label: '通过', value: '1' },
- { label: '拒绝', value: '-1' },
- ];
- // 是否使用
- export const isuse = [
- { label: '未使用', value: '0' },
- { label: '已使用', value: '1' },
- ];
|