You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.1 KiB

<!--table-->
<block wx:if="{{data.tag === 'table'}}">
<view class="{{data.attr.class}}" width="{{data.attr.width}}" style="{{data.attr.style}}">
<!--thead、tbody、tfoot-->
<block wx:if="{{data.child}}" wx:for="{{data.child}}" wx:for-item="item" wx:key="i">
<view wx:if="{{item.tag}}" class="{{item.attr.class}}">
<!--tr-->
<block wx:if="{{item.child}}" wx:for="{{item.child}}" wx:for-item="item" wx:key="i">
<view wx:if="{{item.tag}}" class="{{item.attr.class}}">
<!--td-->
<block wx:if="{{item.child}}" wx:for="{{item.child}}" wx:for-item="item" wx:key="i">
<view wx:if="{{item.tag}}" class="{{item.attr.class}}" width="{{data.attr.width}}" style="{{data.attr.style}}">
<!--content-->
<decode wx:if="{{item.child}}" nodes="{{item}}"/>
</view>
</block>
</view>
</block>
</view>
</block>
</view>
</block>