1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- const _Http = getApp().globalData.http;
- Component({
- properties: {
- },
- data: {
- "sa_projectid": null,
- "content": {
- "nocache": true,
- "pageNumber": 1,
- "pageTotal": 1,
- "pageSize": 20,
- "total": null,
- "where": {
- "condition": "",
- "type": 4
- }
- },
- },
- methods: {
- /* 获取地址列表 */
- getList(id, init) {
- let content = this.data.content;
- content.where.sa_projectid = id;
- if (init) {
- content.pageNumber = 1
- content.pageTotal = 1
- }
- _Http.basic({
- "id": "20220920083901",
- content
- }).then(res => {
- console.log("关联客户列表", res)
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- this.getTags(res.data.map(v => v.sa_customersid));
- this.setData({
- list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
- "content.pageNumber": res.pageNumber + 1,
- "content.pageSize": res.pageSize,
- "content.pageTotal": res.pageTotal,
- "content.total": res.total,
- sa_projectid: id
- })
- })
- },
- /* 获取列表标签 */
- getTags(ownerids = []) {
- _Http.basic({
- "id": 20221018102001,
- "content": {
- "ownertable": "sa_customers",
- ownerids
- }
- }).then(res => {
- console.log("标签", res)
- let list = this.data.list;
- for (let key in res.data) {
- let index = list.findIndex(v => v.sa_customersid == key);
- list[index].tags = res.data[key]
- };
- this.setData({
- list
- })
- })
- },
- }
- })
|