1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {template 'common/header'}
- <div class="we7-page-title">
- 素材定时群发
- </div>
- <ul class="we7-page-tab">
- <li {if $_GPC['a'] == 'mass' && $do == 'list'}class="active"{/if}>
- <a href="{php echo url('platform/mass/')}" >素材定时群发</a>
- </li>
- <li {if $_GPC['a'] == 'mass' && $do == 'send'}class="active"{/if}>
- <a href="{php echo url('platform/mass/send')}">群发记录</a>
- </li>
- </ul>
- <div class="mass-send" id="js-mass-send" ng-controller="MassSend" ng-cloak>
- <table class="table we7-table table-hover vertical-middle">
- <col />
- <tr>
- <th>消息类型</th>
- <th>接收用户组</th>
- <th>预计发送时间</th>
- <th>发送人数</th>
- <th>状态</th>
- <th>操作</th>
- </tr>
- {loop $lists $list}
- <tr>
- <td>
- <a href="{php echo url('platform/material/list', array('type' => $list['msgtype'], 'id' => $list['attach_id']));}" target="_blank">
- {$types[$list['msgtype']]}
- </a>
- </td>
- <td>{$list['groupname']}</td>
- <td>{php echo date('Y-m-d H:i', $list['sendtime']);}</td>
- <td>{if $list['group'] == '-1'}全部粉丝{else}{$list['fansnum']}{/if}</td>
- <td>
- {if !$list['status']}
- <span class="label label-success">已发送</span>
- {elseif $list['status'] == 1}
- <span class="label label-warning">未发送</span>
- {elseif $list['status'] == 2}
- <span class="label label-danger">发送失败</span>
- {/if}
- </td>
- <td>
- {if $list['type'] == 1}
- {if !$list['cron_id'] && $list['sendtime'] > TIMESTAMP}
- <a href="{php echo url('platform/mass/cron', array('id' => $list['id']));}" class="btn btn-danger btn-sm">同步到云服务</a>
- {/if}
- <a href="{php echo url('platform/mass/post', array('id' => $list['id']));}" data-toggle="tooltip" data-placement="bottom">编辑</a>
- <a href="{php echo url('platform/mass/del', array('id' => $list['id']));}" data-toggle="tooltip" data-placement="bottom">删除</a>
- {/if}
- </td>
- </tr>
- {/loop}
- </table>
- <div class="text-right">
- {$pager}
- </div>
- </div>
- <script>
- angular.module('massApp').value('config', {
- logUrl: "{php echo url('cron/manager/log');}"
- });
- angular.bootstrap($('#js-mass-send'), ['massApp']);
- </script>
- {template 'common/footer'}
|