Home >PHP Framework >YII >How to introduce other templates into the content template page in yii2
In the view file, such as the view file of user.php.
<?php defined('YII_ENV') or exit('Access Denied'); /** * Created by PhpStorm. * User: Administrator * Date: 2019/8/27 * Time: 11:18 */ use yii\widgets\LinkPager; $urlManager = Yii::$app->urlManager; $this->title = '业务员列表'; $this->params['active_nav_group'] = 2; ?> <div class="panel mb-3"> <div class="panel-header"> <span><?= $this->title ?></span> <ul class="nav nav-right"> <li class="nav-item"> <a class="nav-link" href="<?= $urlManager->createUrl(['mch/salesman/salesman-edit']) ?>">添加业务员</a> </li> </ul> </div> <div class="panel-body"> <table class="table table-bordered bg-white"> <thead> <tr> <th>ID</th> <th>手机</th> <th>姓名</th> <th>绑定用户</th> <th>修改时间</th> <th>操作</th> </tr> </thead> <tbody> <?php foreach ($list as $index => $val) : ?> <tr class="nav-item1"> <td> <span><?= $val['id']?></span> </td> <td><?= $val['mobile'] ?></td> <td><?= $val['truename'] ?></td> <td><?= $val['user_id'];?></td> <td><?= Yii::$app->formatter->asDatetime($val['edittime'],"Y-M-d H:m");?></td> <td> <a class="btn btn-sm btn-primary" href="<?= $urlManager->createUrl(['mch/salesman/salesman-edit', 'id' => $val['id']]) ?>">修改</a> <a class="btn btn-sm btn-danger del" href="<?= $urlManager->createUrl(['mch/salesman/salesman-del', 'id' => $val['id']]) ?>">删除</a> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php echo $this->render('@app/views/layouts/paginator.php',['pagination'=>$pagination]);?> </div> </div> <script> $(document).on('click', '.nav-item1', function () { if($(this).find(".trans")[0].style.display=='inline-block'){ $(this).find(".trans")[0].style.display='inline'; }else{ $(this).find(".trans")[0].style.display='inline-block'; } $('.bg-'+$(this).index(".nav-item1")).toggle(); }); $(document).on('click', '.del', function () { if (confirm("是否删除该记录,删除后不可恢复?")) { $.ajax({ url: $(this).attr('href'), type: 'get', dataType: 'json', success: function (res) { alert(res.msg); if (res.code == 0) { window.location.reload(); } } }); } return false; }); </script>
(Related tutorial recommendation: yii framework)
Use:
<?php echo $this->render('@app/views/layouts/paginator.php',['pagination'=>$pagination]);?>
for introduction. It should be noted that the output statement is used before render. Echo displays the content of the subtemplate. The parameters are used in the same way as in the action. The @app template variable represents the main folder.
The sub-template code is as follows:
<?php use yii\widgets\LinkPager;?> <div class="text-center"> <nav aria-label="Page navigation example"> <?php echo LinkPager::widget([ 'pagination' => $pagination, 'prevPageLabel' => '上一页', 'nextPageLabel' => '下一页', 'firstPageLabel' => '首页', 'lastPageLabel' => '尾页', 'maxButtonCount' => 5, 'options' => [ 'class' => 'pagination' ], 'prevPageCssClass' => 'page-item', 'pageCssClass' => "page-item", 'nextPageCssClass' => 'page-item', 'firstPageCssClass' => 'page-item', 'lastPageCssClass' => 'page-item', 'linkOptions' => [ 'class' => 'page-link' ], 'disabledListItemSubTagOptions' => [ 'tag' => 'a', 'class' => 'page-link' ] ])?> </nav> <div class="text-muted">共<?= $pagination->totalCount ?>条数据</div> </div>
For more programming-related content, please pay attention to the Programming Tutorial column of the php Chinese website!
The above is the detailed content of How to introduce other templates into the content template page in yii2. For more information, please follow other related articles on the PHP Chinese website!