123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // pages/match/index.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- // true是人气榜,false是参赛作品
- currentType: true,
- bannerList: [{
- id: 1,
- url: "https://efunimgs.ai160.com/xyyf/banner/voucher.png"
- }, {
- id: 2,
- url: "https://efunimgs.ai160.com/xyyf/banner/course.png"
- }, {
- id: 3,
- url: "https://efunimgs.ai160.com/xyyf/banner/video.png"
- }, {
- id: 4,
- url: "https://efunimgs.ai160.com/xyyf/banner/topic.png"
- }]
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- },
- bannelEvent() {},
- selectType({
- target
- }) {
- if (target.dataset.type) {
- this.setData({
- currentType: JSON.parse(target.dataset.type)
- })
- }
- },
- onShareAppMessage() {
- }
- })
|