| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- use common\services\xhCommonService;
- ?>
- <div class="page-title">
- <div class="title-env">
- <h1 class="title">帐号申请</h1>
- </div>
- <div class="breadcrumb-env">
- <ol class="breadcrumb bc-1">
- <li>
- <a href="/"><i class="fa-home"></i>Home</a>
- </li>
- <li>
- <a href="javascript:void(0)">商家管理</a>
- </li>
- <li class="active">
- <strong>帐号申请</strong>
- </li>
- </ol>
- </div>
- </div>
- <div class="panel panel-default">
- <div class="panel-body">
- <div class="dataTables_wrapper form-inline dt-bootstrap no-footer">
-
- <div class="table-responsive">
- <table class="table table-bordered table-striped table-hover" >
- <thead>
- <tr class="active">
- <th class="no-sorting hidden-xs"><input type="checkbox"></th>
- <th class="hidden-xs">编号</th>
- <th>名称</th>
- <th>邮箱</th>
- <th>电话</th>
- <th>执照</th>
- <th>身份证</th>
- <th>银行卡</th>
- <th>座机</th>
- <th>时间</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody class="middle-align">
- <?php if(!empty($models)){ foreach($models as $key => $val){ ?>
- <tr>
- <td class="hidden-xs"><input type="checkbox"></td>
- <td class="hidden-xs"><?= $val['id'] ?></td>
- <td class="hidden-xs"><?= $val['applyName'] ?></td>
- <td class="hidden-xs"><?= $val['email'] ?></td>
- <td class="hidden-xs"><?= $val['mobile'] ?></td>
- <td class="hidden-xs">
- <?php $b = xhCommonService::getImgList($val['businessLicense']); ?>
- <a target="_blank" href="<?= Yii::$app->params['imgUrl'].$b['large'] ?>">
- <img width="30" src="<?= Yii::$app->params['imgUrl'].$b['small'] ?>" />
- </a>
- </td>
- <td class="hidden-xs">
- <?php $idCard = xhCommonService::getImgList($val['idCard']); ?>
- <a target="_blank" href="<?= Yii::$app->params['imgUrl'].$idCard['large'] ?>">
- <img width="30" src="<?= Yii::$app->params['imgUrl'].$idCard['small'] ?>" />
- </a>
- <?php $idCardBack = xhCommonService::getImgList($val['idCardBack']); ?>
- <a target="_blank" href="<?= Yii::$app->params['imgUrl'].$idCardBack['large'] ?>">
- <img width="30" src="<?= Yii::$app->params['imgUrl'].$idCardBack['small'] ?>" />
- </a>
- </td>
- <td class="hidden-xs">
- <?= $val['bankCardNo'] ?>
- <!--
- <?php $bankCard = xhCommonService::getImgList($val['bankCard']); ?>
- <img width="30" src="<?= Yii::$app->params['imgUrl'].$bankCard['small'] ?>" />
- -->
- </td>
- <td class="hidden-xs"><?= $val['telephone'] ?></td>
- <td class="hidden-xs"><?= date("Y-m-d",strtotime($val['createTime'])) ?></td>
- <td class="hidden-xs"></td>
- </tr>
- <?php } }?>
- </tbody>
- </table>
- </div>
- <div class="row">
- <div>
- <!--
- <div style="display:inline-block;margin-left:15px;">
- <label><select name="example-1_length"
- aria-controls="example-1" class="form-control">
- <option value="0">批量操作</option>
- <option value="1">批量下架</option>
- <option value="2">批量删除</option>
- </select>
- </label>
- <input class="btn btn-secondary btn-single" type="submit" name="" value="确认" />
- </div>
- -->
- <div class="dataTables_paginate paging_simple_numbers" style="float:right;padding-top:0px;margin-right:15px;">
- <?= $paging ?>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- footer -->
- <?php
- use backend\widgets\FooterWidget;
- ?>
- <?= FooterWidget::widget()?>
- <!-- footer -->
|