同时处理在线数据和离线数据的不同显示方式

This commit is contained in:
wlx 2011-09-16 06:38:09 +00:00
parent 992ebf6455
commit 1d1e2b4010
2 changed files with 5 additions and 1 deletions

View File

@ -434,7 +434,7 @@ class Admin_DownController extends Zend_Controller_Action
elseif($show)
{
$select=$this->db->select();
$select->from('dataorder as o',array('ts_created'))
$select->from('dataorder as o',array('id','ts_created','offlineappid'))
->join('metadata as m', 'o.uuid = m.uuid', array('title','uuid'))
->join('users as u', 'o.userid=u.id',array('id as userid','username','realname'))
->where('m.uuid = ? and (o.status=0 or o.status=5)', $show)

View File

@ -45,7 +45,11 @@
<td><a href="/admin/down/data/show/<?php echo $item['uuid'];?>"><?php echo $item['realname'];?></a></td>
<td><?php echo date('Y-m-d H:i:s', strtotime($item['ts_created'])); ?></td>
<td>
<?php if ($item['offlineappid']>0) : ?>
<a href='/admin/down/offline/show/<?php echo $item['offlineappid'];?>'>详细</a>
<?php else : ?>
<a href='/admin/down/online/show/<?php echo $item['id'];?>'>详细</a>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>