feat: 信息公开-招采平台分页完善
parent
2d8e703419
commit
e856ed9f30
|
@ -121,8 +121,11 @@ class Info extends Base
|
||||||
app('think\App')->bind(Paginator::class, DxtcPageA::class);
|
app('think\App')->bind(Paginator::class, DxtcPageA::class);
|
||||||
|
|
||||||
$list = [];
|
$list = [];
|
||||||
foreach ($cateList as $cate) {
|
foreach ($cateList as &$cate) {
|
||||||
$list[$cate['id']] = NoticeModel::getList($cate['id'], 2, $keyword, [], 1, $listSort, false);
|
// $list[$cate['id']]['total'] = NoticeModel::getList($cate['id'], 2, $keyword, [], 1, $listSort, false);
|
||||||
|
$cate['total'] = NoticeModel::where('category_id', $cate['id'])->when(!empty($keyword), function ($q) use ($keyword) {
|
||||||
|
$q->where('title', 'like', '%'.$keyword.'%');
|
||||||
|
})->count();
|
||||||
}
|
}
|
||||||
|
|
||||||
$downloadList = DownloadModel::where('category_id', Category::CATEGORY_INFO_DOWNLOAD)
|
$downloadList = DownloadModel::where('category_id', Category::CATEGORY_INFO_DOWNLOAD)
|
||||||
|
@ -170,4 +173,48 @@ class Info extends Base
|
||||||
$this->data['categoryId'] = $category['id'];
|
$this->data['categoryId'] = $category['id'];
|
||||||
return $this->view();
|
return $this->view();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getNotice()
|
||||||
|
{
|
||||||
|
$page = input('page/d', 1);
|
||||||
|
$size = input('size/d', 2);
|
||||||
|
$cate = input('cate/d', 0);
|
||||||
|
$keyword = input('keyword/s', '');
|
||||||
|
|
||||||
|
$page = $page ?: 1;
|
||||||
|
$size = $size ?: 2;
|
||||||
|
|
||||||
|
$res = [
|
||||||
|
'total' => 0,
|
||||||
|
'page' => $page,
|
||||||
|
'size' => $size,
|
||||||
|
'data' => [],
|
||||||
|
];
|
||||||
|
|
||||||
|
if (empty($cate)) {
|
||||||
|
return $this->json(0,'success', $res);
|
||||||
|
}
|
||||||
|
|
||||||
|
$where = [];
|
||||||
|
if (!empty($keyword)) {
|
||||||
|
$where[] = ['title', 'like', '%'.$keyword.'%'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$where[] = ['category_id', '=', $cate];
|
||||||
|
$q = NoticeModel::where($where);
|
||||||
|
$total = $q->count();
|
||||||
|
|
||||||
|
if ($total > 0) {
|
||||||
|
$list = $q->page($page)->limit($size)->order('sort desc')->select();
|
||||||
|
$list->each(function ($item) {
|
||||||
|
$item->create_at = date('Y.m.d', $item->create_time);
|
||||||
|
});
|
||||||
|
$res['total'] = $total;
|
||||||
|
$res['page'] = $page;
|
||||||
|
$res['size'] = $size;
|
||||||
|
$res['data'] = $list;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->json(0, 'success', $res);
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -85,7 +85,7 @@ $(function(){
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".talent-top").click(function(){
|
$("body").on('click','.talent-top',function(){
|
||||||
$(this).siblings(".talent-bottom").slideToggle();
|
$(this).siblings(".talent-bottom").slideToggle();
|
||||||
$(this).parents(".boxs").siblings().find(".talent-bottom").slideUp();
|
$(this).parents(".boxs").siblings().find(".talent-bottom").slideUp();
|
||||||
})
|
})
|
||||||
|
|
|
@ -45,29 +45,61 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="title2 mt80"><span>{$cate.title}</span></div>
|
<div class="title2 mt80"><span>{$cate.title}</span></div>
|
||||||
<div class="talent-list pt20">
|
<div class="talent-list pt20">
|
||||||
{php}$items = $list[$cate['id']];{/php}
|
|
||||||
{foreach $items as $item}
|
</div>
|
||||||
|
<table id="cate-{$cate['id']}" lay-filter="test-{$cate['id']}"></table>
|
||||||
|
<script>
|
||||||
|
layui.use('laypage', function(){
|
||||||
|
var laypage = layui.laypage;
|
||||||
|
|
||||||
|
//执行一个laypage实例
|
||||||
|
laypage.render({
|
||||||
|
elem: 'cate-'+'{$cate.id}' //注意,这里的 test1 是 ID,不用加 # 号
|
||||||
|
,count: {$cate.total ?? 0} //数据总数,从服务端得到
|
||||||
|
,limit: 2 //每页显示数量
|
||||||
|
,jump: function(obj, first){
|
||||||
|
//obj包含了当前分页的所有参数,比如:
|
||||||
|
// console.log(obj.curr); //得到当前页,以便向服务端请求对应页的数据。
|
||||||
|
// console.log(obj.limit); //得到每页显示的条数
|
||||||
|
if ({$cate.total ?? 0} > 0) {
|
||||||
|
$.post('/info/getNotice', {cate: '{$cate.id}', page:obj.curr, size:obj.limit, keyword: '{$keyword ?? ""}'}, function (res) {
|
||||||
|
if (res.code === 0 && res.data.total > 0) {
|
||||||
|
let html = '';
|
||||||
|
$.each(res.data.data, function (index, item) {
|
||||||
|
html += `
|
||||||
<div class="boxs">
|
<div class="boxs">
|
||||||
<div class="talent-top">
|
<div class="talent-top">
|
||||||
<h3 class="tit">{$item.title}</h3>
|
<h3 class="tit">${item.title}</h3>
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<div class="link">查看详情 >></div>
|
<div class="link">查看详情 >></div>
|
||||||
<div class="time">
|
<div class="time">
|
||||||
<span><img src="__STATIC__/web/img/time.jpg" alt="">{:date('Y.m.d', $item.create_time)}</span>
|
<span><img src="__STATIC__/web/img/time.jpg" alt="">${item.create_at}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="int">{$item.status}</div>
|
<div class="int">${item.status}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="talent-bottom">
|
<div class="talent-bottom">
|
||||||
<div>
|
<div class="cotent">
|
||||||
{$item.content|raw}
|
${item.content}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/foreach}
|
`;
|
||||||
</div>
|
});
|
||||||
{$items->render('', 'class="pageing wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0"')|raw}
|
$('#cate-'+'{$cate.id}').prev('.talent-list').html(html);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
//首次不执行
|
||||||
|
if(!first){
|
||||||
|
//do something
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
|
||||||
|
@ -94,9 +126,3 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<script>
|
|
||||||
// $('.pageing a').on('click', function () {
|
|
||||||
// console.log('sss');
|
|
||||||
// return false;
|
|
||||||
// })
|
|
||||||
</script>
|
|
Loading…
Reference in New Issue