|
@@ -15,18 +15,17 @@
|
|
<div class="left">
|
|
<div class="left">
|
|
<table class="table-form">
|
|
<table class="table-form">
|
|
<tr>
|
|
<tr>
|
|
- <td class="white"></td>
|
|
|
|
<td class="white" v-for="(item, index) in tableData.datels" :key="index">{{item}}</td>
|
|
<td class="white" v-for="(item, index) in tableData.datels" :key="index">{{item}}</td>
|
|
</tr>
|
|
</tr>
|
|
<tr v-for="(item, index) in tableData.result" :key="index">
|
|
<tr v-for="(item, index) in tableData.result" :key="index">
|
|
- <td class="white">{{item.value1}}</td>
|
|
|
|
- <td class="white">{{item.value2}}</td>
|
|
|
|
- <td class="white">{{item.value3}}</td>
|
|
|
|
- <td class="white">{{item.value4}}</td>
|
|
|
|
- <td class="white">{{item.value5}}</td>
|
|
|
|
- <td class="white">{{item.value6}}</td>
|
|
|
|
- <td class="white">{{item.value7}}</td>
|
|
|
|
- <td class="white">{{item.value8}}</td>
|
|
|
|
|
|
+ <td class="white" v-if="item.value1">{{item.value1}}</td>
|
|
|
|
+ <td class="white" v-if="item.value2">{{item.value2}}</td>
|
|
|
|
+ <td class="white" v-if="item.value3">{{item.value3}}</td>
|
|
|
|
+ <td class="white" v-if="item.value4">{{item.value4}}</td>
|
|
|
|
+ <td class="white" v-if="item.value5">{{item.value5}}</td>
|
|
|
|
+ <td class="white" v-if="item.value6">{{item.value6}}</td>
|
|
|
|
+ <td class="white" v-if="item.value7">{{item.value7}}</td>
|
|
|
|
+ <td class="white" v-if="item.value8">{{item.value8}}</td>
|
|
</tr>
|
|
</tr>
|
|
</table>
|
|
</table>
|
|
</div>
|
|
</div>
|