table.wxml 451 B

1234567891011
  1. <!--myComponents/table/table.wxml-->
  2. <view class="table-box">
  3. <view class="table">
  4. <view class="tr">
  5. <view class="th" wx:for="{{thead}}" wx:key="index">{{item.name}}</view>
  6. </view>
  7. <view class="tr" wx:for="{{data}}" wx:for-item="row" wx:key="index">
  8. <view class="td" wx:for="{{thead}}" bindtap="onclick" data-row="{{row}}" wx:key="index">{{row[item.key]}}</view>
  9. </view>
  10. </view>
  11. </view>