|
|
|
@ -80,12 +80,12 @@ |
|
|
|
|
// 刷新列表数据 |
|
|
|
|
this.list = [] |
|
|
|
|
this.page = 1; |
|
|
|
|
app.getList(app.user_type) |
|
|
|
|
app.getList() |
|
|
|
|
}, |
|
|
|
|
searchhandle() { |
|
|
|
|
this.list = [] |
|
|
|
|
this.page = 1; |
|
|
|
|
this.getList(this.user_type) |
|
|
|
|
this.getList() |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
async getList() { |
|
|
|
@ -143,18 +143,18 @@ |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad(option) { |
|
|
|
|
this.title = option.title |
|
|
|
|
this.title = option.type==1?'会员管理':'分销管理' |
|
|
|
|
this.type = option.type |
|
|
|
|
uni.setNavigationBarTitle({ |
|
|
|
|
title: this.title |
|
|
|
|
}); |
|
|
|
|
this.list = [] |
|
|
|
|
this.getList(this.user_type) |
|
|
|
|
this.getList() |
|
|
|
|
}, |
|
|
|
|
onReachBottom() { |
|
|
|
|
if (this.list.length < this.total) { |
|
|
|
|
this.page++; |
|
|
|
|
this.getList(this.user_type) |
|
|
|
|
this.getList() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|