1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import ListPage from '../../../base/ListPage'
| import b_fetch from '../behaviors/b_fetch'
|
| ListPage({
| behaviors: [b_fetch],
| /**
| * 页面的初始数据
| */
| data: {
| //视频类型的文件
| fileType: 4
| },
|
| /**
| * 生命周期函数--监听页面加载
| */
| onLoad(options) {
| this.getResources(1, this.data.fileType)
| },
| })
|
|