12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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,
- })
- },
- }
- })
|