| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- const _Http = getApp().globalData.http;
- Component({
- properties: {},
- data: {
- list: [],
- sa_projectid: "",
- content: {
- "nacache": true,
- "pageNumber": 1,
- "pageSize": 10,
- "pageTotal": 1,
- "total": null,
- "where": {
- "condition": "",
- }
- },
- },
- lifetimes: {
- attached: function () {
- getApp().globalData.Language.getLanguagePackage(this)
- }
- },
- methods: {
- getList(id, init) {
- let content = this.data.content;
- content.sa_projectid = id;
- if (init) {
- content.pageNumber = 1
- content.pageTotal = 1
- }
- _Http.basic({
- "id": "20221124110002",
- content
- }).then(res => {
- console.log("线索列表", res)
- if (res.code != '1') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- 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
- })
- this.getTags()
- })
- },
- /* 获取列表标签 */
- getTags() {
- let list = this.data.list,
- ownerids = list.map(v => v.sat_orderclueid);
- _Http.basic({
- "id": 20221018102001,
- "content": {
- nocache: true,
- "ownertable": "sat_orderclue",
- ownerids
- }
- }).then(res => {
- console.log("标签", res)
- for (let key in res.data) {
- let index = list.findIndex(v => v.sat_orderclueid == key);
- list[index].tags = res.data[key]
- };
- this.setData({
- list
- })
- })
- },
- }
- })
|