diff --git a/build.zip b/build.zip index b0714c2..bf7e436 100644 Binary files a/build.zip and b/build.zip differ diff --git a/src/pages/Measure.tsx b/src/pages/Measure.tsx index 128613c..7b0e127 100644 --- a/src/pages/Measure.tsx +++ b/src/pages/Measure.tsx @@ -114,10 +114,6 @@ export default function Measure() { const onStartClick = () => { setshowCalibration(false) dispatch(updateMeasureData([])) - if (contextState.device.power < 20) { - Toast.show("电量低于20%,请充电后测量"); - return; - } if (!contextState.device.connected) { Dialog.alert({ content: '蓝牙未连接,请先连接蓝牙', @@ -145,6 +141,10 @@ export default function Measure() { }); return; } + // if (contextState.device.power < 20) { + // Toast.show("电量低于20%,请充电后测量"); + // return; + // } Bridge.startMeasure().then((res) => { if (res.success) { dispatch(updateTaskState('START_RECORD_SIG'));