| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <include file="public@header"/>
- </head>
- <body>
- <div class="wrap js-check-wrap">
- <ul class="nav nav-tabs">
- <li class="active"><a href="#">反馈列表</a></li>
- <!-- <li><a href="{:url('kefu/add')}">添加客服</a></li> -->
- </ul>
- <form method="post" class="js-ajax-form margin-top-20" action="{:url('Kefu/index')}">
- <div class="table-actions">
-
- </div>
- <php>$status=array("1"=>lang('DISPLAY'),"0"=>lang('HIDDEN'));</php>
- <table class="table table-hover table-bordered table-list">
- <thead>
- <tr>
- <th width="16">
- <label><input type="checkbox" class="js-check-all" data-direction="x"
- data-checklist="js-check-x"></label></th>
-
- <th width="50">ID</th>
- <th width="90">用户昵称</th>
- <th>类型</th>
- <th>反馈内容</th>
- <th>照片</th>
- <th>创建时间</th>
- <th>状态</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <foreach name="list" item="vo">
- <tr>
- <td><input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]"
- value="{$vo.id}">
- </td>
-
- <td>{$vo.id}</td>
- <td>{$vo.user_nicknamet.user_nickname}</td>
- <php>$advicearray=config('weixin.adviceTypes');</php>
- <td>
- {$advicearray[$vo.type]}
- </td>
- <td>{$vo.remark}</td>
- <td><img src="/upload/{$vo.image}" style="width: 80px;height: 50px;"></img></td>
- <td>{:date('Y-m-d i:m:s',$vo.created_time)}</td>
-
- <td>
- <switch name="$vo.status">
- <case value='1'><font style="color: red">待审核</font></case>
- <case value='2'><font style="color: green">已审核</font></case>
-
- </switch>
- </td>
- <td>
- <a class="btn btn-xs btn-primary" href="{:url('admin_index/feedbackedit',array('id'=>$vo['id']))}">审核</a>
-
- </td>
- </tr>
- </foreach>
- </tbody>
-
- </table>
-
- <div class="pagination">{$page}</div>
-
- </form>
- </div>
- <script src="__STATIC__/js/admin.js"></script>
- </body>
- </html>
|