diff --git a/src/views/ReceivingRecords/index.vue b/src/views/ReceivingRecords/index.vue index 386d55b..825a21c 100644 --- a/src/views/ReceivingRecords/index.vue +++ b/src/views/ReceivingRecords/index.vue @@ -239,7 +239,7 @@
销讲执行:
需求挖掘:
挖掘话术:
{ // console.log(res); if (res.code == 0) { - this.tableData = res.data.records; + this.tableData = res.data.records||[]; this.page.total = res.data.total; // 表格中设置ref属性,在数据渲染之后或者updated()之后 this.$nextTick(() => { @@ -871,7 +871,7 @@ export default { houseType: "", dateType: null, taboo: "", - question: "", + questionId: "", fraction: "", wordFraction: "", marketingBusiness: [], @@ -909,7 +909,6 @@ export default { }, screen() { this.page.currentPage = 1; - console.log(this.searchForm); this.findbypage(); }, findKeywords() { diff --git a/src/views/ReceivingRecords/table.js b/src/views/ReceivingRecords/table.js index 8350109..dbcb782 100644 --- a/src/views/ReceivingRecords/table.js +++ b/src/views/ReceivingRecords/table.js @@ -108,13 +108,12 @@ export default { sortable: true, label: "画像标签触达次数", prop: "total", - width: '150px', }, { sortable: true, label: "执行率", - prop: "total", + prop: "fraction", formatter: data => { return `${data.fraction || 0}%` }