没有合适的资源?快使用搜索试试~ 我知道了~
首页微信小程序实现的绘制table表格功能示例
微信小程序实现的绘制table表格功能示例
1.5k 浏览量
更新于2023-05-27
评论
收藏 25KB PDF 举报
本文实例讲述了微信小程序实现的绘制table表格功能。分享给大家供大家参考,具体如下: 表格的绘制 js Page({ data:{ infeed:[', 1周, 2周, 3周, 总计], endwise1: 游泳, tb1:0, tb2:0, tb3:0, tb4:0, endwise2: 跑步, tc1:0, tc2:0, tc3:0, tc4:0, endwise3: 健身, td1:0, td2:0, td3:0, td4:0, } }) wxml <view class=tle> <view
资源详情
资源评论
资源推荐

微信小程序实现的绘制微信小程序实现的绘制table表格功能示例表格功能示例
本文实例讲述了微信小程序实现的绘制table表格功能。分享给大家供大家参考,具体如下:
表格的绘制
js
Page({
data:{
infeed:['"", "1周", "2周", "3周", "总计"],
endwise1: "游泳",
tb1:"0",
tb2:"0",
tb3:"0",
tb4:"0",
endwise2: "跑步",
tc1:"0",
tc2:"0",
tc3:"0",
tc4:"0",
endwise3: "健身",
td1:"0",
td2:"0",
td3:"0",
td4:"0",
}
})
wxml
<view class="tle">
<view class="ae by-c">
<block wx:for="{{infeed}}" wx:key="*this">
<view class="dd">{{item}}</view>
</block>
</view>
<block >
<view class="ae by-w " >
<view class="wc a-y">{{endwise1}}</view>
<view class="wc">{{tb1}}</view>
<view class="wc">{{tb2}}</view>
<view class="wc">{{tb3}}</view>
<view class="wc">{{tb4}}</view>
</view>
<view class="ae by-w" >
<view class="wc a-y">{{endwise2}}</view>
<view class="wc">{{tc1}}</view>
<view class="wc">{{tc2}}</view>
<view class="wc">{{tc3}}</view>
<view class="wc">{{tc4}}</view>
</view>
<view class="ae by-w" >
<view class="wc a-yellow">{{endwise3}}</view>
<view class="wc">{{td1}}</view>
<view class="wc">{{td2}}</view>
<view class="wc">{{td3}}</view>
<view class="wc">{{td4}}</view>
</view>
</block>
</view>
wxss
.tle {
border-top: 1px solid #ebc450;
margin: 20rpx 0;
border-left: 1px solid #c9c9c9;
}
.ae {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
text-align: center;
}










安全验证
文档复制为VIP权益,开通VIP直接复制

评论0