12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- // pages/Components/lessonsList/lessonsList.js
- Component({
- lifetimes: {
- attached: function() {
- // 在组件实例进入页面节点树时执行
- },
- detached: function() {
- // 在组件实例被从页面节点树移除时执行
- },
- },
- /**
- * 组件的属性列表
- */
- properties: {
- list:{
- type: Array,
- value:[]
- },
- showBtn:{
- type: Boolean,
- value: true,
- },
- showDate:{
- type: Boolean,
- value: true,
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- toPages:function(e){
- wx.navigateTo({
- url: e.currentTarget.dataset.url,
- })
- },
- }
- })
|