mdns.wxml 778 B

1234567891011121314151617181920212223
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container page" data-weui-theme="{{theme}}">
  4. <template is="head" data="{{title: 'mDNS'}}"/>
  5. <view class="page-body">
  6. <view class="page-section">
  7. <button type="primary" bind:tap="startDiscovery">
  8. 开始搜索 mDNS
  9. </button>
  10. <button type="primary" bind:tap="stopDiscovery">
  11. 停止搜索 mDNS
  12. </button>
  13. <view>
  14. <view wx:for="{{serviceList}}" wx:key="{{index}}" class='row'>
  15. <text>设备服务名:{{item.serviceName}}</text>
  16. <text>ip地址:{{item.ip}}:{{item.port}}</text>
  17. <text>当前服务类型:{{item.serviceType}}</text>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>