| 1234567891011121314151617181920212223242526272829 |
- <!--pages/index/showBoxDetail/showBoxDetail.wxml-->
- <import src="../statusInfo/statusInfoTemplate.wxml" />
- <import src="../baseInfo/baseInfoTemplate.wxml" />
- <import src="../datagramInfo/datagramInfoTemplate.wxml" />
- <page>
- <view class="showBoxDetailContainer">
- <view style="height: 120rpx;">
- <tab id="tab" items="{{items}}" bind:itemtap="onItemtap" theme="smallBar"></tab>
- </view>
- <view class="tab-content">
- <block wx:if="{{statusView}}">
- <template is="statusInfoTemplate" data="{{...statusInfo}}" />
- </block>
- <block wx:if="{{datagramView}}">
- <template is="datagramInfoTemplate" data="{{...datagramInfo}}" />
- </block>
- <block wx:if="{{baseView}}">
- <template is="baseInfoTemplate" data="{{...baseInfo}}" />
- </block>
-
- </view>
- </view>
- <!-- <view class="publish_button_box {{publish_button_state==true?'pulish_button_show':''}} {{publish_button_state==false?'pulish_button_hide':''}}">
- <view class='publish_button' bindtap="takePhoto">
- <image src='/images/setting.png'></image>
- </view>
- </view> -->
- </page>
|