|
|
@@ -1074,6 +1074,8 @@
|
|
|
<el-table size="small" :data="HistoryList" height="250" border style="width: 100%" v-loading="loading"
|
|
|
:header-cell-style="{ background: '#F2F7FC', fontWeight: '700', color: '#ee7000' }" highlight-current-row>
|
|
|
<el-table-column prop="inscompany" label="保险公司" align="center"></el-table-column>
|
|
|
+ <el-table-column prop="username" label="业务员" align="center"></el-table-column>
|
|
|
+ <el-table-column prop="userid" label="工号" align="center"></el-table-column>
|
|
|
<el-table-column prop="licenseno" label="车牌号" align="center"></el-table-column>
|
|
|
<el-table-column prop="createtime" label="报价时间" align="center"></el-table-column>
|
|
|
<el-table-column prop="jqpremium" label="交强险" align="center"></el-table-column>
|
|
|
@@ -1089,7 +1091,7 @@
|
|
|
<el-tag v-if="scope.row.orderstatus == '4'" type="danger" size="small">核保退回</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" align="center" min-width="200" fixed="right">
|
|
|
+ <el-table-column label="操作" align="center" min-width="100" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" size="small" @click="qoutedetail(scope.row.id)">查看详情</el-button>
|
|
|
<el-button size="small" type="text" style="color:rgb(240, 12, 10)"
|
|
|
@@ -3404,6 +3406,10 @@ export default {
|
|
|
orderStatus: ""
|
|
|
};
|
|
|
this.$api.letter.queryQuoteHistory(params).then(res => {
|
|
|
+ res.data.forEach(item => {
|
|
|
+ item.userid = this.paramsEdit.userid
|
|
|
+ item.username = this.paramsEdit.username
|
|
|
+ })
|
|
|
this.HistoryList = res.data;
|
|
|
});
|
|
|
|
|
|
@@ -3765,6 +3771,10 @@ export default {
|
|
|
orderStatus: e!==888?e:''
|
|
|
};
|
|
|
this.$api.letter.queryQuoteHistory(params).then(res => {
|
|
|
+ res.data.forEach(item => {
|
|
|
+ item.userid = this.paramsEdit.userid
|
|
|
+ item.username = this.paramsEdit.username
|
|
|
+ })
|
|
|
this.HistoryList = res.data;
|
|
|
});
|
|
|
},
|
|
|
@@ -4254,6 +4264,10 @@ export default {
|
|
|
orderStatus: ""
|
|
|
};
|
|
|
this.$api.letter.queryQuoteHistory(params).then(res => {
|
|
|
+ res.data.forEach(item => {
|
|
|
+ item.userid = this.paramsEdit.userid
|
|
|
+ item.username = this.paramsEdit.username
|
|
|
+ })
|
|
|
this.HistoryList = res.data;
|
|
|
});
|
|
|
},
|