You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
use yii\helpers\Html; use iron\grid\GridView;
/* @var $this yii\web\View */ /* @var $searchModel common\models\searchs\SupplierSearch */ /* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = '供应商管理'; $this->params['breadcrumbs'][] = $this->title; ?>
<div class="row"> <div class="col-12"> <?= GridView::widget([ 'dataProvider' => $dataProvider, 'filter' => $this->render("_search", ['model' => $searchModel]), 'batch' => [ [ "label" => "删除", "url" => "supplier/deletes" ], ], 'columns' => $columns ]); ?>
</div> </div>
|