108 lines
4.7 KiB
HTML
108 lines
4.7 KiB
HTML
{template "header.html"}
|
|
|
|
{template "api_list_date_search.html"}
|
|
|
|
<div class="right-card-box">
|
|
|
|
<div class="row table-search-tool">
|
|
<form action="{SELF}" method="get">
|
|
{dr_form_search_hidden()}
|
|
<div class="col-md-12 col-sm-12">
|
|
<label>
|
|
<select name="field" class="form-control">
|
|
{loop $field $t}
|
|
<option value="{$t.fieldname}" {if $param.field==$t.fieldname}selected{/if}>{$t.name}</option>
|
|
{/loop}
|
|
<option value="id"> Id </option>
|
|
</select>
|
|
</label>
|
|
<label><i class="fa fa-caret-right"></i></label>
|
|
<label><input type="text" class="form-control" placeholder="" value="{$param['keyword']}" name="keyword" /></label>
|
|
</div>
|
|
|
|
<div class="col-md-12 col-sm-12">
|
|
<label>
|
|
<div class="input-group input-medium date-picker input-daterange" data-date="" data-date-format="yyyy-mm-dd">
|
|
<input type="text" class="form-control" value="{$param.date_form}" name="date_form">
|
|
<span class="input-group-addon"> {dr_lang('到')} </span>
|
|
<input type="text" class="form-control" value="{$param.date_to}" name="date_to">
|
|
</div>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="col-md-12 col-sm-12">
|
|
<label><button type="submit" class="btn blue btn-sm onloading" name="submit" > <i class="fa fa-search"></i> {dr_lang('搜索')}</button></label>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
|
|
<form class="form-horizontal" role="form" id="myform">
|
|
{dr_form_hidden()}
|
|
<div class="table-scrollable">
|
|
<table class="table table-striped table-bordered table-hover table-checkable dataTable">
|
|
<thead>
|
|
<tr class="heading">
|
|
{if $ci->_is_admin_auth('del')}
|
|
<th class="myselect">
|
|
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
|
|
<input type="checkbox" class="group-checkable" data-set=".checkboxes" />
|
|
<span></span>
|
|
</label>
|
|
</th>
|
|
{/if}
|
|
|
|
<th class="{dr_sorting('title')}" name="title">{dr_lang('主题')}</th>
|
|
<th width="100" class="{dr_sorting('counts')}" name="counts">{dr_lang('发送人数')}</th>
|
|
<th width="170" class="{dr_sorting('inputtime')}" name="inputtime">{dr_lang('发布时间')}</th>
|
|
<th>{dr_lang('操作')}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loop $list $t}
|
|
<tr class="odd gradeX" id="dr_row_{$t.id}">
|
|
{if $ci->_is_admin_auth('del')}
|
|
<td class="myselect">
|
|
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
|
|
<input type="checkbox" class="checkboxes" name="ids[]" value="{$t.id}" />
|
|
<span></span>
|
|
</label>
|
|
</td>
|
|
{/if}
|
|
<td>{dr_list_function('title', $t['title'], $param)}</td>
|
|
<td>{$t.counts}</td>
|
|
<td>{dr_date($t.inputtime)}</td>
|
|
<td>
|
|
{if $ci->_is_admin_auth('edit')}
|
|
<label><a href="{dr_url($uriprefix.'/edit', ['id'=>$t.id])}" class="btn btn-xs green"> <i class="fa fa-edit"></i> {dr_lang('修改')}</a></label>
|
|
<label><a href="javascript:dr_admin_menu_ajax('{dr_url($uriprefix.'/copy_edit', ['id'=>$t.id])}');" class="btn btn-xs dark"> <i class="fa fa-copy"></i> {dr_lang('复制')}</a></label>
|
|
{/if}
|
|
<label><a href="javascript:;" onclick="dr_bfb_submit('{dr_lang('发送给微信粉丝')}', 'myform', '{dr_url('weixin/template/todo_add', ['id' => $t.id])}')" class="btn btn-xs dark"> <i class="fa fa-send"></i> {dr_lang('发送')}</a></label>
|
|
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="row fc-list-footer table-checkable ">
|
|
<div class="col-md-5 fc-list-select">
|
|
{if $ci->_is_admin_auth('del')}
|
|
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
|
|
<input type="checkbox" class="group-checkable" data-set=".checkboxes" />
|
|
<span></span>
|
|
</label>
|
|
<button type="button" onclick="dr_ajax_option('{dr_url($uriprefix.'/del')}', '{dr_lang('你确定要删除它们吗?')}', 1)" class="btn red btn-sm"> <i class="fa fa-trash"></i> {dr_lang('删除')}</button>
|
|
{/if}
|
|
|
|
</div>
|
|
<div class="col-md-7 fc-list-page">
|
|
{$mypages}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
{template "footer.html"} |