You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

130 lines
5.1 KiB

{template nheader.html}
<script type="text/javascript">
function setflag(i) {
if (i == -1) {
$('#flag_back').show();
} else {
$('#flag_back').hide();
}
}
function dr_confirm_verfiy() {
art.dialog.confirm("{fc_lang('您确定要这样操作吗?')}", function(){
$('#action').val('flag');
var _data = $("#myform").serialize();
var _url = window.location.href;
if ((_data.split('ids')).length-1 <= 0) {
dr_tips(lang['select_null'], 2);
return true;
}
// 将表单数据ajax提交验证
$.ajax({type: "POST",dataType:"json", url: _url, data: _data,
success: function(data) {
//验证成功
if (data.status == 1) {
var ret = data.code;
for(var o in ret){
dr_tips(ret[o], 5);
}
var html = data.id;
for(var o in html){
$.post(html[o], {}, function(){});
}
setTimeout('window.location.reload(true)', 5000); // 刷新页
} else if (data.status == 2) {
var html = data.id;
for(var o in html){
$.post(html[o], {}, function(){});
}
dr_tips(data.code, 3, 1);
setTimeout('window.location.reload(true)', 3000); // 刷新页
} else {
dr_tips(data.code);
return true;
}
},
error: function(HttpRequest, ajaxOptions, thrownError) {
alert(HttpRequest.responseText);
}
});
return true;
});
return false;
}
</script>
<div class="page-bar">
<div class="page-toolbar pull-left">
<div class="btn-group">
<button type="button" class="btn blue btn-sm btn-outline dropdown-toggle" data-toggle="dropdown" data-hover="dropdown">
{$meta_name}
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu" role="menu">
{loop $menu $name $t}
<li>
<a href="{$t.url}"> {$name} <span class="badge badge-info"> {$t.count} </span> </a>
</li>
{/loop}
</ul>
</div>
</div>
</div>
<h3 class="page-title">
<small>{fc_lang('前端会员的投稿需要管理角色组审核之后才能正常显示')}</small>
</h3>
<form action="" method="post" name="myform" id="myform">
<input name="action" id="action" type="hidden" value="order" />
<div class="portlet mylistbody">
<div class="portlet-body">
<div class="table-scrollable">
<table class="mytable table table-striped table-bordered table-hover table-checkable dataTable">
<thead>
<tr>
<th width="20"></th>
<th width="80">Id</th>
<th>{fc_lang('名称')}</th>
<th>{fc_lang('主题')}</th>
<th width="120">{fc_lang('录入作者')}</th>
<th width="150">{fc_lang('更新时间')}</th>
<th class="dr_option">{fc_lang('操作')}</th>
</tr>
</thead>
<tbody>
{loop $list $t}
{php $c=dr_string2array($t['content']);}
<tr id="dr_row_{$t['id']}">
<td><input name="ids[]" type="checkbox" class="dr_select toggle md-check" value="{$t['id']}" /></td>
<td>{$t['id']}</td>
<td>{if $c['is_new']}<font color="red">{fc_lang('新')} </font>{else}<font color="blue">{fc_lang('改')} </font>{/if}<a href="{dr_url(APP_DIR.'/verify/edit',array('id'=>$t['id']))}">{$c['name']}</a></td>
<td><a href="{dr_url(APP_DIR.'/verify/index', array('status'=>$param['status'],'cid'=>$t['cid']))}">{$c['title']}</a></td>
<td><a href="javascript:;" onclick="dr_dialog_member('{$c.uid}')">{dr_strcut($t.author, 10)}</a></td>
<td>{dr_date($t['inputtime'], NULL, 'red')}</td>
<td class="dr_option">
<a href="{SITE_URL}index.php?s={APP_DIR}&c=extend&type=verify&id={$t.id}" target="_blank" class="ago"> <i class="fa fa-send"></i> {fc_lang('访问')}</a>
{if $this->ci->is_auth(APP_DIR.'/admin/verify/edit')}<a class="aedit" href="{dr_url(APP_DIR.'/verify/edit',array('id'=>$t['id']))}"> <i class="fa fa-edit"></i> {fc_lang('修改')}</a>{/if}
</td>
</tr>
{/loop}
<tr class="mtable_bottom">
<th width="20" ><input name="dr_select" class="toggle md-check" id="dr_select" type="checkbox" onClick="dr_selected()"/></th>
<td colspan="99" >
{if $this->ci->is_auth(APP_DIR.'/admin/home/del')}<label><button type="button" class="btn red btn-sm" name="option" onClick="$('#action').val('del');dr_confirm_set_all('{fc_lang('您确定要这样操作吗?')}')"> <i class="fa fa-trash"></i> {fc_lang('删除')}</button></label>{/if}
{if $this->ci->is_auth(APP_DIR.'/admin/verify/edit')}
<label><button type="button" class="btn green btn-sm" value="" name="option" onClick="dr_confirm_verfiy()"> <i class="fa fa-edit"></i> {fc_lang('标记为')}</button></label>
<label><select class="form-control" name="flagid" onchange="setflag(this.value)">
<option value="1">{fc_lang('通过')}</option>
<option value="-1">{fc_lang('退回')}</option>
</select></label>
<label><input id="flag_back" type="text" name="backcontent" class="form-control input-xlarge" style="display: none;" /></label>
{/if}
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</form>
<div id="pages"><a>{fc_lang('共%s条', $param['total'])}</a>{$pages}</div>
{template nfooter.html}