_table.blade.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <table class="table table-sm table-striped table-bordered table-hover card-body p-0 m-0">
  2. <tr class="text-center">
  3. <th>序号</th>
  4. <th>装卸队名称</th>
  5. <th>创建时间</th>
  6. <th>操作</th>
  7. </tr>
  8. <template v-if="facilitators.length > 0">
  9. <tr v-for="(facilitator,index) in facilitators" class="text-center" @click="selectTr===index+1?selectTr=0:selectTr=index+1" :class="selectTr===index+1?'focusing' : ''">
  10. <td>@{{ index+1 }}</td>
  11. <td>@{{ facilitator.name }}</td>
  12. <td>@{{ facilitator.created_at }}</td>
  13. <td>
  14. @can('装卸队-编辑')
  15. <button class="btn btn-sm btn-outline-primary" @click="showUpDateModal(true,index,facilitator)">编辑
  16. @endcan
  17. </button>
  18. @can('装卸队-删除')
  19. <button class="btn btn-sm btn-outline-danger" @click="destroyFacilitator(facilitator,index)">删除</button>
  20. @endcan
  21. </td>
  22. </tr>
  23. </template>
  24. <template v-else>
  25. <tr>
  26. <td colspan="4">
  27. <div class="alert alert-info text-lg-center">
  28. 装卸队数据为空
  29. </div>
  30. </td>
  31. </tr>
  32. </template>
  33. </table>