| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- const _Http = getApp().globalData.http,
- currency = require("../../utils/currency"),
- CNY = (value, symbol = "¥", precision = 2) => currency(value, {
- symbol,
- precision
- }).format();
- Component({
- options: {
- addGlobalClass: true
- },
- lifetimes: {
- attached: function () {
- getApp().globalData.Language.getLanguagePackage(this)
- }
- },
- properties: {
- },
- data: {
- dateType: "本年",
- showList: false,
- list: [],
- "isAll": 1,
- "content": {
- "nocache": true,
- "pageNumber": 1,
- "pageTotal": 1,
- "total": null,
- "where": {
- begdate: "",
- enddate: "",
- }
- },
- followSize: 0,
- },
- methods: {
- getList(id, init) {
- let content = this.data.content;
- content.sys_phonebookid = id;
- content.dateType = this.data.dateType || '自定义';
- if (init) {
- content.pageNumber = 1;
- content.total = null;
- }
- if (!this.data.showList && content.total != null) return;
- if (content.pageNumber > content.pageTotal) return;
- _Http.basic({
- "id": 20240605124904,
- content
- }).then(res => {
- console.log("联系人客户列表", res)
- if (res.code != '1') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- content.pageNumber = res.pageNumber + 1;
- content.pageSize = res.pageSize;
- content.pageTotal = res.pageTotal;
- content.total = res.total;
- res.data = res.data.map(v => {
- v.tradingamount = CNY(v.tradingamount);
- return v
- })
- this.setData({
- list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
- content,
- id: id,
- });
- this.selectComponent("#TimeRange").onCancel()
- })
- },
- upDateList() {
- let content = JSON.parse(JSON.stringify(this.data.content));
- try {
- content.sys_phonebookid = this.data.id;
- content.dateType = this.data.dateType || '自定义';
- content.pageSize = (content.pageNumber - 1) * content.pageSize;
- content.pageNumber = 1;
- } catch (error) {
- console.log("error", error)
- }
- _Http.basic({
- id: '20240605124904',
- content
- }).then(res => {
- console.log("更新联系人客户列表", res);
- if (res.code == '1') {
- res.data = res.data.map(v => {
- v.tradingamount = CNY(v.tradingamount);
- return v
- })
- page.setData({
- list: res.data,
- "content.total": res.total
- })
- }
- })
- },
- changeDate({
- detail
- }) {
- this.setData({
- dateType: detail.dateType,
- "content.where.begdate": detail.begdate || "",
- "content.where.enddate": detail.enddate || ""
- })
- this.getList(this.data.id, true)
- },
- shrinkChange({
- detail
- }) {
- this.setData({
- showList: detail
- })
- },
- viewInstructions() {
- getApp().globalData.Language.modeBoxPrompts('关联客户的成交率=有成交的关联客户数:关联的客户总数x100%')
- }
- }
- })
|