| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | 
							- const _Http = getApp().globalData.http;
 
- Page({
 
- 	data: {
 
- 		loading: true,
 
- 		"content": {
 
- 			"version": 1,
 
- 			nocache: true,
 
- 			"pageNumber": 1,
 
- 			"pageTotal": 1,
 
- 			"where": {
 
- 				"condition": ""
 
- 			},
 
- 			sort: []
 
- 		}
 
- 	},
 
- 	onLoad(options) {
 
- 		this.getList()
 
- 	},
 
- 	/* 处理筛选 */
 
- 	handleFilter({
 
- 		detail
 
- 	}) {
 
- 		console.log(detail)
 
- 	},
 
- 	getList(init = false) {
 
- 		if (init.detail != undefined) init = init.detail;
 
- 		let content = this.data.content;
 
- 		if (init) content.pageNumber = 1;
 
- 		if (content.pageNumber > content.pageTotal) return;
 
- 		_Http.basic({
 
- 			"id": 20220103140003,
 
- 			content
 
- 		}).then(res => {
 
- 			console.log("活动列表", res)
 
- 			this.selectComponent('#ListBox').RefreshToComplete();
 
- 			this.setData({
 
- 				list: res.data,
 
- 				"content.pageNumber": res.pageNumber + 1,
 
- 				"content.pageTotal": res.pageTotal,
 
- 				"content.sort": res.sort,
 
- 				loading: false
 
- 			})
 
- 		})
 
- 	},
 
- 	/* 搜索 */
 
- 	onSearch({
 
- 		detail
 
- 	}) {
 
- 		this.setData({
 
- 			"content.where.condition": detail
 
- 		});
 
- 		this.getList(true)
 
- 	},
 
- 	onReady() {
 
- 		this.setListHeight()
 
- 	},
 
- 	/* 设置页面高度 */
 
- 	setListHeight() {
 
- 		this.selectComponent("#ListBox").setHeight(".division", this);
 
- 	},
 
- })
 
 
  |