Browse Source

调试接待记录

newStyle
corala 1 year ago
parent
commit
dc16f83658
2 changed files with 8 additions and 10 deletions
  1. +7
    -8
      src/views/ReceivingRecords/index.vue
  2. +1
    -2
      src/views/ReceivingRecords/table.js

+ 7
- 8
src/views/ReceivingRecords/index.vue View File

@@ -239,7 +239,7 @@
<div class="div-lab">
<div class="label">销讲执行:</div>
<el-select
v-model="searchForm.fraction"
v-model="searchForm.fractions"
class="div-inp"
clearable
filterable
@@ -254,7 +254,7 @@
<div class="div-lab">
<div class="label">需求挖掘:</div>
<el-select
v-model="searchForm.wordFraction"
v-model="searchForm.wordFractions"
class="div-inp"
clearable
filterable
@@ -269,7 +269,7 @@
<div class="div-lab">
<div class="label">挖掘话术:</div>
<el-select
v-model="searchForm.question"
v-model="searchForm.questionId"
clearable
filterable
placeholder="请选择"
@@ -562,8 +562,8 @@ export default {
marketingBusiness: [],
invalidReason: "",
question: "",
wordFraction: "",
fraction: "",
wordFractions: "",
fractions: "",
},
rec_index_show: false, // 按钮权限
rec_rewrite_show: false, // 重新转写-按钮权限
@@ -848,7 +848,7 @@ export default {
this.$api.api.findbypage(obj).then((res) => {
// 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() {


+ 1
- 2
src/views/ReceivingRecords/table.js View File

@@ -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}%`
}


Loading…
Cancel
Save