data.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // 平台类型
  2. export const PlatformTypeList = [
  3. {
  4. label: '移动OneLink',
  5. value: 'OneLinkPB',
  6. imgUrl: require('/public/images/iot-card/onelink.png'),
  7. },
  8. {
  9. label: '电信Ctwing',
  10. value: 'CtwingCmp',
  11. imgUrl: require('/public/images/iot-card/ctwingcmp.png'),
  12. },
  13. {
  14. label: '联通Unicom',
  15. value: 'UnicomCmp',
  16. imgUrl: require('/public/images/iot-card/unicom.png'),
  17. },
  18. ];
  19. //运营商
  20. export const OperatorList = [
  21. {
  22. label: '移动',
  23. value: '移动',
  24. },
  25. {
  26. label: '电信',
  27. value: '电信',
  28. },
  29. {
  30. label: '联通',
  31. value: '联通',
  32. },
  33. ];
  34. // 类型
  35. export const TypeList = [
  36. {
  37. label: '年卡',
  38. value: 'year',
  39. },
  40. {
  41. label: '季卡',
  42. value: 'season',
  43. },
  44. {
  45. label: '月卡',
  46. value: 'month',
  47. },
  48. {
  49. label: '其他',
  50. value: 'other',
  51. },
  52. ];
  53. // 支付方式
  54. export const PaymentMethod = [
  55. {
  56. label: '支付宝手机网站支付',
  57. value: 'ALIPAY_WAP',
  58. },
  59. {
  60. label: '支付宝网页及时到账支付',
  61. value: 'ALIPAY_WEB',
  62. },
  63. {
  64. label: '微信公众号支付',
  65. value: 'WEIXIN_JSAPI',
  66. },
  67. {
  68. label: '微信扫码支付',
  69. value: 'WEIXIN_NATIVE',
  70. },
  71. ];