| 123456789101112131415161718192021 |
- <page>
- <view style="margin-left:10rpx;margin-right:10rpx; font-size: 26rpx;color:#426666;">
- 原始报文:
- </view>
- <view style="margin-left:10rpx;margin-right:10rpx;">
- <text class="datagram-hex-box">{{datagram}}</text>
- </view>
- <view class="list-container">
- <scroll-view scroll-y="true" class='scroll-box'>
- <view class='scroll-list'>
- <block wx:for="{{datagramInfo}}" wx:for-item="item" wx:key="index">
- <view style="margin-top:20rpx">
- <text class="text-name">{{item.name}} </text>
- <text class="text-value">{{item.text}}</text>
- </view>
- </block>
- </view>
- </scroll-view>
- </view>
- </page>
|