Guest User

Untitled

a guest
Jul 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <table v-if="this.itemList.length > 0">
  2. <thead class="ui-table-header-row">
  3. <tr>
  4. <th class="ui-table-header-cell l-padding"></th>
  5. <th class="ui-table-header-cell center" v-for="item in 31" :key="item.id">{{thisMonth}} 月{{ item }}日</th>
  6. <th class="ui-table-header-cell green-item">合計</th>
  7. </tr>
  8. </thead>
  9. <template>
  10. <tr>
  11. <td></td>
  12. </tr>
  13. <tbody style="border-bottom:#dbb100 1px" v-for="(item,index) in itemList" :key="index.id" >
  14. <tr class="left-align">
  15. <td>{{item.name}}</td>
  16. <td v-for="(item,index) in costList" :key="index.id">{{item.total_work}}</td>
  17. </tr>
  18. </tbody>
  19. </template>
  20. </table>
Add Comment
Please, Sign In to add comment