Commit cb3913dc authored by 黄奎's avatar 黄奎
parents 5ed41b7a 7b2f8f9d
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
} }
.LeaderPrintDiv { .LeaderPrintDiv {
width: 100%; width: 100%;
background: #f8f8f8;
position: absolute; position: absolute;
} }
.LeaderPrintDiv .childDiv { .LeaderPrintDiv .childDiv {
...@@ -93,7 +94,7 @@ input[type="number"] { ...@@ -93,7 +94,7 @@ input[type="number"] {
</style> </style>
<template> <template>
<div class="LeaderPrintDiv" > <div class="LeaderPrintDiv">
<div class="childDiv"> <div class="childDiv">
<table border="0" cellspacing="1" class="leaderPayTable"> <table border="0" cellspacing="1" class="leaderPayTable">
<tr> <tr>
...@@ -182,15 +183,17 @@ input[type="number"] { ...@@ -182,15 +183,17 @@ input[type="number"] {
<table border="0" cellspacing="1" class="leaderPayTable leaderPayTable2"> <table border="0" cellspacing="1" class="leaderPayTable leaderPayTable2">
<tr> <tr>
<th colspan="5" class="bgwhite">车辆使用</th> <th colspan="4" class="bgwhite">车辆使用</th>
</tr> </tr>
<tr> <tr>
<th width="">使用日期</th>
<th width="">高速公路费</th> <th width="">高速公路费</th>
<!-- <th width="">预计总金额</th>--> <!-- <th width="">预计总金额</th>-->
<th width="">实付金额</th> <th width="">实付金额</th>
<th width="">备注</th> <th width="">备注</th>
</tr> </tr>
<tr v-for='(item,index) in list.BusList'> <tr v-for='(item,index) in list.BusList'>
<td>{{item.PlanDateStr}}</td>
<td> <td>
{{item.HighSpeedPrice >= 0 && item.HighSpeedPrice !== null && item.HighSpeedPayType > 0 ? (item.HighSpeedPayType === 1 ? moneyFormat(item.HighSpeedPrice) : 0) : ''}} {{item.HighSpeedPrice >= 0 && item.HighSpeedPrice !== null && item.HighSpeedPayType > 0 ? (item.HighSpeedPayType === 1 ? moneyFormat(item.HighSpeedPrice) : 0) : ''}}
</td> </td>
......
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