common.js 307 B

1234567891011121314151617181920
  1. // 公共业务
  2. // 公司类型
  3. export const companyType = [
  4. {
  5. label: '跨境电商',
  6. value: '0',
  7. },
  8. {
  9. label: '国内电商',
  10. value: '1',
  11. },
  12. {
  13. label: '外贸',
  14. value: '2',
  15. },
  16. {
  17. label: '其他',
  18. value: '3',
  19. }
  20. ];