Commit 9629c2a7 by 冷斌

fix bug

parent caf808b3
...@@ -16,27 +16,27 @@ ...@@ -16,27 +16,27 @@
<select class="select_2" name="status"> <select class="select_2" name="status">
<option value="">全部</option> <option value="">全部</option>
<option value="0" <if condition="$formget.status eq '0'">selected</if> >处理中</option> <option value="0" <if condition="$formget.status eq '0'">selected</if> >处理中</option>
<option value="1" <if condition="$formget.status eq '1'">selected</if> >已处理</option> <option value="1" <if condition="$formget.status eq '1'">selected</if> >已处理</option>
</select> </select>
提交时间: 提交时间:
<input type="text" name="start_time" class="js-date date" value="{$formget.start_time}" style="width: 80px;" autocomplete="off">- <input type="text" name="start_time" class="js-date date" value="{$formget.start_time}" style="width: 80px;" autocomplete="off">-
<input type="text" class="js-date date" name="end_time" value="{$formget.end_time}" style="width: 80px;" autocomplete="off"> &nbsp; &nbsp; <input type="text" class="js-date date" name="end_time" value="{$formget.end_time}" style="width: 80px;" autocomplete="off"> &nbsp; &nbsp;
关键字: 关键字:
<input type="text" name="keyword" style="width: 200px;" value="{$formget.keyword}" placeholder="请输入会员ID、姓名、手机"> <input type="text" name="keyword" style="width: 200px;" value="{$formget.keyword}" placeholder="请输入会员ID、姓名、手机">
<input type="submit" class="btn btn-primary" value="搜索"> <input type="submit" class="btn btn-primary" value="搜索">
</form> </form>
<form method="post" class="js-ajax-form" > <form method="post" class="js-ajax-form" >
<table class="table table-hover table-bordered"> <table class="table table-hover table-bordered">
<thead> <thead>
<tr> <tr>
<th align="center">ID</th> <th align="center">ID</th>
<th>会员</th> <th>会员</th>
<th>系统版本</th> <th>系统版本</th>
<th>手机型号</th> <th>手机型号</th>
<th class="max40">反馈信息</th> <th class="max40">反馈信息</th>
<th>图片</th> <th>联系方式</th>
<th>状态</th> <th>状态</th>
<th>提交时间</th> <th>提交时间</th>
<th>处理时间</th> <th>处理时间</th>
...@@ -49,30 +49,26 @@ ...@@ -49,30 +49,26 @@
<foreach name="lists" item="vo"> <foreach name="lists" item="vo">
<tr> <tr>
<td align="center">{$vo.id}</td> <td align="center">{$vo.id}</td>
<td>{$vo['userinfo']['user_nicename']} ( {$vo['uid']} )</td> <td>{$vo['userinfo']['user_nicename']} ( {$vo['uid']} )</td>
<td>{$vo['version']}</td> <td>{$vo['version']}</td>
<td>{$vo['model']}</td> <td>{$vo['model']}</td>
<td class="max40"><?php echo nl2br($vo['content']);?></td> <td class="max40"><?php echo nl2br($vo['content']);?></td>
<td> <td>{$vo['thumb']}</td>
<if condition="$vo['thumb']">
<img src="{$vo['thumb']}" style="max-width:100px;max-height:100px;">
</if>
</td>
<td>{$status[$vo['status']]}</td> <td>{$status[$vo['status']]}</td>
<td>{$vo.addtime|date="Y-m-d H:i:s",###}</td> <td>{$vo.addtime|date="Y-m-d H:i:s",###}</td>
<td> <td>
<if condition="$vo['status'] eq '0'" > <if condition="$vo['status'] eq '0'" >
处理中 处理中
<else/> <else/>
{$vo.uptime|date="Y-m-d H:i:s",###} {$vo.uptime|date="Y-m-d H:i:s",###}
</if> </if>
</td> </td>
<td align="center"> <td align="center">
<if condition="$vo['status'] eq '0'" > <if condition="$vo['status'] eq '0'" >
<a href="{:U('Feedback/setstatus',array('id'=>$vo['id']))}" >标记处理</a> | <a href="{:U('Feedback/setstatus',array('id'=>$vo['id']))}" >标记处理</a> |
</if> </if>
<a href="{:U('Feedback/del',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn" data-msg="您确定要删除吗?">删除</a> <a href="{:U('Feedback/del',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn" data-msg="您确定要删除吗?">删除</a>
</td> </td>
</tr> </tr>
...@@ -85,4 +81,4 @@ ...@@ -85,4 +81,4 @@
</div> </div>
<script src="__PUBLIC__/js/common.js"></script> <script src="__PUBLIC__/js/common.js"></script>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment