index.vue 1.0 KB

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