1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
epp/miniprogram/pages/other/redList2.wxml

22 lines
625 B
Plaintext
Raw Normal View History

2022-11-05 15:28:03 +08:00
<template name="tableTemp">
<view>
<view class="table">
<view class="tr">
<block wx:for="{{title}}" wx:key="{{index}}">
<view class="th left">{{item}}</view>
</block>
</view>
<view class="tr" wx:for="{{contentItem}}" wx:key="index">
<block wx:for="{{item}}" wx:key="index">
<view class="td left">{{item}}</view>
</block>
</view>
</view>
</view>
</template>
<view style="margin-left: 220px;margin-top: 10px;">
<h2>不健康人数: {{count}}</h2>
</view>
<view class="tb1">
<template is="tableTemp" data="{{...tableInfo}}" />
</view>