datagramDetailInfo.wxml 630 B

123456789101112131415161718192021
  1. <page>
  2. <view style="margin-left:10rpx;margin-right:10rpx; font-size: 26rpx;color:#426666;">
  3. 原始报文:
  4. </view>
  5. <view style="margin-left:10rpx;margin-right:10rpx;">
  6. <text class="datagram-hex-box">{{datagram}}</text>
  7. </view>
  8. <view class="list-container">
  9. <scroll-view scroll-y="true" class='scroll-box'>
  10. <view class='scroll-list'>
  11. <block wx:for="{{datagramInfo}}" wx:for-item="item" wx:key="index">
  12. <view style="margin-top:20rpx">
  13. <text class="text-name">{{item.name}} </text>
  14. <text class="text-value">{{item.text}}</text>
  15. </view>
  16. </block>
  17. </view>
  18. </scroll-view>
  19. </view>
  20. </page>