| 123456789101112131415161718192021222324252627 |
- <table class="table table-striped table-sm table-hover" id="table">
- <thead>
- <tr>
- <td>序号</td>
- <td>名称</td>
- <td>图片</td>
- <td>操作</td>
- </tr>
- </thead>
- <tbody>
- <template v-for="(item,i) in images">
- <tr @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
- <td>@{{ i+1 }}</td>
- <td>@{{ item.name }}</td>
- <td>
- <img :src="imgPrefix+item.file.url+'.'+item.file.type" :alt="item.name" :id="'img'+item.id" :onload="setImageStyle(item)" >
- </td>
- <td>
- <button class="btn btn-sm btn-primary" @click="edit(item,i)">编辑</button>
- <button class="btn btn-sm btn-danger " style="opacity: 0.9" @click="destroy(item.id,i)">删除</button>
- </td>
- </tr>
- </template>
- </tbody>
- </table>
- {{ $printPartImages->links() }}
|