|
|
@ -70,8 +70,10 @@ import { useSealStore, useWebSocketStore } from '@/store' |
|
|
|
import { |
|
|
|
AirInletProportionalValve_setStateJSON, |
|
|
|
AirOutletProportionalValve_setStateJSON, |
|
|
|
airInletProportionalValve_getStateJSON, |
|
|
|
AirOutletProportionalValve_getStateJSON, |
|
|
|
} from '@/mock/command' |
|
|
|
import { ref } from 'vue' |
|
|
|
import { ref, onMounted } from 'vue' |
|
|
|
|
|
|
|
const activeTab = ref('1') |
|
|
|
const sealStore = useSealStore() |
|
|
@ -113,6 +115,11 @@ const columns = ref([ |
|
|
|
|
|
|
|
const selectedValuesTop = ref(['0']) |
|
|
|
const selectedValuesBottom = ref(['0']) |
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
webSocketStore.sendCommandMsg(airInletProportionalValve_getStateJSON) |
|
|
|
webSocketStore.sendCommandMsg(AirOutletProportionalValve_getStateJSON) |
|
|
|
}) |
|
|
|
</script> |
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|