Commit 9629c2a7 by 冷斌

fix bug

parent caf808b3
......@@ -16,27 +16,27 @@
<select class="select_2" name="status">
<option value="">全部</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>
提交时间:
<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" name="keyword" style="width: 200px;" value="{$formget.keyword}" placeholder="请输入会员ID、姓名、手机">
<input type="submit" class="btn btn-primary" value="搜索">
</form>
</form>
<form method="post" class="js-ajax-form" >
<table class="table table-hover table-bordered">
<thead>
<tr>
<th align="center">ID</th>
<th>会员</th>
<th>会员</th>
<th>系统版本</th>
<th>手机型号</th>
<th class="max40">反馈信息</th>
<th>图片</th>
<th>联系方式</th>
<th>状态</th>
<th>提交时间</th>
<th>处理时间</th>
......@@ -49,30 +49,26 @@
<foreach name="lists" item="vo">
<tr>
<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['model']}</td>
<td class="max40"><?php echo nl2br($vo['content']);?></td>
<td>
<if condition="$vo['thumb']">
<img src="{$vo['thumb']}" style="max-width:100px;max-height:100px;">
</if>
</td>
<td>{$vo['model']}</td>
<td class="max40"><?php echo nl2br($vo['content']);?></td>
<td>{$vo['thumb']}</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>
<if condition="$vo['status'] eq '0'" >
处理中
<else/>
{$vo.uptime|date="Y-m-d H:i:s",###}
</if>
</if>
</td>
<td align="center">
<td align="center">
<if condition="$vo['status'] eq '0'" >
<a href="{:U('Feedback/setstatus',array('id'=>$vo['id']))}" >标记处理</a> |
</if>
<a href="{:U('Feedback/del',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn" data-msg="您确定要删除吗?">删除</a>
</td>
</tr>
......@@ -85,4 +81,4 @@
</div>
<script src="__PUBLIC__/js/common.js"></script>
</body>
</html>
\ No newline at end of file
</html>
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