From 526ca728e1a8a1f75f608adce5473648c94f3426 Mon Sep 17 00:00:00 2001
From: gssong <1742057357@qq.com>
Date: 星期四, 09 五月 2024 21:39:47 +0800
Subject: [PATCH] update 修复模型选人参数异常,调整加签请求路径
---
index.html | 31 ++++++++++++++-----------------
1 files changed, 14 insertions(+), 17 deletions(-)
diff --git a/index.html b/index.html
index c0dab51..aa1c86d 100644
--- a/index.html
+++ b/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html>
<head>
<meta charset="utf-8" />
@@ -9,7 +9,7 @@
<title>RuoYi-Vue-Plus澶氱鎴风鐞嗙郴缁�</title>
<!--[if lt IE 11
]><script>
- window.location.href='/html/ie.html';
+ window.location.href = '/html/ie.html';
</script><!
[endif]-->
<style>
@@ -47,7 +47,7 @@
margin: -75px 0 0 -75px;
border-radius: 50%;
border: 3px solid transparent;
- border-top-color: #FFF;
+ border-top-color: #fff;
-webkit-animation: spin 2s linear infinite;
-ms-animation: spin 2s linear infinite;
-moz-animation: spin 2s linear infinite;
@@ -57,7 +57,7 @@
}
#loader:before {
- content: "";
+ content: '';
position: absolute;
top: 5px;
left: 5px;
@@ -65,7 +65,7 @@
bottom: 5px;
border-radius: 50%;
border: 3px solid transparent;
- border-top-color: #FFF;
+ border-top-color: #fff;
-webkit-animation: spin 3s linear infinite;
-moz-animation: spin 3s linear infinite;
-o-animation: spin 3s linear infinite;
@@ -74,7 +74,7 @@
}
#loader:after {
- content: "";
+ content: '';
position: absolute;
top: 15px;
left: 15px;
@@ -82,14 +82,13 @@
bottom: 15px;
border-radius: 50%;
border: 3px solid transparent;
- border-top-color: #FFF;
+ border-top-color: #fff;
-moz-animation: spin 1.5s linear infinite;
-o-animation: spin 1.5s linear infinite;
-ms-animation: spin 1.5s linear infinite;
-webkit-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite;
}
-
@-webkit-keyframes spin {
0% {
@@ -119,13 +118,12 @@
}
}
-
#loader-wrapper .loader-section {
position: fixed;
top: 0;
width: 51%;
height: 100%;
- background: #7171C6;
+ background: #7171c6;
z-index: 1000;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
@@ -140,21 +138,20 @@
right: 0;
}
-
.loaded #loader-wrapper .loader-section.section-left {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%);
- -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
- transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
+ -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
+ transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
- -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
- transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
+ -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
+ transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
@@ -182,7 +179,7 @@
#loader-wrapper .load_title {
font-family: 'Open Sans';
- color: #FFF;
+ color: #fff;
font-size: 19px;
width: 100%;
text-align: center;
@@ -197,7 +194,7 @@
font-weight: normal;
font-style: italic;
font-size: 13px;
- color: #FFF;
+ color: #fff;
opacity: 0.5;
}
</style>
--
Gitblit v1.9.3