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) {
|
| }
|
| })
|
|