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
26
| // pages/mUser/pInstructions/pInstructions.js
| import $f from "../../../service/baserequest"
|
| Page({
|
| /**
| * 页面的初始数据
| */
| data: {
| instruction: {
| picPath: [
| $f.baseIconUrl + 'instructions-1.png',
| $f.baseIconUrl + 'instructions-2.png',
| $f.baseIconUrl + 'instructions-3.png',
| $f.baseIconUrl + 'instructions-4.png',
| ],
| }
| },
|
| /**
| * 生命周期函数--监听页面加载
| */
| onLoad(options) {
|
| },
| })
|
|