|
@@ -186,26 +186,21 @@
|
|
|
@handle-cancel="handleCancel"
|
|
@handle-cancel="handleCancel"
|
|
|
/>
|
|
/>
|
|
|
<DeviceBaseInfo @register="registerModal" :device-type="selectData['deviceType']" />
|
|
<DeviceBaseInfo @register="registerModal" :device-type="selectData['deviceType']" />
|
|
|
- <BasicModal @register="registerModal1">
|
|
|
|
|
|
|
+ <BasicModal @register="registerModal1" title="防火门控制">
|
|
|
<div class="flex justify-around mt-20px mb-20px">
|
|
<div class="flex justify-around mt-20px mb-20px">
|
|
|
- <div>防火门打开</div>
|
|
|
|
|
- <div>防火门关闭</div>
|
|
|
|
|
- <div>停止</div>
|
|
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('frontGateOpen_S', '开启', true)">卷帘门开启</Button>
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('frontGateClose_S', '关闭', true)">卷帘门关闭</Button>
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('frontGateStop_S', '停止', true)">卷帘门停止</Button>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="flex justify-around mt-20px mb-20px">
|
|
<div class="flex justify-around mt-20px mb-20px">
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('frontGateOpen_S', true)">卷帘门开启</Button>
|
|
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('frontGateClose_S', true)">卷帘门关闭</Button>
|
|
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('frontGateStop_S', true)">卷帘门停止</Button>
|
|
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('MBOpen_S', '开启', true)">皮带密闭开启</Button>
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('MBClose_S', '关闭', true)">皮带密闭关闭</Button>
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('MBStop_S', '停止', true)">皮带密闭停止</Button>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="flex justify-around mt-20px mb-20px">
|
|
<div class="flex justify-around mt-20px mb-20px">
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('MBOpen_S', true)">皮带密闭开启</Button>
|
|
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('MBClose_S', true)">皮带密闭关闭</Button>
|
|
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('MBStop_S', true)">皮带密闭停止</Button>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="flex justify-around mt-20px mb-20px">
|
|
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('AllOpen_S', true)">同时开启</Button>
|
|
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('AllClose_S', true)">同时关闭</Button>
|
|
|
|
|
- <Button type="primary" class="w-120px" @click="setControl('AllStop_S', true)">同时停止</Button>
|
|
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('AllOpen_S', '开启', true)">同时开启</Button>
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('AllClose_S', '关闭', true)">同时关闭</Button>
|
|
|
|
|
+ <Button type="primary" class="w-120px" @click="setControl('AllStop_S', '停止', true)">同时停止</Button>
|
|
|
</div>
|
|
</div>
|
|
|
</BasicModal>
|
|
</BasicModal>
|
|
|
</template>
|
|
</template>
|