博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序模板嵌套以及相关遍历数据绑定
阅读量:6412 次
发布时间:2019-06-23

本文共 922 字,大约阅读时间需要 3 分钟。

index.wxml:

index.wxss:

@import "/pages/template01/template01.wxss";

index.js

Page({  data: {     demodata:{      demonum:[        {nums:11},        {nums: 22 },        {nums: 33 }      ],      temdemo:{        tem02: [          { numsss: 44 },          { numsss: 55 },          { numsss: 66 }        ]      }     }  }})

 

template01.wxml

template01.wxss

@import "/pages/template02/template02.wxss";.demos{  width: 150px;  height: 150px;  text-align: center;  line-height: 150px;  background-color: #188eee;  color: #fff;  margin-top: 10px;}

 

 

template02.wxml

template02.wxss

.tem02s{  width: 50px;  height: 30px;  background-color:red;  line-height: 30px;  text-align: center;  color: #fff;}

 

页面排版效果图:

转载地址:http://gvdra.baihongyu.com/

你可能感兴趣的文章
Android开源项目README规范
查看>>
asp.net core 教程(五)-配置
查看>>
Spring Bean Scope (作用域)
查看>>
Redis命令操作详解
查看>>
c++ map: 使用struct或者数组做value
查看>>
列表中的陷阱
查看>>
算法-无重复字符的最长子串
查看>>
java.lang.ClassNotFoundException: org.apache.axis2.transport.http.AxisAdminServlet
查看>>
SSL协议详解
查看>>
leetcode-496-Next Greater Element I
查看>>
Android Studio自带的抓图和录像功能
查看>>
教妹学 Java:动态伴侣 Groovy
查看>>
第三周作业
查看>>
对象.原型链,函数.原型对象
查看>>
动态 K th
查看>>
MVC 中引入Jquery文件的几种方法
查看>>
servlet容器开发要点
查看>>
Idea debugger 无法启动-unable to open debugger port , java.net.SocketException "socket closed"
查看>>
100c之54: 说谎族,诚实族和两面族
查看>>
[转载]使用Cufon技术实现Web自定义字体
查看>>