| 12345678910111213141516171819202122232425262728 |
- <table class="table table-striped table-sm table-hover" id="list">
- <tr class="text-center">
- <th>序号</th>
- <th>名称</th>
- <th>值</th>
- <th>描述</th>
- <th>操作员</th>
- <th>创建时间</th>
- <th>修改时间</th>
- <th>操作</th>
- </tr>
- <tr class="text-center" v-for="(configuration,i) in configurations" :key="configuration.id">
- <td>@{{ i+1 }}</td>
- <td>@{{ configuration.name }}</td>
- <td>@{{ configuration.value }}</td>
- <td>@{{ configuration.description }}</td>
- <td>
- <span v-if="configuration.operator">@{{ configuration.operator.name }}</span>
- </td>
- <td>@{{ configuration.created_at }}</td>
- <td>@{{ configuration.updated_at }}</td>
- <td>
- <button type="button" class="btn btn-sm btn-outline-primary" @click="edit(configuration,i)">编辑</button>
- <button type="button" class="btn btn-sm btn-outline-danger" @click="destroy(configuration.id,i)">删除</button>
- </td>
- </tr>
- </table>
- {{$configurations->links()}}
|