Initial commit

This commit is contained in:
linxd
2025-06-17 14:20:06 +08:00
commit 08424ecdb8
112 changed files with 26341 additions and 0 deletions

1
public/CNAME Normal file
View File

@ -0,0 +1 @@
preview.pro.ant.design

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
public/home_bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -0,0 +1,209 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>信息发布屏</title>
</head>
<body>
<div class="document-flex">
<div class="document-left">
<div class="document-left-content">
<span class="document-time" id="time">--:--:--</span>
<span class="document-date" id="date">----.--.-- 星期--</span>
<span class="document-title" id="title">吉林联通电子评标室</span>
<span class="document-num" id="num">(该会议室最多可容纳人数:--</span>
</div>
<div class="document-left-bottom">
</div>
</div>
<div class="document-right">
<div class="document-right-block">
<p class="white-text">
&nbsp;&nbsp;&nbsp;会议名称:<span id="meetingName">——</span><br />
&nbsp;&nbsp;&nbsp;会议事项:<span id="meetingItem">——</span><br />
&nbsp;&nbsp;&nbsp;会议时间:<span id="meetingTimes">——</span><br />
&nbsp;&nbsp;&nbsp;预约人员:<span id="bookBy">——</span><br />
&nbsp;&nbsp;&nbsp;联系方式:<span id="bookTel">——</span><br />
</p>
</div>
</div>
</div>
</body>
<style>
body {
width: 100%;
/* background: #efefef; */
background-image: url("background.jpg");
background-size: 100% 100%;
background-repeat: no-repeat;
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
}
.document-flex {
display: flex;
justify-content: flex-start;
height: 100vh;
}
.document-left {
background: #40415df2;
width: 33vw;
}
.document-right {
display: flex;
align-items: center;
justify-content: center;
width: 67vw;
}
.document-right-block {
background: linear-gradient(to top, #d91615cc, #df6859cc) no-repeat center;
width: 60vw;
overflow: hidden;
font-size: 32px;
font-family: ;
line-height: 64px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* height: 100%; */
/* width: 100%; */
}
.document-right-block p {
width: 60vw;
}
.document-right-block .white-text {
color: #fefefe;
}
.document-left-content {
height: calc(100vh - 40px);
color: #FFFFFF;
font-family: ;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.document-left-content span {
display: block;
margin-top: 40px;
}
.document-time {
font-size: 48px;
}
.document-title {
font-size: 38px;
letter-spacing: 1px;
line-height: 60px;
}
.document-date,
.document-num {
font-size: 24px;
}
.document-left-bottom {
background: #da251e;
height: 40px;
width: 33vw;
}
</style>
<script src="../../officecontrol/jquery.js"></script>
<script type="text/javascript">
function show(data) {
$("#meetingName").html(data.meetingName);
$("#meetingItem").html("评标");
$("#meetingTimes").html(data.meetingTimes);
$("#num").html("(该会议室最多可容纳人数:" + data.roomCapacity + "");
$("#bookBy").html(data.bookBy);
$("#bookTel").html(data.bookTel);
}
function hidden() {
$("#meetingName").html("——");
$("#meetingItem").html("——");
$("#meetingTimes").html("——");
$("#num").html("(该会议室最多可容纳人数:--");
$("#bookBy").html("——");
$("#bookTel").html("——");
}
function time() {
var now = new Date(); // 获取当前时间
var year = now.getFullYear(); // 获取年份
var month = now.getMonth() + 1; // 获取月份(从0开始计数)
var day = now.getDate(); // 获取日期
var hour = now.getHours(); // 获取小时
var minute = now.getMinutes(); // 获取分钟
var second = now.getSeconds(); // 获取秒钟
var weekday = now.getDay(); // 获取星期几(从0开始计数0代表星期日)
var weekMap = { 0: "星期日", 1: "星期一", 2: "星期二", 3: "星期三", 4: "星期四", 5: "星期五", 6: "星期六" };
$("#time").html((hour < 10 ? "0" + hour : hour) + ":" + (minute < 10 ? "0" + minute : minute) + ":" + (second < 10 ? "0" + second : second));
$("#date").html(year + "." + month + "." + day + " " + weekMap[weekday]);
}
function search() {
$.ajax({
url: "/api/biz-service-ebtp-evaluation/v1/informationscreen/getInformationScreenToday/0022",
type: "GET",
success: function (res) {
if (res.data) {
show(res.data);
}
},
error: function (re) {
hidden();
}
});
}
search();
var interval1 = setInterval(function () {
search();
}, 600000);
var interval2 = setInterval(function () {
time();
}, 1000);
var elem = document.documentElement;
function openFullscreen() {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.webkitRequestFullscreen) { /* Safari */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE11 */
elem.msRequestFullscreen();
}
}
function closeFullscreen() {
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.webkitExitFullscreen) { /* Safari */
document.webkitExitFullscreen();
} else if (document.msExitFullscreen) { /* IE11 */
document.msExitFullscreen();
}
}
document.addEventListener('click', function () {
if (document.fullscreenElement) {
closeFullscreen();
} else {
openFullscreen();
}
});
</script>
</html>

25
public/logo.svg Normal file
View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 115.9 87.3" style="enable-background:new 0 0 115.9 87.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<g id="图层_1-2">
<path class="st0" d="M111.5,33c-5.8-5.9-15.3-5.9-21.2-0.1c0,0-0.1,0.1-0.1,0.1l-3.7,3.7L81,31.1l-7,7l5.5,5.5L74,49.2l7,7
l5.6-5.5l3.7,3.7c5.9,5.9,15.4,5.9,21.3,0C117.4,48.4,117.4,38.9,111.5,33L111.5,33 M104.5,47.3c-2,2-5.3,2-7.3,0c0,0,0,0,0,0
l-3.7-3.7l3.7-3.6c2-2,5.3-2,7.3,0C106.5,42,106.5,45.3,104.5,47.3"/>
<path class="st0" d="M0,43.7c-0.1,8.3,6.6,15,14.9,15.1c4,0,7.9-1.6,10.8-4.5l3.7-3.7l5.6,5.5l7-7l-5.6-5.5l5.6-5.5l-7-7l-5.5,5.5
L25.7,33c-5.8-5.9-15.3-6-21.2-0.1C1.6,35.7,0,39.6,0,43.7 M9.9,43.7c0-2.9,2.4-5.2,5.2-5.2c1.4,0,2.7,0.6,3.6,1.5l3.7,3.7
l-3.7,3.7c-2,2-5.3,2-7.3,0C10.4,46.3,9.9,45,9.9,43.7"/>
<path class="st0" d="M64.9,43.7l18-18c5.9-5.9,5.9-15.4,0-21.3s-15.4-5.9-21.3,0L58,8.1l-3.7-3.7c-5.9-5.9-15.4-5.9-21.3,0
s-5.9,15.4,0,21.3l0,0l18,18l-18,18c-5.9,5.9-5.8,15.4,0,21.3s15.4,5.8,21.3,0l3.7-3.7c0,0,1.3,1.4,3.7,3.7
c5.9,5.9,15.4,5.9,21.3,0c5.9-5.9,5.9-15.4,0-21.3L64.9,43.7 M40,18.7c-2.1-2-2.2-5.2-0.3-7.3c2-2.1,5.2-2.2,7.3-0.3
c0.1,0.1,0.2,0.2,0.3,0.3c1.9,2,3.7,3.6,3.7,3.6l-5.5,5.5l7,7L58,22l5.5,5.5l7-7L64.9,15c0,0,1.7-1.7,3.7-3.7
c2.1-2,5.4-1.8,7.3,0.3c1.9,2,1.9,5.1,0,7.1l-18,18C57.9,36.7,42.1,20.8,40,18.7 M75.9,75.9c-2,2-5.3,2-7.3,0
c-1.9-2-3.7-3.7-3.7-3.7l5.6-5.5l-7-7L58,65.3l-5.5-5.5l-7,7l5.5,5.5l-3.7,3.7c-2,2-5.3,2-7.3,0c-2-2-2-5.3,0-7.3l0,0
c2.1-2.1,18-18,18-18l18,18C78,70.6,78,73.9,75.9,75.9"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

5
public/pro_icon.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="42" height="42" xmlns="http://www.w3.org/2000/svg">
<g>
<path fill="#070707" d="m6.717392,13.773912l5.6,0c2.8,0 4.7,1.9 4.7,4.7c0,2.8 -2,4.7 -4.9,4.7l-2.5,0l0,4.3l-2.9,0l0,-13.7zm2.9,2.2l0,4.9l1.9,0c1.6,0 2.6,-0.9 2.6,-2.4c0,-1.6 -0.9,-2.4 -2.6,-2.4l-1.9,0l0,-0.1zm8.9,11.5l2.7,0l0,-5.7c0,-1.4 0.8,-2.3 2.2,-2.3c0.4,0 0.8,0.1 1,0.2l0,-2.4c-0.2,-0.1 -0.5,-0.1 -0.8,-0.1c-1.2,0 -2.1,0.7 -2.4,2l-0.1,0l0,-1.9l-2.7,0l0,10.2l0.1,0zm11.7,0.1c-3.1,0 -5,-2 -5,-5.3c0,-3.3 2,-5.3 5,-5.3s5,2 5,5.3c0,3.4 -1.9,5.3 -5,5.3zm0,-2.1c1.4,0 2.2,-1.1 2.2,-3.2c0,-2 -0.8,-3.2 -2.2,-3.2c-1.4,0 -2.2,1.2 -2.2,3.2c0,2.1 0.8,3.2 2.2,3.2z" class="st0" id="Ant-Design-Pro"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 677 B

File diff suppressed because one or more lines are too long

1
public/screen/jsencrypt.min.js vendored Normal file

File diff suppressed because one or more lines are too long