123456789101112131415161718192021222324252627282930313233343536373839 |
- export const machineTypeList = [
- {
- name: 'BMI',
- type: 7,
- checked: false,
- disabled: false,
- },
- {
- name: '肺活量',
- type: 8,
- checked: false,
- disabled: false,
- },
- {
- name: '视力',
- type: 9,
- checked: false,
- disabled: false,
- },
- ]
- export const usbConfigList = {
- // 'vendorId_productId':'类型关键字'
- '1155_22336': 'scan',
- '6790_29987': 'bmi',
- }
- export const equimentConnectConfig = {
- 3: {
- // top: '0F0002',
- // indexJudge: (index) => {
- // return index == 0
- // },
- order: [
- {k: 'mac', s: 10, e: 22},
- ],
- serviceKey: 'FFE0',
- channelKey: 'FFE1',
- },
- }
|