185 lines
7.6 KiB
HTML
185 lines
7.6 KiB
HTML
<include file="public/layout" />
|
|
<body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;">
|
|
<div id="append_parent"></div>
|
|
<div id="ajaxwaitid"></div>
|
|
<div class="page">
|
|
<div class="fixed-bar">
|
|
<div class="item-title">
|
|
<div class="subject">
|
|
<h3>新闻管理</h3>
|
|
<h5>网站系统新闻索引与管理</h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- 操作说明 -->
|
|
<div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); width: 99%; height: 100%;">
|
|
<div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
|
|
<h4 title="提示相关设置操作时应注意的要点">操作提示</h4>
|
|
<span title="收起提示" id="explanationZoom" style="display: block;"></span>
|
|
</div>
|
|
<ul>
|
|
<li>新闻管理, 由总平台设置管理.</li>
|
|
</ul>
|
|
</div>
|
|
<div class="flexigrid">
|
|
<div class="mDiv">
|
|
<div class="ftitle">
|
|
<h3>新闻列表</h3>
|
|
<h5>(共{$pager->totalRows}条记录)</h5>
|
|
</div>
|
|
<div title="刷新数据" class="pReload"><i class="fa fa-refresh"></i></div>
|
|
<form class="navbar-form form-inline" action="{:U('Admin/News/newsList')}" method="post">
|
|
<div class="sDiv">
|
|
<div class="sDiv2">
|
|
<select name="cat_id" class="select">
|
|
<option value="">选择新闻类别</option>
|
|
<foreach name="cats" item="vo">
|
|
<option value="{$vo.cat_id}" <if condition="$vo[cat_id] eq $cat_id">selected</if>>{$vo.cat_name}</option>
|
|
</foreach>
|
|
</select>
|
|
<input type="text" size="30" name="keywords" class="qsbox" placeholder="搜索相关数据...">
|
|
<input type="submit" class="btn" value="搜索">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="hDiv">
|
|
<div class="hDivBox">
|
|
<table cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<th class="sign" axis="col0">
|
|
<div style="width: 24px;"><i class="ico-check"></i></div>
|
|
</th>
|
|
<th align="left" abbr="article_title" axis="col3" class="">
|
|
<div style="text-align: left; width: 240px;" class="">标题</div>
|
|
</th>
|
|
<th align="left" abbr="ac_id" axis="col4" class="">
|
|
<div style="text-align: left; width: 150px;" class="">文章分类</div>
|
|
</th>
|
|
<th align="center" abbr="article_show" axis="col5" class="">
|
|
<div style="text-align: center; width: 80px;" class="">显示</div>
|
|
</th>
|
|
<th align="center" abbr="article_time" axis="col6" class="">
|
|
<div style="text-align: center; width: 160px;" class="">发布时间</div>
|
|
</th>
|
|
<th align="center" abbr="article_time" axis="col6" class="">
|
|
<div style="text-align: center; width: 160px;" class="">新闻标记</div>
|
|
</th>
|
|
|
|
<th align="center" axis="col1">
|
|
<div style="text-align: center; width: 280px;">操作</div>
|
|
</th>
|
|
<th style="width:100%" axis="col7">
|
|
<div></div>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="tDiv">
|
|
<div class="tDiv2">
|
|
<div class="fbutton">
|
|
<a href="{:U('Admin/News/article')}"><div class="add" title="新增文章"><span><i class="fa fa-plus"></i>新增新闻</span></div></a>
|
|
</div>
|
|
<!-- <div class="fbutton"><div class="del" title="将选定行数据批量删除"><span><i class="fa fa-trash"></i>批量删除</span></div></div>-->
|
|
</div>
|
|
<div style="clear:both"></div>
|
|
</div>
|
|
<div class="bDiv" style="height: auto;">
|
|
<div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
|
|
<table>
|
|
<tbody>
|
|
<foreach name="list" item="vo" key="k" >
|
|
<tr>
|
|
<td class="sign">
|
|
<div style="width: 24px;"><i class="ico-check"></i></div>
|
|
</td>
|
|
<td align="left" class="">
|
|
<div style="text-align: left; width: 240px;">{$vo.title|getSubstr=0,33}</div>
|
|
</td>
|
|
<td align="left" class="">
|
|
<div style="text-align: left; width: 150px;">{$vo.category}</div>
|
|
</td>
|
|
<td align="center" class="">
|
|
<div style="text-align: center; width: 80px;">
|
|
<if condition='$vo[is_open] eq 1'>
|
|
<span class="yes" onClick="changeTableVal('news','article_id','{$vo.article_id}','is_open',this)" ><i class="fa fa-check-circle"></i>是</span>
|
|
<else />
|
|
<span class="no" onClick="changeTableVal('news','article_id','{$vo.article_id}','is_open',this)" ><i class="fa fa-ban"></i>否</span>
|
|
</if>
|
|
</div>
|
|
</td>
|
|
<td align="center" class="">
|
|
<div style="text-align: center; width: 160px;">{$vo.publish_time|date="Y-m-d",###}</div>
|
|
</td>
|
|
<td align="center" class="">
|
|
<div style="text-align: center; width: 160px; color:red;">{$vo.tags}</div>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<div style="text-align: center; width: 280px; max-width:280px;">
|
|
|
|
<!--a class="btn blue" target="_blank" href="{:U('Home/Article/detail',array('article_id'=>$vo['article_id']))}"><i class="fa fa-search"></i>查看</a-->
|
|
|
|
<notin name="vo.article_id" value="$article_able_id"> <a class="btn red" href="javascript:void(0)" data-url="{:U('News/aticleHandle')}" data-id="{$vo.article_id}" onClick="delfun(this)"><i class="fa fa-trash-o"></i>删除</a>
|
|
</notin>
|
|
<in name="vo.article_id" value="$article_able_id"> <a class="btn red" href="javascript:;" onclick="layer.alert('系统文章不得删除!',{icon:2});"><i class="fa fa-trash-o"></i>删除</a> </in>
|
|
<a href="{:U('News/article',array('act'=>'edit','article_id'=>$vo['article_id']))}" class="btn blue"><i class="fa fa-pencil-square-o"></i>编辑</a>
|
|
</div>
|
|
</td>
|
|
<td align="" class="" style="width: 100%;">
|
|
<div> </div>
|
|
</td>
|
|
</tr>
|
|
</foreach>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="iDiv" style="display: none;"></div>
|
|
</div>
|
|
<!--分页位置-->
|
|
{$pager->show()} </div>
|
|
</div>
|
|
<script>
|
|
$(document).ready(function(){
|
|
// 表格行点击选中切换
|
|
$('#flexigrid > table>tbody >tr').click(function(){
|
|
$(this).toggleClass('trSelected');
|
|
});
|
|
|
|
// 点击刷新数据
|
|
$('.fa-refresh').click(function(){
|
|
location.href = location.href;
|
|
});
|
|
|
|
});
|
|
|
|
|
|
function delfun(obj) {
|
|
// 删除按钮
|
|
layer.confirm('确认删除?', {
|
|
btn: ['确定', '取消'] //按钮
|
|
}, function () {
|
|
$.ajax({
|
|
type: 'post',
|
|
url: $(obj).attr('data-url'),
|
|
data: {act: 'del', article_id: $(obj).attr('data-id')},
|
|
dataType: 'json',
|
|
success: function (data) {
|
|
layer.closeAll();
|
|
if (data) {
|
|
$(obj).parent().parent().parent().remove();
|
|
} else {
|
|
layer.alert('删除失败', {icon: 2}); //alert('删除失败');
|
|
}
|
|
}
|
|
})
|
|
}, function () {
|
|
layer.closeAll();
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |