| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="content">
- <div class="list-unstyled list-inline x-step x-step-x">
- <ul>
- <li class="active">金融保理列表查看<i class="x-split"></i></li>
- </ul>
- </div>
- <div class="tab">
- <table class="table table-striped">
- <thead>
- <tr>
- <th>序号</th>
- <th>保理方名称</th>
- <th>申请金额</th>
- <th>申请时间</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(item,index) in $store.state.applylist">
- <td v-text="index+1"></td>
- <td v-text="item.fa_facorpname"></td>
- <td v-text="item.fa_appamount"></td>
- <td v-text="item.submitTime"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </template>
- <script>
- export default {
- fetch({store} ){
- return Promise.all([
- store.dispatch('findApplyList', { enuu: store.state.option.user.enuu })
- ])
- }
- }
- </script>
|