12345678910111213141516171819202122232425262728293031323334353637383940 |
- // pages/annunciate/annunciateList/index.js
- Component({
- options: {
- addGlobalClass: true
- },
- /**
- * 组件的属性列表
- */
- properties: {
- list: {
- type: Array
- },
- ftype: {
- type: Number,
- value: 0
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- /* 跳转详情 */
- toDetails(e) {
- const {
- index
- } = e.currentTarget.dataset;
- wx.navigateTo({
- url: '/pages/annunciate/details?id=' + this.data.list[index].tnoticeid + '&type=' + this.data.ftype,
- })
- },
- }
- })
|