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!

关于PPT蒙版,很多人肯定对它很陌生,一般人做PPT不会将它吃透,而是凑活着可以做出来自己喜欢的就行,所以很多人都不知道PPT蒙版到底是什么意思,也不知道这个蒙版有什么作用,甚至更不知道它可以让图片变得不再那么单调,想要学习的小伙伴们快来了学习学习,为你的PPT图片上添上点吧PPT蒙版吧,让它不再单调了。那么,PPT蒙版要怎么添上呢?请往下看。1.首先我们打开PPT,选择一张空白的图片,之后右键点击【设置背景格式】,纯色选择颜色就行。2.点击【插入】,艺术字,输入字3.点击【插入】,点击【形状】

C++模板特化影响函数重载和重写:函数重载:特化版本可提供特定类型不同的实现,从而影响编译器选择调用的函数。函数重写:派生类中的特化版本将覆盖基类中的模板函数,影响派生类对象调用函数时的行为。

您是否知道使用模板可以提高记笔记的速度以及捕捉重要想法的效率?OneNote有一套现成的模板供您使用。最好的部分是您还可以根据需要设计模板。无论您是学生、企业战士还是从事创造性工作的自由职业者。OneNote模板可用于以适合您风格的结构和格式记录重要笔记。模板可以是记笔记过程的大纲。业余爱好者只是做笔记,专业人士则在模板的帮助下通过结构良好的笔记做笔记并从中汲取联系。让我们看看如何在OneNote中使用模板。使用默认OneNote模板第1步:按键盘上的Windows+R。键入Oneno

PHP电子邮件模板:定制化和个性化您的邮件内容随着电子邮件的普及和广泛应用,传统的邮件模板已经不能满足人们对个性化和定制化邮件内容的需求。现在,我们可以通过使用PHP编程语言来创建定制化和个性化的电子邮件模板。本文将为您介绍如何使用PHP来实现这一目标,并提供一些具体的代码示例。一、创建邮件模板首先,我们需要创建一个基本的邮件模板。这个模板可以是一个HTM

yii2去掉jquery的方法:1、编辑AppAsset.php文件,注释掉变量$depends里的“yii\web\YiiAsset”值;2、编辑main.php文件,在字段“components”下面添加配置为“'yii\web\JqueryAsset' => ['js' => [],'sourcePath' => null,],”即可去掉jquery脚本。

Flask-Bootstrap:为Flask应用程序添加模板Flask是一个轻量级的PythonWeb框架,它提供了一个简单而灵活的方式来构建Web应用程序。它是一款非常受欢迎的框架,但它的默认模板功能有限。要创建富有吸引力的用户界面,需使用其他框架或库。这就是Flask-Bootstrap的用武之地。Flask-Bootstrap是一个基于Twitter

C++是一门广泛应用于各个领域的编程语言,其模板元编程是一种高级编程技术,可让程序员在编译时对类型和数值进行变换。在C++中,模板元编程是一个广泛讨论的话题,因此在面试中,与此相关的问题也是相当常见的。以下是一些可能会被问到的C++中的模板元编程面试常见问题。什么是模板元编程?模板元编程是一种在编译时操作类型和数值的技术。它使用模板和元函数来根据类型和值生成

Vue中如何实现图片的模板和蒙版处理?在Vue中,我们经常需要对图片进行一些特殊的处理,例如添加模板效果或者加上蒙版。本文将介绍如何使用Vue实现这两种图片处理效果。一、图片模板处理在使用Vue处理图片时,我们可以利用CSS的filter属性来实现模板效果。filter属性给元素添加图形效果,其中的brightness滤镜可以改变图片的亮度。我们可以通过改变


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
