首页 > 编程 > JavaScript > 正文

一秒学会微信小程序制作table表格

2019-11-19 12:08:38
字体:
来源:转载
供稿:网友

大家都知道微信小程序自身没有提供表格这个组件,但是今天的项目需求又出现了,所以只能模仿一个了。

效果图:

代码挺简单方便的:

wxml:

 <view class='history-table-wrap'>  <view class="table">   <view class="tr">     <view class="th th1">日期</view>     <view class="th th2">时间</view>     <view class="th th3">伤害</view>   </view>   <view class="tr" wx:for="{{15}}">     <view class="td td1">2018/02/12</view>     <view class="td td2">11:30</view>     <view class="td td3">本次对海煞造成了100000点伤害</view>   </view>  </view> </view>

wxss:

.history-table-wrap{ position: absolute; width: 668rpx; height: 578rpx; left: 50%; margin-left: -334rpx; top: 70rpx; overflow-y: scroll; overflow-x: hidden;}/* 表格代码  */.table{ border:1px solid #dadada; border-right:0; border-bottom: 0; width: 98%; margin-left: 1%;}.tr{ width:100%; display: flex; justify-content: space-between;}.th,.td{ padding: 10px; border-bottom: 1px solid #dadada; border-right: 1px solid #dadada; text-align: center; width: 100%;}.th1,.th2,.td1,.td2{ width: 40%;}.th{ font-weight: 800; background-color: #b66242; font-size: 28rpx; color: #330e0e;}.td{ font-size: 20rpx; color: #ec9480;}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表