国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

微信小程序實現簡易table表格

2019-11-19 12:08:40
字體:
來源:轉載
供稿:網友

本文實例為大家分享了微信小程序實現簡易表格的具體代碼,供大家參考,具體內容如下

由于需要開發小程序,前端又是自己弄,類似table的標簽也沒有,后來看到小程序文檔中推薦使用flex布局,就把css中的flex布局學了一遍,效果還行,大家將就看一下

table.wxml

<view class="table"> <view class="tr bg-w"> <view class="th">head1</view> <view class="th">head2</view> <view class="th ">head3</view> </view> <block wx:for="{{listData}}" wx:key="{[code]}"> <view class="tr bg-g" wx:if="{{index % 2 == 0}}">  <view class="td">{{item.code}}</view>  <view class="td">{{item.text}}</view>  <view class="td">{{item.type}}</view> </view> <view class="tr" wx:else>  <view class="td">{{item.code}}</view>  <view class="td">{{item.text}}</view>  <view class="td">{{item.type}}</view> </view> </block></view>

table.wxss

.table { border: 0px solid darkgray;}.tr { display: flex; width: 100%; justify-content: center; height: 3rem; align-items: center;}.td { width:40%; justify-content: center; text-align: center;}.bg-w{ background: snow;}.bg-g{ background: #E6F3F9;}.th { width: 40%; justify-content: center; background: #3366FF; color: #fff; display: flex; height: 3rem; align-items: center;}

table.js

Page({ data: { listData:[  {"code":"01","text":"text1","type":"type1"},  {"code":"02","text":"text2","type":"type2"},  {"code":"03","text":"text3","type":"type3"},  {"code":"04","text":"text4","type":"type4"},  {"code":"05","text":"text5","type":"type5"},  {"code":"06","text":"text6","type":"type6"},  {"code":"07","text":"text7","type":"type7"} ] }, onLoad: function () { console.log('onLoad')  }})

效果圖如下

其實這也是很簡單flex布局,更復雜的布局就交給大家了

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 通海县| 和田市| 安康市| 张家界市| 江津市| 大同县| 贵定县| 彩票| 托克逊县| 安国市| 嘉祥县| 永康市| 浙江省| 巫溪县| 将乐县| 六枝特区| 东阿县| 宜川县| 怀安县| 临夏市| 汶上县| 南丰县| 内乡县| 萨嘎县| 武城县| 湖州市| 邹平县| 安义县| 阜阳市| 洛南县| 郴州市| 南乐县| 葵青区| 漳平市| 华阴市| 舒城县| 桦甸市| 博白县| 汪清县| 麦盖提县| 沧州市|