| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- <template>
- <a-row>
- <a-col :span="13">
- <a-card title="调试输出" style="background-color: #eef0f5;">
- <template #extra >
- <a-button type="primary" @click="clearLog" >清空日志</a-button>
- </template>
- <a-row>
- <a-col :span="6" class="app-imitate" >应用模拟器</a-col>
- <a-col :span="3" class="app-to-platform" >
- <div class="equipment-platform" >
- <div class="border-dot-top">命令下发</div>
- <div class="border-dot-bottom">数据上报</div>
- </div>
- </a-col>
- <a-col :span="6" class="IOT" >IOT平台</a-col>
- <a-col :span="3" class="app-to-platform" >
- <div class="equipment-platform" >
- <div class="border-dot-top">命令下发</div>
- <div class="border-dot-bottom">数据上报</div>
- </div>
- </a-col>
- <a-col :span="6" class="device-imitate" >真实设备</a-col>
- </a-row>
- <a-row style="height: 505px;width: 100%" justify="space-between" >
- <a-col :span="11" style="height: 100%;background-color: #fff" >
- <div v-for="(item, index) in state.eventList" :key="index" >{{JSON.stringify(item)}}</div>
- </a-col>
- <a-col :span="11" style='background-color: #fff;eight: 100%' ></a-col>
- </a-row>
- </a-card>
- </a-col>
- <a-col :span="9">
- <a-row justify='end' >
- <a-col>
- <a-button type="link" >{{state.device.deviceLabel ? state.device.deviceLabel : "尚未选择设备"}}</a-button>
- <a-button type="primary" @click="state.drawerVisible = true" >选择设备</a-button>
- </a-col>
- </a-row>
- <!-- :tab-list="tabListNoTitle"
- :active-tab-key="state.activeKey"
- @tabChange="onTabChange" -->
- <a-card
- title="应用模拟器"
- style="width: 100%;height: 100%;margin-top: 10px;"
- >
- <a-row :gutter="[8, 8]">
- <a-col span="24" ><a-tag color="blue" style="scale: 1.2;" >命令下发</a-tag></a-col>
- <a-col class="subtitle" span="24" >
- 应用模拟器可根据产品定义向设备下发命令。<br/>
- 若您使用了图形化开发的编解码插件,为获得正确的编码结果,下发命令时,请携带所有在插件中定义的字段,且每个命令的长度需小于512个字节
- </a-col>
- <a-col span="24" v-if="false" >
- <a-form
- :labelCol="{span: 2}"
- :wrapperCol="{span: 14}"
- >
- <a-form-item label="产品" >
- <a-select v-model:value="state.modelId" >
- <a-select-option
- v-for="item in state.modelSouce"
- :key="item.id"
- :value="item.id"
- >
- {{item.modelLabel}}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="命令" >
- <a-select v-model:value="state.cmdId" >
- <a-select-option
- v-for="item in state.modelCmdList"
- :key="item.id"
- :value="item.id"
- >
- {{item.cmdLabel}}
- </a-select-option>
- </a-select>
- </a-form-item>
- <span v-if="cmdDetail?.cmdParams.length" >
- <a-form-item :label="item.paramLabel" v-for="(item, index) in cmdDetail?.cmdParams" :key="item.id" >
- <a-input v-model:value="item.dataUnit" ></a-input>
- </a-form-item>
- </span>
- </a-form>
- </a-col>
- </a-row>
- <template #extra >
- <a-button type="primary" @click="addEventList">发送</a-button>
- </template>
- </a-card>
- </a-col>
- </a-row>
- <a-drawer
- v-model:visible="state.drawerVisible"
- size="large"
- class="custom-class"
- title="选择设备"
- placement="right"
- >
- <SelectDevice ref="selectDeviceRef" />
- <template #footer >
- <a-row justify="end" >
- <a-col>
- <a-space>
- <a-button @click="state.drawerVisible = false">取消</a-button>
- <a-button type="primary" @click="handleSelectDevice">确定</a-button>
- </a-space>
- </a-col>
- </a-row>
- </template>
- </a-drawer>
- </template>
- <script lang='ts' setup >
- import { computed, onMounted, reactive, ref, watch } from 'vue'
- import SelectDevice from '@/pages/iot/rule/components/selectDevice.vue'
- import { message } from 'ant-design-vue'
- import { DeviceContriller, EventController, ModelCmdController, ModelController } from '@/controller'
- import { useRoute } from 'vue-router'
- import dayjs from 'dayjs'
- import { useScheduler } from '@/hooks'
- const route = useRoute()
- const tabListNoTitle = [
- {
- key: 'app',
- tab: '应用模拟器'
- }
- // {
- // key: 'device',
- // tab: '设备模拟器'
- // }
- ]
- const selectDeviceRef = ref()
- const state = reactive<{
- activeKey: 'app',
- drawerVisible: boolean,
- modelSouce: IOT.API.MODEL.Model[],
- modelId: string,
- cmdId: string,
- modelCmdList: IOT.API.CMD.Cmd[],
- eventList: any,
- startTime: number,
- lastId: string
- device: {
- id: string
- deviceLabel: string
- }
- }>({
- activeKey: 'app',
- drawerVisible: false,
- modelSouce: [],
- modelId: '',
- cmdId: '',
- modelCmdList: [],
- eventList: [],
- startTime: new Date().getTime(),
- lastId: '',
- device: {
- id: '1',
- deviceLabel: ''
- }
- })
- watch(() => state.modelId, () => getModelCmdList())
- const cmdDetail = computed(() => {
- const detail = state.modelCmdList.find(item => item.id === state.cmdId)
- return detail
- })
- const clearLog = () => {
- state.eventList = []
- message.success('清除成功')
- }
- const handleSelectDevice = () => {
- const _device = selectDeviceRef.value.getSelectDevice()
- if (_device) {
- state.device = _device
- state.drawerVisible = false
- } else {
- message.warn('请选择产品')
- }
- }
- const getModelCmdList = async () => {
- const { data } = await ModelCmdController.list({ modelId: state.modelId })
- state.modelCmdList = data
- }
- const getEventList = async () => {
- const { data, sum } = await EventController.list({ deviceId: state.device.id, startTime: state.startTime, lastId: state.lastId })
- state.eventList.push(data)
- }
- const { start, stop } = useScheduler(getEventList, 2000)
- const getEventTraceList = async () => {
- const data = await EventController.listTrace({ deviceId: state.device.id }) as unknown as Number
- // state.formatStartTime = data ? dayjs(data).format('YYYY-MM-DD hh:mm:ss') : ''
- start()
- }
- const addEventList = async () => {
- stop()
- await EventController.addTrace({ deviceId: state.device.id })
- getEventTraceList()
- }
- const getDeviceById = async () => {
- const data = await DeviceContriller.byId(state.device.id)
- state.device = data
- }
- onMounted(() => {
- // const deviceId = route.query.id as string
- const deviceId = 1
- if (deviceId) {
- state.device.id = deviceId
- getDeviceById()
- }
- })
- </script>
- <style lang='less' scoped >
- @import "~@/styles/theme.less";
- .subtitle {
- font-size: 12px;
- color: @label-color;
- }
- .app-imitate {
- width: 250px;
- height: 80px;
- background-color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 20px;
- }
- .IOT {
- width: 250px;
- height: 64px;
- background-color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 20px;
- }
- .app-to-platform {
- height: 100%;
- // width: 12.5%;
- // float: left;
- // height: 100%;
- }
- .device-imitate {
- width: 250px;
- height: 80px;
- background-color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 20px;
- }
- .equipment-platform {
- position: absolute;
- display: inline-block;
- vertical-align: middle;
- width: 100%;
- line-height: 1;
- color: #4d4d4d;
- text-align: center;
- font-size: 12px;
- .border-dot-top {
- position: relative;
- padding-bottom: 0.6rem;
- margin-bottom: 1rem;
- border-bottom: 2px #999 solid;
- }
- .border-dot-top::before {
- left: 0;
- top: 100%;
- margin-top: -0.15rem;
- content: "";
- display: block;
- width: 0.4rem;
- height: 0.4rem;
- border-radius: 0.2rem;
- border: 2px #999 solid;
- background-color: #ebedf0;
- position: absolute;
- }
- .border-dot-top::after {
- content: "";
- display: block;
- border: 4px #999 solid;
- width: 0;
- height: 0;
- transform: rotate(45deg);
- position: absolute;
- right: 0;
- top: 97%;
- margin-top: -0.15rem;
- border-color: #999 #999 transparent transparent;
- }
- .border-dot-bottom {
- border-color: #ccc;
- position: relative;
- padding-top: 0.6rem;
- border-top: 2px #999 dashed;
- }
- .border-dot-bottom::before {
- content: "";
- display: block;
- border: 4px #999 solid;
- width: 0;
- height: 0;
- transform: rotate(-135deg);
- position: absolute;
- top: -11%;
- margin-top: -0.15rem;
- border-color: #999 #999 transparent transparent;
- }
- .border-dot-bottom::after {
- right: 0;
- top: -1px;
- margin-top: -0.15rem;
- content: "";
- display: block;
- width: 0.4rem;
- height: 0.4rem;
- border-radius: 0.2rem;
- border: 2px #999 solid;
- background-color: #ebedf0;
- position: absolute;
- }
- }
- </style>
|