| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <a-card
- title="功能介绍"
- >
- <a-row :gutter="[8, 8]" justify="space-between" >
- <a-col :xs='24' :sm="24" :md='16' :lg="16" :xl="14" >
- 在物联网平台中,某一类具有相同能力或特征的设备的合集被称为一款产品。
- 如果您希望使用平台查看设备上报的数据信息,并对设备进行管理控制,就需要开发产品模型(Profile)。定义Profile,使平台理解该款设备支持的属性、命令等信息。根据产品的接入协议、数据格式等可能还需要您定义其他相关的内容 了解更多
- </a-col>
- <a-col :xs='24' :sm="24" :md='8' :lg="8" :xl="8" >
- <img style="width: 100%" :src="staticImg.productIntroduction" alt="">
- </a-col>
- </a-row>
- </a-card>
- </template>
- <script setup lang="ts" >
- import ModelController from '@/controller/iot/model'
- import { useStaticImg } from '@/utils/static'
- const staticImg = useStaticImg()
- ModelController.page().then(r => {
- console.log(r)
- })
- </script>
- <style>
- </style>
|