mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
@@ -5,6 +5,7 @@
|
||||
- **任务执行流程优化**. 允许用户在触发任务后跳转到该任务详情页.
|
||||
- **任务展示优化**. 在爬虫详情页的最近任务表格中加入了“参数”列. [#295](https://github.com/crawlab-team/crawlab/issues/295)
|
||||
- **爬虫列表优化**. 在爬虫列表页加入"更新时间"和"创建时间". [#505](https://github.com/crawlab-team/crawlab/issues/505)
|
||||
- **页面加载展位器**.
|
||||
|
||||
### Bug 修复
|
||||
- **定时任务配置失去焦点**. [#519](https://github.com/crawlab-team/crawlab/issues/519)
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
- **Task Execution Process Optimization**. Allow users to be redirected to task detail page after triggering a task.
|
||||
- **Task Display Optimization**. Added "Param" in the Latest Tasks table in the spider detail page. [#295](https://github.com/crawlab-team/crawlab/issues/295)
|
||||
- **Spider List Optimization**. Added "Update Time" and "Create Time" in spider list page.
|
||||
- **Page Loading Placeholder**.
|
||||
|
||||
### Bug Fixes
|
||||
- **Lost Focus in Schedule Configuration**. [#519](https://github.com/crawlab-team/crawlab/issues/519)
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,20 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
|
||||
|
||||
<!-- Place this tag in your head or just before your close body tag. -->
|
||||
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
||||
|
||||
<title>Crawlab</title>
|
||||
</head>
|
||||
<body>
|
||||
<!--<script src=<%= BASE_URL %>/tinymce4.7.5/tinymce.min.js></script>-->
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -9,11 +9,140 @@
|
||||
|
||||
<!-- Place this tag in your head or just before your close body tag. -->
|
||||
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
||||
<style>
|
||||
#app {
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
#loading-placeholder {
|
||||
position: fixed;
|
||||
z-index: -1;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#loading-placeholder .title-wrapper {
|
||||
height: 54px;
|
||||
}
|
||||
|
||||
#loading-placeholder .title {
|
||||
font-family: "Verdana", serif;
|
||||
font-weight: 600;
|
||||
font-size: 48px;
|
||||
color: #409EFF;
|
||||
text-align: center;
|
||||
cursor: default;
|
||||
letter-spacing: -5px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span {
|
||||
display: inline-block;
|
||||
animation: change-shape 1s infinite;
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span:nth-child(1) {
|
||||
animation-delay: calc(1s / 7 * 0 / 2);
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span:nth-child(2) {
|
||||
animation-delay: calc(1s / 7 * 1 / 2);
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span:nth-child(3) {
|
||||
animation-delay: calc(1s / 7 * 2 / 2);
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span:nth-child(4) {
|
||||
animation-delay: calc(1s / 7 * 3 / 2);
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span:nth-child(5) {
|
||||
animation-delay: calc(1s / 7 * 4 / 2);
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span:nth-child(6) {
|
||||
animation-delay: calc(1s / 7 * 5 / 2);
|
||||
}
|
||||
|
||||
#loading-placeholder .title > span:nth-child(7) {
|
||||
animation-delay: calc(1s / 7 * 6 / 2);
|
||||
}
|
||||
|
||||
#loading-placeholder .loading-text {
|
||||
text-align: center;
|
||||
font-weight: bolder;
|
||||
font-family: "Verdana", serif;
|
||||
font-style: italic;
|
||||
color: #889aa4;
|
||||
font-size: 18px;
|
||||
animation: blink-loading 2s ease-in infinite;
|
||||
}
|
||||
|
||||
@keyframes blink-loading {
|
||||
0% {
|
||||
opacity: 100%;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 50%;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes change-shape {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
25% {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<title>Crawlab</title>
|
||||
</head>
|
||||
<body>
|
||||
<!--<script src=<%= BASE_URL %>/tinymce4.7.5/tinymce.min.js></script>-->
|
||||
<div id="loading-placeholder">
|
||||
<div style="margin-bottom: 150px">
|
||||
<div class="title-wrapper">
|
||||
<h3 class="title">
|
||||
<span>C</span>
|
||||
<span>R</span>
|
||||
<span>A</span>
|
||||
<span>W</span>
|
||||
<span>L</span>
|
||||
<span>A</span>
|
||||
<span>B</span>
|
||||
</h3>
|
||||
</div>
|
||||
<div class="loading-text">
|
||||
Loading...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
|
||||
@@ -60,6 +60,7 @@ export default {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: white;
|
||||
|
||||
&.mobile.openSidebar {
|
||||
position: fixed;
|
||||
|
||||
@@ -362,7 +362,7 @@ const initCanvas = () => {
|
||||
</style>
|
||||
|
||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||
$bg: transparent;
|
||||
$bg: white;
|
||||
$dark_gray: #889aa4;
|
||||
$light_gray: #aaa;
|
||||
.login-container {
|
||||
|
||||
Reference in New Issue
Block a user