You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tobacco/bs-ui/src/views/task-distribut/components/ReviewConclusionRules.vue

60 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div style="width: 100%;">
<div>1.高额业务定义</div>
<el-table :data="tableData" border stripe size="mini"
style="min-width: 600px;" header-cell-class-name="my-header-cell" cell-class-name="my-cell">
<el-table-column prop="xzzl" label="险种类别" align="center"></el-table-column>
<el-table-column prop="dzbf" label="单张保额(万元)" align="center"></el-table-column>
<el-table-column prop="zbf" label="总保额(万元)" align="center"></el-table-column>
<el-table-column prop="dzbh" label="单张保费(万元)" align="center"></el-table-column>
</el-table>
<div>总保费=年交保费*交费期</div>
<div>2.高端客户业务定义投保人或被保险人为公司评定的四星及以上VIP客户</div>
<div>3.精英销售人员业务定义五星销售人员每年度根据核保星级营销员评级调整</div>
</div>
</template>
<script>
export default {
name: 'ReviewConclusionRules',
data() {
return {
tableData: [
{
xzzl: '寿险',
dzbf: '10',
zbf: '100',
dzbh: '-'
},
{
xzzl: '重疾险',
dzbf: '-',
zbf: '-',
dzbh: '100'
},
{
xzzl: '年金、两全险',
dzbf: '20',
zbf: '100',
dzbh: '-'
},
],
}
}
}
</script>
<style lang="scss">
.my-header-cell {
padding: 5px 0 !important;
.cell {
font-size: 12px !important;
}
}
.my-cell {
padding: 5px 0 !important;
.cell {
font-size: 12px !important;
}
}
</style>