|
@ -122,10 +122,10 @@ const debug_fan_stop = async () => { |
|
|
await debugStore.sendControl(params) |
|
|
await debugStore.sendControl(params) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const debug_cover_elvator_lift_up = async () => { |
|
|
|
|
|
|
|
|
const debug_cover_elevator_lift_up = async () => { |
|
|
const params = { |
|
|
const params = { |
|
|
commandId: Date.now().toString(), |
|
|
commandId: Date.now().toString(), |
|
|
command: 'debug_cover_elvator_lift_up', |
|
|
|
|
|
|
|
|
command: 'debug_cover_elevator_lift_up', |
|
|
params: { |
|
|
params: { |
|
|
...debugStore.formData.lidData, |
|
|
...debugStore.formData.lidData, |
|
|
}, |
|
|
}, |
|
@ -133,10 +133,10 @@ const debug_cover_elvator_lift_up = async () => { |
|
|
await debugStore.sendControl(params) |
|
|
await debugStore.sendControl(params) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const debug_cover_elvator_lift_down = async () => { |
|
|
|
|
|
|
|
|
const debug_cover_elevator_lift_down = async () => { |
|
|
const params = { |
|
|
const params = { |
|
|
commandId: Date.now().toString(), |
|
|
commandId: Date.now().toString(), |
|
|
command: 'debug_cover_elvator_lift_down', |
|
|
|
|
|
|
|
|
command: 'debug_cover_elevator_lift_down', |
|
|
params: { |
|
|
params: { |
|
|
...debugStore.formData.lidData, |
|
|
...debugStore.formData.lidData, |
|
|
}, |
|
|
}, |
|
@ -144,19 +144,19 @@ const debug_cover_elvator_lift_down = async () => { |
|
|
await debugStore.sendControl(params) |
|
|
await debugStore.sendControl(params) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const debug_cover_elvator_reset = async () => { |
|
|
|
|
|
|
|
|
const debug_cover_elevator_reset = async () => { |
|
|
const params = { |
|
|
const params = { |
|
|
commandId: Date.now().toString(), |
|
|
commandId: Date.now().toString(), |
|
|
command: 'debug_cover_elvator_reset', |
|
|
|
|
|
|
|
|
command: 'debug_cover_elevator_reset', |
|
|
params: {}, |
|
|
params: {}, |
|
|
} |
|
|
} |
|
|
await debugStore.sendControl(params) |
|
|
await debugStore.sendControl(params) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const debug_cover_elvator_stop = async () => { |
|
|
|
|
|
|
|
|
const debug_cover_elevator_stop = async () => { |
|
|
const params = { |
|
|
const params = { |
|
|
commandId: Date.now().toString(), |
|
|
commandId: Date.now().toString(), |
|
|
command: 'debug_cover_elvator_stop', |
|
|
|
|
|
|
|
|
command: 'debug_cover_elevator_stop', |
|
|
params: {}, |
|
|
params: {}, |
|
|
} |
|
|
} |
|
|
await debugStore.sendControl(params) |
|
|
await debugStore.sendControl(params) |
|
@ -748,18 +748,18 @@ const door_stop = async () => { |
|
|
</el-input> |
|
|
</el-input> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<el-form-item> |
|
|
<el-form-item> |
|
|
<ft-button type="primary" :click-handle="debug_cover_elvator_lift_up"> |
|
|
|
|
|
|
|
|
<ft-button type="primary" :click-handle="debug_cover_elevator_lift_up"> |
|
|
抬升 |
|
|
抬升 |
|
|
</ft-button> |
|
|
</ft-button> |
|
|
<ft-button type="primary" :click-handle="debug_cover_elvator_lift_down"> |
|
|
|
|
|
|
|
|
<ft-button type="primary" :click-handle="debug_cover_elevator_lift_down"> |
|
|
下降 |
|
|
下降 |
|
|
</ft-button> |
|
|
</ft-button> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<el-form-item> |
|
|
<el-form-item> |
|
|
<ft-button type="primary" :click-handle="debug_cover_elvator_reset"> |
|
|
|
|
|
|
|
|
<ft-button type="primary" :click-handle="debug_cover_elevator_reset"> |
|
|
复位 |
|
|
复位 |
|
|
</ft-button> |
|
|
</ft-button> |
|
|
<ft-button :click-handle="debug_cover_elvator_stop"> |
|
|
|
|
|
|
|
|
<ft-button :click-handle="debug_cover_elevator_stop"> |
|
|
停止 |
|
|
停止 |
|
|
</ft-button> |
|
|
</ft-button> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|