How to insert a table into a mini program

Release: 2020-04-03 09:30:47
Original
6056 people have browsed it

How to insert a table into a mini program

We can implement the table style through flex layout in the WeChat applet view container view.

Flex is the abbreviation of Flexible Box. As the name suggests, it is "elastic layout" and is used to provide maximum flexibility for boxed models.

Any container can be designated as Flex layout.

table.wxml

  head1 head2 head3    {{item.code}} {{item.text}} {{item.type}}   {{item.code}} {{item.text}} {{item.type}}   
Copy after login

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; }
Copy after login

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') } })
Copy after login

The rendering is as follows

How to insert a table into a mini program

Recommendation: "Mini Program Development Tutorial"

The above is the detailed content of How to insert a table into a mini program. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!