...
|
...
|
@@ -34,9 +34,10 @@ |
|
|
<th width="50">ID</th>
|
|
|
<th>类型名称</th>
|
|
|
<th>图标</th>
|
|
|
<th>收集状态</th>
|
|
|
<th width="130">更新时间</th>
|
|
|
<th width="130">发布时间</th>
|
|
|
<th width="120">操作</th>
|
|
|
<th width="150">操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<foreach name="list" item="vo">
|
...
|
...
|
@@ -52,11 +53,18 @@ |
|
|
<img src="{:cmf_get_image_preview_url($vo.icon)}" width="50"/>
|
|
|
</a>
|
|
|
</td>
|
|
|
<td><eq name="vo.is_stop" value="0">收集中</eq><eq name="vo.is_stop" value="1">已停止</eq></td>
|
|
|
<td>{:date('Y-m-d H:i',$vo.create_time)}</td>
|
|
|
<td>{:date('Y-m-d H:i',$vo.update_time)}</td>
|
|
|
<td>
|
|
|
<!--<a href="{:url('OrderSort/edit',array('id'=>$vo['id']))}">{:lang('EDIT')}</a>-->
|
|
|
<a href="javascript:parent.openIframeDialog('{:url('Order/index_sort',['sort_id'=>$vo['id']])}','电子订单列表',{width:'1300px',height:'750px'});">查看订单</a>
|
|
|
<eq name="vo.is_stop" value="0">
|
|
|
<a href="{:url('OrderSort/stop',array('id'=>$vo['id'],'is_stop'=>1))}" class="js-ajax-dialog-btn" data-msg="确定停止收集吗?">停止</a>
|
|
|
</eq>
|
|
|
<eq name="vo.is_stop" value="1">
|
|
|
<a href="{:url('OrderSort/stop',array('id'=>$vo['id'],'is_stop'=>0))}" class="js-ajax-dialog-btn" data-msg="确定开启收集吗?">收集</a>
|
|
|
</eq>
|
|
|
<a href="{:url('OrderSort/delete',['id'=>$vo['id']])}" class="js-ajax-delete">{:lang('DELETE')}</a>
|
|
|
</td>
|
|
|
</tr>
|
...
|
...
|
@@ -68,6 +76,7 @@ |
|
|
<th width="50">ID</th>
|
|
|
<th>类型名称</th>
|
|
|
<th>图标</th>
|
|
|
<th>收集状态</th>
|
|
|
<th width="130">更新时间</th>
|
|
|
<th width="130">发布时间</th>
|
|
|
<th width="90">操作</th>
|
...
|
...
|
|