2025-04-10 23:19:13 +08:00

87 lines
4.7 KiB
PHP
Executable File

<?php
/* @var $this yii\web\View */
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('create')?>">新增运维</a>
</div>
<div class="col-sm-3 pull-right">
<form action="<?=Url::toRoute('list')?>" method="post">
<input type="hidden" name="_csrf-backend" value="<?= Yii::$app->getRequest()->getCsrfToken();?>" />
<div class="input-group">
<input type="text" placeholder="请输入用户名或账号" name="search[username]" class="input-sm form-control" value="<?= isset($search['username'])?$search['username']:''; ?>"> <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>
<th>手机</th>
<th>用户组</th>
<th>状态</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<?php foreach($user as $vo){?>
<tr>
<td><?=$vo['id']?></td>
<td><img src="<?=Url::to($vo['avatar'])?>" alt="" style="width:40px;height:40px;"><?=$vo['username']?></td>
<td><?=$vo['nickname']?></td>
<td><?=$vo['email']?></td>
<td><?=$vo['mobile']?></td>
<td><?=isset($vo['usergroup']['item_name'])?$vo['usergroup']['item_name']:'未知'?></td>
<td><?=$status[$vo['status']]['title']?></td>
<td><?php if(isset($vo['usergroup']['item_name'])):?>
<a class="btn btn-primary btn-xs" href="<?=Url::toRoute(['update','item_name'=>$vo['usergroup']['item_name'],'id'=>$vo['id']])?>"><i class="fa fa-edit"></i>编辑</a>
<?php if($vo['status']==0):?><a href="<?=Url::toRoute(['status','status'=>10,'id'=>$vo['id']])?>" class="btn btn-warning btn-xs"><i class="fa fa-unlock"></i>启用</a><?php endif;?>
<?php if($vo['status']==10):?><a href="<?=Url::toRoute(['status','status'=>0,'id'=>$vo['id']])?>" class="btn btn-danger btn-xs"><i class="fa fa-lock"></i>禁用</a><?php endif;?>
<?php if(!in_array($vo['username'],array('fm453','admin'))):?><a href="<?=Url::toRoute(['delete','id'=>$vo['id']])?>" class="btn btn-default btn-xs"><i class="fa fa-close"></i>删除</a><?php endif;?></td>
<?php else:?>
该用户已删除,如需要需,<br>先联系站长启用后并重新分配权限方可使用
<?php endif;?>
</tr>
<?php };?>
</tbody>
</table>
<!--分页-->
<div class="f-r">
<?= LinkPager::widget([
'pagination'=>$pages,
'firstPageLabel' => '首页',
'nextPageLabel' => '下一页',
'prevPageLabel' => '上一页',
'lastPageLabel' => '末页',
]) ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>