wxml
- <view class="table">
- <view class="tr bg-w">
- <view class="th">张三view>
- <view class="th" style="color: #409eff;">李四view>
- <view class="th ">王五view>
- <view class="th ">赵六view>
- view>
- <block>
- <view class="tr bg-g">
- <view class="td">男view>
- <view class="td" style="color:#409eff">男view>
- <view class="td">女view>
- <view class="td">男view>
- view>
- block>
- view>
wxss:想加其他样式得可以自己+
- .tr {
- display: flex;
- width: 100%;
- justify-content: center;
- height: 3rem;
- align-items: center;
- }
-
- .td {
- width: 40%;
- justify-content: center;
- text-align: center;
- }
-
- .th {
- width: 40%;
- justify-content: center;
- /* color: #fff; */
- display: flex;
- height: 3rem;
- align-items: center;
- font-size: 15px;
- }
总结:有循环的可以自己填写数据