Commit e052c6e6 authored by zhengke's avatar zhengke

修改

parent 61ae4e05
......@@ -147,14 +147,14 @@
</el-table-column>
</template>
<template v-if="item.label=='合计回单'||item.label=='合计到访'||item.label=='合计转化率'">
<el-table-column :prop="item.prop" :label="item.label" fixed="right" sortable width="70" :key="index">
<el-table-column :prop="item.prop" :label="item.label" fixed="right" sortable width="115" :key="index">
</el-table-column>
</template>
<template v-if="item.SubList&&item.SubList.length>0">
<template v-if="item.label!='合计'">
<el-table-column :label="item.label" width="70" :key="index">
<template v-for="(subItem,subIndex) in item.SubList">
<el-table-column :prop="subItem.prop" :label="subItem.label" width="70" :key="subIndex">
<el-table-column :prop="subItem.prop" :label="subItem.label" sortable width="90" :key="subIndex">
</el-table-column>
</template>
</el-table-column>
......@@ -204,10 +204,7 @@
dateList: [],
dataList: [],
EmployeeList: [],
tableHeader: [{
prop: "EmployeeName",
label: "员工"
}],
tableHeader: [],
tableData: [],
pickerOptions0: {
disabledDate(time) {
......@@ -274,6 +271,10 @@
this.msg.endTime = "";
}
this.tableData = [];
this.tableHeader = [{
prop: "EmployeeName",
label: "员工"
}];
MarketChannelStudentStatic(this.msg).then(res => {
if (res.Code == 1) {
var tempArray = res.Data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment