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

85 lines
3.7 KiB
PHP
Executable File

<?php
/**
* @Author: fm453
* @Date: 2018-11-23 12:17:02
* @Last Modified by: fm453
* @Last Modified time: 2020-12-13 10:26:02
* @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('weituoren/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="search[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>
<th><a class="btn btn-primary btn-xs" onclick="parent.selectWeituoren('','','','','<?=$callback?>');">全选</a></th>
</tr>
</thead>
<tbody>
<?php foreach($weituorens as $vo):?>
<tr>
<td><?=$vo['id']?></td>
<td><?=$vo['company']?></td>
<td><?=$vo['name']?></td>
<td><?=$vo['mobile']?></td>
<td>
<a class="btn btn-primary btn-xs" onclick="parent.selectWeituoren('<?=$vo['company']?>','<?=$vo['name']?>','<?=$vo['mobile']?>','<?=$vo['id']?>','<?=$callback?>');">选择</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>