123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- @extends('layouts.admin.app')
- @section('plug-css')
- <link href="{{ asset('js/bootstrap-table/dist/bootstrap-table.css') }}" rel="stylesheet">
- @endsection
- @section('crumbs')
- <ol class="breadcrumb crumbs">
- <li><a href="{{ route('admin.index') }}#">后台导航</a></li>
- <li><a href="{{ route('admin.blockInfo.index') }}">后台BlockInfo首页</a></li>
- <li class="active">BlockInfo列表</li>
- </ol>
- @endsection
- @section('content')
- <form id="searchForm" class="form-inline">
- <div class="">
- <div class="form-group">
- <label for="name" class="label-css"> ID:</label>
- <input class="form-control" type="text" name="id">
- </div>
-   
- <button type="button" class="btn btn-primary">查询</button>
- </div>
- </form>
- <hr class="hr-css">
- <div>
- <div id="toolbar">
- <div class="columns columns-left btn-group pull-left">
- <a class="createForm" data-url="{{ route('admin.blockInfo.store') }}" data-title="create">
- <button class="btn btn-default" type="button">
- <span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 新增BlockInfo
- </button>
- </a>
- <a>
- <button id="deleteAll" data-url="{{ route('admin.blockInfo.destroys',['is_del'=>1]) }}" class="btn btn-default" type="button">
- <span class="glyphicon glyphicon-trash" aria-hidden="true"></span> 删除
- </button>
- </a>
- </div>
- </div>
- <table id="ContentTable"></table>
- </div>
- @endsection
- @section('plug-js')
- <script src="{{ asset('js/bootstrap-table/dist/bootstrap-table.js') }}"></script>
- <script src="{{ asset('js/bootstrap-table/dist/locale/bootstrap-table-zh-CN.js') }}"></script>
- <script src="{{ asset('js/jquery-validation1.16/dist/jquery.validate.min.js') }}"></script>
- <script src="{{ asset('js/jquery-validation1.16/dist/additional-methods.min.js') }}"></script>
- <script src="{{ asset('js/jquery-validation1.16/src/localization/messages_zh.js') }}"></script>
- @endsection
- @section('scripts')
- <script>
- $(function(){
- BootStrapInit.init('tableBlockInfo','ContentTable',{
- searchForm: 'searchForm', // 表单搜索id 省略默认 'searchForm'
- url: "{{ route('admin.blockInfo.ajax.index') }}",
- method: 'post',
- toolbar: '#toolbar',
- idField: '', // 指定主键列
- uniqueId: "id", // 这里需要指定当前查询表唯一主键字段
- columns: [
- {
- checkbox: true,
- align: 'center',
- valign: 'middle'
- },
- {
- field: 'id',
- title: 'ID',
- align: 'center',
- valign: 'middle',
- sortable: true
- },
- {
- field: 'image',
- title: 'Image',
- align: 'center',
- valign: 'middle',
- formatter:thumbFormatter
- },
- // {
- // field: 'link',
- // title: '链接',
- // align: 'center',
- // valign: 'middle'
- // },
- {
- field: 'status',
- title: '显示',
- align: 'center',
- valign: 'middle',
- sortable: true,
- formatter:yesOrNo,
- bool_data:{
- 'class' : 'cursor',
- // 'url' : 'javascript:;',
- 'table' : 'blockInfos'
- // 'pk' : 'id' // 主键名称不写默认id主键
- }
- },
- {
- field: 'sort',
- title: '排序',
- align: 'center',
- valign: 'middle',
- sortable: true,
- formatter:inputData,
- input_data: {
- // 'class' : 'cursor', // 当前样式
- // 'url' : 'javascript', // url存在 及请求指定地址修改数据
- 'table' : 'blockInfos' // url为空时采用,
- // 'pk' : 'id' // 默认修改主键名称 不写 默认id为主键
- }
- },
- {
- field: 'created_at',
- title: '创建时间',
- align: 'center',
- valign: 'middle',
- sortable: true
- },
- {
- field: 'updated_at',
- title: '更新时间',
- align: 'center',
- valign: 'middle',
- sortable: true
- },
- {
- pkId: 'id', // 当前主键id 兼容排序 field='id' 默认值id
- title: '操作',
- align: 'center',
- valign: 'middle',
- width: '185px',
- formatter:operateFormatter,
- btn_group:[
- {
- 'name' : '编辑',
- 'class' : 'btn-primary createForm',
- 'url' : 'javascript:;',
- 'confirm_url': '{{ route('admin.blockInfo.edit', ['id'=>'-val-'])}}'
- },
- {
- 'name' : '删除',
- 'class' : 'btn-danger deleteBtn', // class标签 deleteBtn删除 layer弹出框
- 'url' : 'javascript:;',
- 'confirm_url': '{{ route('admin.blockInfo.destroy', ['id'=>'-val-','is_del'=>1])}}' // 选择按钮
- }
- ]
- }
- ]
- });
- });
- </script>
- @endsection
|