_table.blade.php 942 B

123456789101112131415161718192021222324252627
  1. <table class="table table-striped table-sm table-hover" id="table">
  2. <thead>
  3. <tr>
  4. <td>序号</td>
  5. <td>名称</td>
  6. <td>图片</td>
  7. <td>操作</td>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. <template v-for="(item,i) in images">
  12. <tr @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
  13. <td>@{{ i+1 }}</td>
  14. <td>@{{ item.name }}</td>
  15. <td>
  16. <img :src="imgPrefix+item.file.url+'.'+item.file.type" :alt="item.name" :id="'img'+item.id" :onload="setImageStyle(item)" >
  17. </td>
  18. <td>
  19. <button class="btn btn-sm btn-primary" @click="edit(item,i)">编辑</button>
  20. <button class="btn btn-sm btn-danger " style="opacity: 0.9" @click="destroy(item.id,i)">删除</button>
  21. </td>
  22. </tr>
  23. </template>
  24. </tbody>
  25. </table>
  26. {{ $printPartImages->links() }}