修改表格样式

This commit is contained in:
jlw
2020-05-13 14:00:10 +08:00
parent 8d5995676c
commit 01c09b06ff

View File

@@ -12,6 +12,7 @@
</tr> </tr>
<tr v-for="(item,index) in reportList" :key="index"> <tr v-for="(item,index) in reportList" :key="index">
<td v-if="item.manageComName != null">{{item.manageComName}}</td> <td v-if="item.manageComName != null">{{item.manageComName}}</td>
<td v-else-if="item.riskName !=null">{{item.riskName}}</td>
<td v-else>{{item.sellTypeName}}</td> <td v-else>{{item.sellTypeName}}</td>
<td>{{item.preItems}}</td> <td>{{item.preItems}}</td>
<td>{{item.prePrem}}</td> <td>{{item.prePrem}}</td>
@@ -65,7 +66,8 @@ export default {
}, },
mounted() { mounted() {
document.body.style.backgroundColor = '#fff' document.body.style.backgroundColor = '#fff'
this.reportList = JSON.parse(localStorage.reportList) // this.reportList = JSON.parse(localStorage.reportList)
this.reportList = this.reportList2
if (localStorage.title == '团险') { if (localStorage.title == '团险') {
this.title = '健康险' this.title = '健康险'
} else if (localStorage.title == '银代') { } else if (localStorage.title == '银代') {
@@ -143,6 +145,7 @@ export default {
.fixed-l { .fixed-l {
background-color: #ffffff; background-color: #ffffff;
width: 100px; width: 100px;
} }
.fixed-l th:nth-child(1), .fixed-l th:nth-child(1),
.fixed-l th:nth-child(2), .fixed-l th:nth-child(2),