343 lines
12 KiB
HTML
343 lines
12 KiB
HTML
{extend name="foxcms" /}
|
|
|
|
{block name="css"}
|
|
|
|
{/block}
|
|
|
|
{block name="body"}
|
|
<input name="bcid" value="{$bcid}" type="hidden" />
|
|
<div class="foxcms-content-inner">
|
|
<!-- page content -->
|
|
<div class="diy-form-content">
|
|
<div class="content-top-operation">
|
|
<div class="left">
|
|
|
|
</div>
|
|
<div class="right display-flex">
|
|
<div class="foxui-input-group item-input margin-right-20">
|
|
<div class="foxui-input-prepend">
|
|
<input class="foxui-size-small" placeholder="请输入关键字" required value="" name="keyword"/>
|
|
</div>
|
|
</div>
|
|
<button class="foxui-solid-primary foxui-size-small search-btn">搜索</button>
|
|
</div>
|
|
</div>
|
|
<div class="section section-panel margin-top-10">
|
|
<div class="foxui-table foxui-table-border-bottom foxui-table-hover foxui-checkbox-group">
|
|
|
|
<ul class="foxui-table-thead foxui-checkbox-head">
|
|
<li class="foxui-table-tr">
|
|
<div class="foxui-table-th" style="flex: initial; width: 40px">
|
|
<div class="foxui-checkbox foxui-checkbox-all">
|
|
<span class="foxui-checkbox-input">
|
|
<i class="foxui-checkbox-icon"></i>
|
|
<input type="checkbox" value="" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="foxui-table-th" style="flex: initial; width: 5%">ID</div>
|
|
<div class="foxui-table-th">操作人</div>
|
|
<div class="foxui-table-th">操作事项</div>
|
|
<div class="foxui-table-th">URL</div>
|
|
<div class="foxui-table-th">IP地址</div>
|
|
<div class="foxui-table-th">时间</div>
|
|
<div class="foxui-table-th">内容</div>
|
|
<div class="foxui-table-th">操作</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul class="foxui-table-tbody foxui-checkbox-list loading-container" id="loadingContainer">
|
|
<!--表格内容-->
|
|
</ul>
|
|
|
|
<div class="table-footer foxui-checkbox-head">
|
|
<div class="left display-flex foxui-align-items-center">
|
|
<div class="foxui-checkbox foxui-checkbox-all margin-right-24">
|
|
<span class="foxui-checkbox-input">
|
|
<i class="foxui-checkbox-icon"></i>
|
|
<input type="checkbox" value="" />
|
|
</span>
|
|
</div>
|
|
|
|
<div class="display-flex">
|
|
<button class="foxui-plain-info foxui-size-mini delete-btn">
|
|
<i class="foxui-icon-shanchu-o"></i>
|
|
<span>删除</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="pagination"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{include file="footed-copy"/}
|
|
{/block}
|
|
|
|
|
|
{block name="js"}
|
|
<script>
|
|
|
|
/**
|
|
* 初始化数据
|
|
*/
|
|
function init(param){
|
|
if(param == undefined){
|
|
param = new Object();
|
|
}
|
|
let keyword = $('input[name="keyword"]').val();
|
|
let bcid = $("input[name='bcid']").val()
|
|
param.keyword = keyword;
|
|
param.bcid = bcid;
|
|
|
|
$.ajax({
|
|
type: "post",
|
|
url: "index",
|
|
dataType: "json",
|
|
data: param,
|
|
success: function (res) {
|
|
if (res.code == 1 && res.data) {
|
|
let data = res.data;
|
|
let paginationData = {
|
|
pageSize: data.per_page,
|
|
total: data.total,
|
|
currentPage: data.current_page
|
|
};
|
|
initTable(paginationData, data.data);
|
|
}
|
|
$('#loadingContainer').removeClass('loading-container');
|
|
}, error: function (res) {
|
|
$('#loadingContainer').removeClass('loading-container');
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @description: 初始化表格
|
|
* @param {*} pageSize
|
|
* @param {*} total
|
|
* @param {*} currentPage
|
|
* @param {*} dataList
|
|
* @return {*}
|
|
* @Date: 2022-01-12 10:55:11
|
|
*/
|
|
function initTable({ pageSize, total, currentPage }, dataList) {
|
|
if (dataList == undefined){
|
|
dataList = [];
|
|
}
|
|
if(total == undefined){
|
|
total = 0;
|
|
}
|
|
// 追加表格 html
|
|
_appendToTable(dataList);
|
|
|
|
//分页
|
|
foxui.pagination(
|
|
{
|
|
el: '#pagination',
|
|
currentPage: currentPage,
|
|
total: total,
|
|
onchange: function ({ currentPage, pageSize, total }, callback) {
|
|
callback({ total, pageSize, currentPage });
|
|
let param = {pageSize, currentPage};
|
|
$('#loadingContainer').addClass('loading-container');
|
|
init(param)
|
|
},
|
|
},
|
|
{
|
|
type: 'plain',
|
|
size: 'mini',
|
|
isShowTotal: true,
|
|
isShowSize: true,
|
|
pageSize: pageSize
|
|
}
|
|
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @description: 追加表格 html
|
|
* @param {*} dataList
|
|
* @return {*}
|
|
* @Date: 2022-01-12 00:18:40
|
|
*/
|
|
function _appendToTable(dataList) {
|
|
const html = _trsHtml(dataList);
|
|
$('.foxui-table-tbody').empty().append(html);
|
|
}
|
|
|
|
/**
|
|
* @description: 表格 html
|
|
* @param {*} dataList
|
|
* @return {*}
|
|
* @Date: 2022-01-12 00:18:52
|
|
*/
|
|
function _trsHtml(dataList) {
|
|
let htmlArr = [];
|
|
dataList.forEach(item => {
|
|
htmlArr.push(`
|
|
<li class="foxui-table-tr">
|
|
<div class="foxui-table-td" style="flex: initial; width: 40px">
|
|
<div class="foxui-checkbox">
|
|
<span class="foxui-checkbox-input">
|
|
<i class="foxui-checkbox-icon"></i>
|
|
<input type="checkbox" value="" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="foxui-table-td" style="flex: initial; width: 5%">${item.id}</div>
|
|
<div class="foxui-table-td blue-color">${item.username}</div>
|
|
<div class="foxui-table-td" style="word-wrap: break-word; word-break: break-word;">${item.remark}</div>
|
|
<div class="foxui-table-td" style="word-wrap: break-word; word-break: break-word;">${item.url}</div>
|
|
<div class="foxui-table-td">${item.ip}</div>
|
|
<div class="foxui-table-td">
|
|
${item.create_times[0]}<br/>
|
|
${item.create_times[1]}
|
|
</div>
|
|
<div class="foxui-table-td">${item.content}</div>
|
|
<div class="foxui-table-td">
|
|
<button class="foxui-text-primary foxui-size-medium delete-btn" id="${item.id}" onclick="deleteItem(this)">删除</button>
|
|
</div>
|
|
</li>
|
|
`);
|
|
});
|
|
return htmlArr.join('');
|
|
}
|
|
|
|
init();
|
|
|
|
//搜索
|
|
$(".search-btn").on('click', function() {
|
|
$('#loadingContainer').addClass('loading-container');
|
|
init();
|
|
});
|
|
|
|
//重置
|
|
$("button[name='reset']").on('click', function() {
|
|
$('input[name="status"]').val("");
|
|
$('input[name="keyword"]').val("");
|
|
});
|
|
|
|
//编辑
|
|
function editItem(obj){
|
|
let id = $(obj).attr("id");
|
|
let columnId = $("input[name='columnId']").val();
|
|
window.location.href = `edit?type=1&columnId=${columnId}&id=${id}`;
|
|
}
|
|
|
|
//单向删除
|
|
function deleteItem(obj) {
|
|
let id = $(obj).attr("id");
|
|
foxui.dialog({
|
|
title: '删除',
|
|
content: '您确定要删除吗',
|
|
cancelText: '取消',
|
|
confirmText: '删除',
|
|
type: 'danger',
|
|
confirm: function(callback) {
|
|
$.ajax({
|
|
type: "get",
|
|
url: 'delete?id=' + id,
|
|
dataType: "json",
|
|
success: function(res) {
|
|
if (res.code == 1) {
|
|
foxui.message({
|
|
text: res.msg,
|
|
type: 'success',
|
|
});
|
|
init();
|
|
} else {
|
|
foxui.message({
|
|
text: res.msg,
|
|
type: 'warning',
|
|
});
|
|
}
|
|
},
|
|
error: function(res) {
|
|
foxui.message({
|
|
text: res.responseJSON.msg,
|
|
type: 'info',
|
|
});
|
|
}
|
|
});
|
|
|
|
callback();
|
|
},
|
|
cancel: function() {
|
|
foxui.message({
|
|
text: '取消删除',
|
|
type: 'info'
|
|
});
|
|
},
|
|
});
|
|
|
|
}
|
|
|
|
// 多选删除
|
|
$('.table-footer .delete-btn').click(function () {
|
|
let $isChecked = $('.foxui-table-td .foxui-checkbox.is-checked'),
|
|
$checkedTr = $isChecked.closest('.foxui-table-tr'),
|
|
len = $isChecked.length,
|
|
idList = [];
|
|
|
|
if (len < 1) {
|
|
foxui.message({
|
|
text: '请先选译要删除的数据!',
|
|
type: 'danger',
|
|
});
|
|
} else {
|
|
foxui.dialog({
|
|
title: '确认',
|
|
content: '您确定要删除选中的所有数据吗?',
|
|
confirmText: '删除',
|
|
cancelText: '取消',
|
|
buttonType: 'danger',
|
|
buttonSize: 'small',
|
|
confirm: function (callback) {
|
|
// 异步删除数据
|
|
$checkedTr.each(function () {
|
|
let id = $(this).find('.foxui-table-td:nth-child(2)').text();
|
|
idList.push(id);
|
|
});
|
|
$.ajax({
|
|
type: "post",
|
|
url: 'deletes',
|
|
dataType: "json",
|
|
data: {
|
|
"idList": JSON.stringify(idList)
|
|
},
|
|
success: function(res) {
|
|
if (res.code == 1) {
|
|
foxui.message({
|
|
text: res.msg,
|
|
type: 'success',
|
|
});
|
|
|
|
init();
|
|
}else{
|
|
foxui.message({
|
|
text: res.msg,
|
|
type: 'warning',
|
|
});
|
|
}
|
|
},
|
|
error: function(res) {
|
|
foxui.message({
|
|
text: res.responseJSON.msg,
|
|
type: 'warning',
|
|
});
|
|
}
|
|
});
|
|
callback();
|
|
},
|
|
});
|
|
}
|
|
});
|
|
|
|
</script>
|
|
|
|
{/block}
|