1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\admin\controller\example;
- use app\common\controller\Backend;
- /**
- * 多表格示例
- *
- * @icon fa fa-table
- * @remark 当一个页面上存在多个Bootstrap-table时该如何控制按钮和表格
- */
- class Multitable extends Backend
- {
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- }
- /**
- * 查看
- */
- public function index()
- {
- return $this->view->fetch();
- }
- }
|