|
@@ -6,7 +6,7 @@
|
|
|
<th class="" colspan="5">支出信息</th>
|
|
<th class="" colspan="5">支出信息</th>
|
|
|
<th class="td-yellow" colspan="3">其他信息</th>
|
|
<th class="td-yellow" colspan="3">其他信息</th>
|
|
|
</tr>
|
|
</tr>
|
|
|
- <tr class="text-center">
|
|
|
|
|
|
|
+ <tr class="text-center" >
|
|
|
<th><input type="checkbox" class="form-check" name="selectAll" id="selectAll" @click="checkAll"/></th>
|
|
<th><input type="checkbox" class="form-check" name="selectAll" id="selectAll" @click="checkAll"/></th>
|
|
|
<th class="td-helpful">序号</th>
|
|
<th class="td-helpful">序号</th>
|
|
|
<th class="td-helpful">日期</th>
|
|
<th class="td-helpful">日期</th>
|
|
@@ -26,7 +26,7 @@
|
|
|
<th class="td-yellow">支出备注</th>
|
|
<th class="td-yellow">支出备注</th>
|
|
|
</tr>
|
|
</tr>
|
|
|
<template v-if="dischargeStatements.length > 0">
|
|
<template v-if="dischargeStatements.length > 0">
|
|
|
- <tr v-for="(dischargeTask,index) in dischargeStatements" class="text-center">
|
|
|
|
|
|
|
+ <tr v-for="(dischargeTask,index) in dischargeStatements" class="text-center" @click="selectTr===index+1?selectTr=0:selectTr=index+1" :class="selectTr===index+1?'focusing' : ''">
|
|
|
<td ><input type="checkbox" class="form-check" :value="dischargeTask.id" v-model="checkData"></td>
|
|
<td ><input type="checkbox" class="form-check" :value="dischargeTask.id" v-model="checkData"></td>
|
|
|
<td class="td-helpful">@{{ index+1 }}</td>
|
|
<td class="td-helpful">@{{ index+1 }}</td>
|
|
|
<td class="td-helpful">@{{ dischargeTask.created_at }}</td>
|
|
<td class="td-helpful">@{{ dischargeTask.created_at }}</td>
|