From a14cd5f04cd170dd01a97325aeb925699a9248ee Mon Sep 17 00:00:00 2001 From: kevin jiang Date: Sun, 17 May 2020 12:49:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=BA=97=E5=9D=87=E6=8B=93?= =?UTF-8?q?=E5=AE=A2=E6=95=B0=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseDataCompany.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages/shop/IncreaseDataCompany.vue b/src/pages/shop/IncreaseDataCompany.vue index 69ab396..95abd80 100644 --- a/src/pages/shop/IncreaseDataCompany.vue +++ b/src/pages/shop/IncreaseDataCompany.vue @@ -130,6 +130,10 @@ { title: '拉黑率(累计)', key: 'delRate' + }, + { + title: '店均拓客数', + key: 'avgStoreCustomer' } ], data1: [], @@ -254,9 +258,9 @@ let title = "零售公司推广情况" + that.selectDate[0] + '-' + that.selectDate[1]; require.ensure([], () => { const {export_json_to_excel} = require('../../excel/Export2Excel'); - const tHeader = ['序号', '零售公司名称', '总好友数', '总好友数(去重)', '新增好友数', '新增好友数(去重)', '日增好友平均', '日增好友平均(去重)', '删除/拉黑成员客户数(累计)', '拉黑率(累计)']; + const tHeader = ['序号', '零售公司名称', '总好友数', '总好友数(去重)', '新增好友数', '新增好友数(去重)', '日增好友平均', '日增好友平均(去重)', '删除/拉黑成员客户数(累计)', '拉黑率(累计)', '店均拓客数']; // 属性名 - const filterVal = ['index', 'retailCompany', 'allCustomer', 'effectiveCustomer', 'newCustomer', 'newEffectiveCustomer', 'avgNewCustomer', 'avgNewEffectiveCustomer', 'delCustomer', 'delRate']; + const filterVal = ['index', 'retailCompany', 'allCustomer', 'effectiveCustomer', 'newCustomer', 'newEffectiveCustomer', 'avgNewCustomer', 'avgNewEffectiveCustomer', 'delCustomer', 'delRate', 'avgStoreCustomer']; // 数据 //把data里的tableData存到list const data = that.formatJson(filterVal, originAllData);