| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- const _Http = getApp().globalData.http;
- Page({
- data: {
- active: 0,
- content: {
- sys_enterpriseid: "",
- nocache: true,
- pageNumber: 1,
- pageSize: 20,
- pageTotal: 1,
- total: 0,
- where: {
- "condition": "",
- }
- },
- list: [],
- sa_customersid: 0
- },
- getList(init = false) {
- const content = this.data.content;
- if (init) content.pageNumber = 1;
- if (content.pageNumber > content.pageTotal) return;
- _Http.basic({
- id: this.data.active == 0 ? 20221219161202 : 20221219193002,
- 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
- })
- })
- },
- onChange(e) {
- this.setData({
- active: e.detail.index
- });
- this.getList(true);
- },
- onLoad(options) {
- console.log(options)
- if (options.sys_enterpriseid) this.setData({
- 'content.sys_enterpriseid': options.sys_enterpriseid,
- 'content.ownertable': 'sa_customers',
- 'content.ownerid': options.sa_customersid,
- enterprisename: options.enterprisename,
- sa_customersid: options.sa_customersid
- });
- this.getList();
- },
- /* 默认添加 */
- created() {
- wx.redirectTo({
- url: '/packageA/setclient/modules/contacts/add/index?sys_enterpriseid=' + this.data.content.sys_enterpriseid + "&enterprisename=" + this.data.enterprisename + "&sa_customersid=" + this.data.sa_customersid,
- })
- },
- onClick(e) {
- const {
- item
- } = e.currentTarget.dataset;
- delete(item.tag1)
- wx.redirectTo({
- url: `/packageA/setclient/modules/contacts/add/index?sys_enterpriseid=${this.data.content.sys_enterpriseid}&enterprisename=${this.data.enterprisename}&sa_customersid=${this.data.sa_customersid}&data=${JSON.stringify(item)}`,
- })
- },
- onSearch({
- detail
- }) {
- this.setData({
- 'parems.content.where.condition': detail ? detail : ""
- });
- this.getList(true);
- },
- onClear() {
- this.setData({
- 'parems.content.where.condition': ""
- });
- this.getList(true);
- },
- onReachBottom() {
- this.getList();
- },
- })
|