You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
526 B
16 lines
526 B
const state = {
|
|
startMessages: false, // 是否重新开始 true为开始
|
|
syncMessages: [], // 同步消息
|
|
weightMessage: 0, // 体重
|
|
rfidMessage: null, // RFID
|
|
weighSensor1: 0, // 称重传感器一
|
|
weighSensor2: 0, // 称重传感器二
|
|
weighSensor3: 0, // 称重传感器三
|
|
weighSensor4: 0, // 称重传感器四
|
|
vibrationSensor: null, // 震动传感器
|
|
thrombolyticDose: 0, // 溶栓剂量(总量)
|
|
bolusDose: 0, // 团注剂量
|
|
maintenanceDose: 0, // 维持剂量
|
|
};
|
|
|
|
export default state;
|
|
|