forked from nsjcy/frontEnd/nsjcy

LAPTOP-RI7D261L\Mr Ke
2020-02-13 a2789abb73725738127b03d95c95081b66954916
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// pages/flcx/flcx.js
const app = getApp();
 
Page({
 
  /**
   * 页面的初始数据
   */
  data: {
    CustomBar: app.globalData.CustomBar,
    wordList: ['标签', '标签', '标签', '标签', '标签', '标签', '标签', '标签', '标签'],
    items: [...new Array(20)].map((n, i) => ({
      title: `Pull down ${i}`,
      content: 'Wux Weapp'
    }))
  },
 
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
 
  }
 
})