Browse Source

fix: 门限制状态变更

master
guoapeng 1 month ago
parent
commit
5b5e412c7a
  1. 2
      src/views/home/index.vue

2
src/views/home/index.vue

@ -224,7 +224,7 @@ const extractLiquidHandle = async () => {
<ft-button type="primary" size="large" :disabled="!systemStore.systemStatus.doorModule.actionable" :click-handle="() => commandHandle('door_open')">
开门
</ft-button>
<ft-button type="primary" size="large" :disabled="systemStore.systemStatus.doorModule.actionable" :click-handle="() => commandHandle('door_close')">
<ft-button type="primary" size="large" :disabled="!systemStore.systemStatus.doorModule.actionable" :click-handle="() => commandHandle('door_close')">
关门
</ft-button>
</el-card>

Loading…
Cancel
Save