|
|
@@ -67,12 +67,12 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="username" fixed label="业务员名称" width="170"></el-table-column>
|
|
|
- <el-table-column prop="policyCount" label="待付手续费" width="100"></el-table-column>
|
|
|
- <el-table-column prop="sumpremium" label="已付手续费" width="100"></el-table-column>
|
|
|
- <el-table-column prop="superviseCostsPremiums" label="手续费合计" width="100"></el-table-column>
|
|
|
- <el-table-column prop="otherCostsPremiums" label="待付分销费" width="100"></el-table-column>
|
|
|
- <el-table-column prop="sumCostsPremiums" label="已付分销费" width="100"></el-table-column>
|
|
|
- <el-table-column prop="sumCostsPremiums" label="分销费合计" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="waitPayCostsPremiums" label="待付手续费" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="paidCostsPremiums" label="已付手续费" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="sumCostsPremiums" label="手续费合计" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="waitPayRetailPremiums" label="待付分销费" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="paidRetailPremiums" label="已付分销费" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="sumRetailPremiums" label="分销费合计" width="100"></el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="primary" size="small" @click="exportListExcel(scope.row)">本行清单导出</el-button>
|
|
|
@@ -314,7 +314,7 @@
|
|
|
queryListForm.deptId=obj.institutionId;
|
|
|
queryListForm.teamCode=obj.deptId;
|
|
|
queryListForm.userId=obj.userId;
|
|
|
- this.$api.report.exportOrderAndCostListData(queryListForm).then(res=>{
|
|
|
+ this.$api.report.exportPayApplyUserReporttListData(queryListForm).then(res=>{
|
|
|
let url = process.env.BASE_URL+'/upload/'+res.data // 3.创建一个临时的url指向blob对象
|
|
|
// 4.创建url之后可以模拟对此文件对象的一系列操作,例如:预览、下载
|
|
|
let a = document.createElement("a");
|