config.js 653 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. export const machineTypeList = [
  2. {
  3. name: 'BMI',
  4. type: 7,
  5. checked: false,
  6. disabled: false,
  7. },
  8. {
  9. name: '肺活量',
  10. type: 8,
  11. checked: false,
  12. disabled: false,
  13. },
  14. {
  15. name: '视力',
  16. type: 9,
  17. checked: false,
  18. disabled: false,
  19. },
  20. ]
  21. export const usbConfigList = {
  22. // 'vendorId_productId':'类型关键字'
  23. '1155_22336': 'scan',
  24. '6790_29987': 'bmi',
  25. }
  26. export const equimentConnectConfig = {
  27. 3: {
  28. // top: '0F0002',
  29. // indexJudge: (index) => {
  30. // return index == 0
  31. // },
  32. order: [
  33. {k: 'mac', s: 10, e: 22},
  34. ],
  35. serviceKey: 'FFE0',
  36. channelKey: 'FFE1',
  37. },
  38. }