Commit e8d796fe authored by 华国豪's avatar 华国豪 🙄

1

parent b1f21174
...@@ -70,6 +70,10 @@ ...@@ -70,6 +70,10 @@
<td height="34px">{{item.EmName}}</td> <td height="34px">{{item.EmName}}</td>
</tr> </tr>
</template> </template>
<tr v-else-if="details&&details.length<1">
<td colspan="9" height="34px" style="text-align: center">暂无数据</td>
</tr>
<template v-else>
<tr v-if="details&&details.length<2"> <tr v-if="details&&details.length<2">
<td height="34px"></td> <td height="34px"></td>
<td height="34px"></td> <td height="34px"></td>
...@@ -103,6 +107,7 @@ ...@@ -103,6 +107,7 @@
<td height="34px"></td> <td height="34px"></td>
<td height="34px"></td> <td height="34px"></td>
</tr> </tr>
</template>
</table> </table>
</div> </div>
</div> </div>
...@@ -134,10 +139,10 @@ export default { ...@@ -134,10 +139,10 @@ export default {
this.loading = true this.loading = true
this.apipost('Financial_post_GetTicketFinanceRelevance', {FrId: this.FrID}, res=>{ this.apipost('Financial_post_GetTicketFinanceRelevance', {FrId: this.FrID}, res=>{
if(res.data.resultCode == 1) { if(res.data.resultCode == 1) {
this.loading = false
let data= res.data.data; let data= res.data.data;
this.details = data; this.details = data;
} }
this.loading = false
}, null) }, null)
} }
} }
......
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