applylist.vue 964 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="content">
  3. <div class="list-unstyled list-inline x-step x-step-x">
  4. <ul>
  5. <li class="active">金融保理列表查看<i class="x-split"></i></li>
  6. </ul>
  7. </div>
  8. <div class="tab">
  9. <table class="table table-striped">
  10. <thead>
  11. <tr>
  12. <th>序号</th>
  13. <th>保理方名称</th>
  14. <th>申请金额</th>
  15. <th>申请时间</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <tr v-for="(item,index) in $store.state.applylist">
  20. <td v-text="index+1"></td>
  21. <td v-text="item.fa_facorpname"></td>
  22. <td v-text="item.fa_appamount"></td>
  23. <td v-text="item.submitTime"></td>
  24. </tr>
  25. </tbody>
  26. </table>
  27. </div>
  28. </div>
  29. </template>
  30. <script>
  31. export default {
  32. fetch({store} ){
  33. return Promise.all([
  34. store.dispatch('findApplyList', { enuu: store.state.option.user.enuu })
  35. ])
  36. }
  37. }
  38. </script>