94 lines
4.6 KiB
PHP
Executable File
94 lines
4.6 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @Author: fm453
|
|
* @Date: 2018-11-23 12:17:02
|
|
* @Last Modified by: fm453
|
|
* @Last Modified time: 2020-09-12 21:21:50
|
|
* @Email: fm453@lukegzs.com
|
|
*/
|
|
|
|
use yii\helpers\Html;
|
|
use yii\bootstrap\ActiveForm;
|
|
use yii\helpers\Url;
|
|
use yii\widgets\LinkPager;
|
|
|
|
$this->title = '轿车品牌列表';
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
|
|
?>
|
|
<div class="wrapper wrapper-content">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="ibox float-e-margins">
|
|
<div class="ibox-content">
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<a class="btn btn-info btn-sm" href="<?= Url::toRoute('carbrand/new')?>">新增品牌</a>
|
|
</div>
|
|
<div class="col-sm-3 pull-right">
|
|
<form action="<?=Url::current(['pid' => Yii::$app->session->get('pid')], false);?>" method="post">
|
|
<input type="hidden" name="_csrf-backend" value="<?= Yii::$app->getRequest()->getCsrfToken();?>" />
|
|
<div class="input-group">
|
|
<input class="input-sm form-control" type="text" placeholder="请输入品牌名" name="title" value="<?=$search['title']?>">
|
|
<span class="input-group-btn">
|
|
<button type="submit" class="btn btn-sm btn-primary"> 搜索</button>
|
|
</span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>序号</th>
|
|
<th>品牌</th>
|
|
<th>状态</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php foreach($brands as $vo):?>
|
|
<tr>
|
|
<td><?=$vo['id']?></td>
|
|
<td><?=$vo['title']?></td>
|
|
<td>
|
|
<?php if($vo['status_code']==1){?>
|
|
<label class="btn btn-info btn-xs"><?=isset($status[$vo['status_code']]) ? $status[$vo['status_code']] : '未知'?></label>
|
|
<?php }else{?>
|
|
<label class="btn btn-default btn-xs"><?=isset($status[$vo['status_code']]) ? $status[$vo['status_code']] : '未知'?></label>
|
|
<?php }?>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
<a class="btn btn-primary btn-xs" href="<?=Url::toRoute(['carbrand/ajax','id'=>$vo['id'],'do'=>'show'])?>" mini="ajax">显示</a>
|
|
<a class="btn btn-default btn-xs" href="<?=Url::toRoute(['carbrand/ajax','id'=>$vo['id'],'do'=>'hide'])?>" mini="ajax">隐藏</a>
|
|
</p>
|
|
<a class="btn btn-primary btn-xs" href="<?=Url::toRoute(['carbrand/edit','id'=>$vo['id']])?>"><i class="fa fa-edit"></i>编辑</a>
|
|
<a title="点击将删除" href="<?=Url::toRoute(['carbrand/delete','id'=>$vo['id']])?>" class="btn btn-xs btn-danger" mini="act"><i class="fa fa-trash bigger-120"></i>删除</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<!--分页-->
|
|
<div class="f-r">
|
|
<?= LinkPager::widget([
|
|
'pagination'=>$pager,
|
|
'firstPageLabel' => '首页',
|
|
'nextPageLabel' => '下一页',
|
|
'prevPageLabel' => '上一页',
|
|
'lastPageLabel' => '末页',
|
|
]) ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|