| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <include file="public@header"/>
- </head>
- <body>
- <div class="wrap js-check-wrap">
- <ul class="nav nav-tabs">
- <li class="active"><a href="javascript:;">人才列表</a></li>
- <li><a href="{:url('add')}">添加人才</a></li>
- </ul>
- <form class="well form-inline margin-top-20" method="post" action="{:url('AdminTalent/index')}">
- 姓名:
- <input type="text" class="form-control" name="name" style="width: 200px;"
- value="{$name|default=''}" placeholder="请输入姓名...">
- 手机号:
- <input type="text" class="form-control" name="mobile" style="width: 200px;"
- value="{$mobile|default=''}" placeholder="请输入手机号...">
- 班次:
- <input type="text" class="form-control" name="shift" style="width: 200px;"
- value="{$shift|default=''}" placeholder="请输入班次...">
- <input type="submit" class="btn btn-primary" value="搜索"/>
- <a class="btn btn-danger" href="{:url('AdminTalent/index')}">清空</a>
- </form>
- <form class="js-ajax-form" action="" method="post">
- <table class="table table-hover table-bordered table-list">
- <thead>
- <tr>
- <th width="100">姓名</th>
- <th width="120">手机号码</th>
- <th width="120">班次</th>
- <th width="120">出发时间</th>
- <th width="120">车票图片</th>
- <th width="120">预约提交时间</th>
- <th width="120">状态</th>
- <th width="120">满意度</th>
- <th>评价内容</th>
- <th width="150">操作</th>
- </tr>
- </thead>
- <foreach name="list" item="vo">
- <tr>
- <td>{$vo.name}</td>
- <td>{$vo.mobile}</td>
- <td>{$vo.shift}</td>
- <td>{$vo.start_time}</td>
- <td>
- <notempty name="vo.image">
- <div>
- <img src="{:cmf_get_image_preview_url($vo.image)}" style="width: 40px; height: 40px;">
- </div>
- </notempty>
- </td>
- <td>{$vo.create_time}</td>
- <td>{$vo.status_text}</td>
- <td>{$vo.rate}</td>
- <td>{$vo.rate_comment}</td>
- <td>
- <a class="btn btn-xs btn-primary" href="{:url('AdminAppointment/edit',array('id'=>$vo['id']))}">编辑</a>
- <a class="btn btn-xs btn-primary" href="javascript:log({$vo.id})">操作日志</a>
- </td>
- </tr>
- </foreach>
- </table>
- <ul class="pagination">{$page|default=''}</ul>
- </form>
- </div>
- <script src="__STATIC__/js/admin.js"></script>
- <script>
- function reloadPage(win) {
- win.location.reload();
- }
- function log(id) {
- Wind.css('layer');
- Wind.use("layer", function () {
- layer.open({
- type: 2,
- title: '操作日志',
- content: "{:url('AdminAppointment/log')}?id="+id,
- maxmin: true,
- area: ['1200px', '700px']
- });
- })
- }
- </script>
- </body>
- </html>
|