Files
RuoYi/ruoyi-admin/src/main/resources/templates/demo/table/textSearch.html
2024-06-03 13:29:36 +08:00

112 lines
3.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('全文搜索')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table" data-page-size="10" data-search-align="left"
data-show-custom-view="true" data-custom-view="customViewFormatter"
data-custom-view-default-view="true">
</table>
</div>
</div>
</div>
<template id="textSearchTemplate">
<div class="col-sm-12">
<p style="margin-top:10px;line-height:1.5;">
<span style="color:blue;font-size:medium">%title%</span><br>
<span style="color:#000000;font-size:medium">%content%</span><br>
<span style="color:#008000;font-size:medium">
档号:<a href="javascript:void(0)" onclick="handleView('%tableId%', '%archiveNo%')">%archiveNo%</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%docNo%
</span>
</p>
</div>
</template>
<div th:include="include :: footer"></div>
<th:block th:include="include :: bootstrap-table-custom-view-js" />
<script th:inline="javascript">
var prefix = ctx + "demo/table";
$(function() {
var options = {
url: prefix + "/text/list",
search: true,
showSearch: false,
showRefresh: false,
showToggle: false,
showColumns: false,
showExport: true,
columns: [{
checkbox: true
},
{
field : 'tableId',
title : '编号',
visible: false
},
{
field : 'archiveNo',
title : '档号'
},
{
field : 'docNo',
title : '文件编号'
},
{
field : 'title',
title : '标题',
formatter: function(value, row, index) {
return $.table.tooltip(value, 20, "open");
}
},
{
field : 'content',
title : '内容',
formatter: function(value, row, index) {
return $.table.tooltip(value, 30, "open");
}
}]
};
$.table.init(options);
});
function customViewFormatter (data) {
var template = $('#textSearchTemplate').html()
var view = ''
if(data.length > 0) {
$.each(data, function (i, row) {
view += template.replace('%tableId%', row.tableId)
.replaceAll('%archiveNo%', row.archiveNo)
.replace('%title%', row.title)
.replace('%docNo%', row.docNo)
.replace('%content%', truncateString(row.content, 500))
})
return `<div class="row mx-0">${view}</div>`;
} else {
return `<div class="row mx-0"><div class="col-sm-12"><p style="margin-top:10px;line-height:1.5;"><span style="font-size:medium">没有找到记录。请检查过滤条件。</span></p></div></div>`
}
}
function handleView(tableId, archiveNo) {
alert("tableId" + tableId + "archiveNo" + archiveNo);
}
function truncateString(str, maxLength) {
if (str.length > maxLength) {
return str.slice(0, maxLength) + '...';
}
return str;
}
$(document).ready(function() {
$('.search-input').css('width', '320px');
});
</script>
</body>
</html>