| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- const _Http = getApp().globalData.http;
- Page({
- data: {
- content: {
- nocache: true,
- pageNumber: 1,
- pageSize: 20,
- ownertable: "",
- ownerid: "",
- pageTotal: 1,
- total: 0,
- where: {
- "condition": "",
- }
- },
- list: [],
- },
- getList(init = false) {
- const content = this.data.content;
- if (init) content.pageNumber = 1;
- if (content.pageNumber > content.pageTotal) return;
- _Http.basic({
- id: 20240531152004,
- content
- }).then(res => {
- console.log("通讯录列表", res)
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- });
- content.pageNumber = res.pageNumber + 1;
- content.pageTotal = res.pageTotal;
- content.total = res.total;
- this.setData({
- list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
- content
- })
- })
- },
- onLoad(options) {
- this.getList();
- },
- onClick(e) {
- const {
- item
- } = e.currentTarget.dataset;
- getApp().globalData.handleSelect(item)
- },
- onSearch({
- detail
- }) {
- console.log(detail)
- this.setData({
- 'content.where.condition': detail ? detail : ""
- });
- this.getList(true);
- },
- onClear() {
- this.setData({
- 'content.where.condition': ""
- });
- this.getList(true);
- },
- onReachBottom() {
- this.getList();
- },
- })
|