mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-06-12 10:00:57 +08:00
99 lines
2.4 KiB
JavaScript
99 lines
2.4 KiB
JavaScript
const context = require('../../context/Java110Context.js');
|
|
|
|
const constant = context.constant;
|
|
|
|
Page({
|
|
data: {
|
|
tableData: [],
|
|
page: 1,
|
|
totalPage: 0,
|
|
loading: false,
|
|
communityId: "",
|
|
ownerId: ""
|
|
},
|
|
onLoad: function() {
|
|
let that = this;
|
|
context.getOwner(function(_owner) {
|
|
console.log(_owner.communityId,99999999);
|
|
that.setData({
|
|
communityId: _owner.communityId,
|
|
ownerId: _owner.memberId
|
|
})
|
|
that.getTable(1);
|
|
})
|
|
},
|
|
|
|
onShow: function() {
|
|
let that = this;
|
|
context.getOwner(function (_owner) {
|
|
console.log(_owner);
|
|
that.setData({
|
|
communityId: _owner.communityId,
|
|
ownerId: _owner.memberId
|
|
})
|
|
that.getTable(1);
|
|
})
|
|
},
|
|
getTable: function(page, override) {
|
|
let that = this;
|
|
this.setData({
|
|
loading: true
|
|
})
|
|
return this.request({
|
|
"ownerId": that.data.communityId,
|
|
"communityId": that.data.ownerId
|
|
// "page": page,
|
|
// "row": 10
|
|
}).then(res => {
|
|
that.setData({
|
|
tableData: override ? res.data.owners : this.data.tableData.concat(res.data.owners),
|
|
totalPage: res.data.records,
|
|
page: page,
|
|
loading: false
|
|
})
|
|
})
|
|
},
|
|
goAdd: function(e) {
|
|
wx.navigateTo({
|
|
url: "/pages/family/family"
|
|
})
|
|
},
|
|
gotoDetail: function(e) {
|
|
wx.navigateTo({
|
|
url: "/pages/repairList/detail/detail?item=" + JSON.stringify(e.currentTarget.dataset.item)
|
|
})
|
|
},
|
|
onPullDownRefresh: function() {
|
|
// 上拉刷新
|
|
if (!this.data.loading) {
|
|
this.getTable(1, true).then(() => {
|
|
// 处理完成后,终止下拉刷新
|
|
wx.stopPullDownRefresh()
|
|
})
|
|
}
|
|
},
|
|
onReachBottom: function() {
|
|
console.log(1, !this.data.loading, this.data.page < this.data.totalPage);
|
|
// 下拉触底,先判断是否有请求正在进行中
|
|
// 以及检查当前请求页数是不是小于数据总页数,如符合条件,则发送请求
|
|
if (!this.data.loading && this.data.page < this.data.totalPage) {
|
|
this.getTable(this.data.page + 1)
|
|
}
|
|
},
|
|
//封装请求
|
|
request: function(data) {
|
|
return new Promise((resolve, reject) => {
|
|
wx.request({
|
|
url: constant.url.queryOwnerMembers,
|
|
header: context.getHeaders(),
|
|
method: "GET",
|
|
data: data,
|
|
success: function(res) {
|
|
if (res.statusCode == 200) {
|
|
resolve(res);
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
}) |