Commit 090d8440147f044f8b2659488b0c95f99c357398

Authored by vben
1 parent 013cb7f1

fix: type, #1347

index.html
@@ -48,7 +48,6 @@ @@ -48,7 +48,6 @@
48 left: 50%; 48 left: 50%;
49 display: flex; 49 display: flex;
50 transform: translate3d(-50%, -50%, 0); 50 transform: translate3d(-50%, -50%, 0);
51 - transform: translate3d(-50%, -50%, 0);  
52 justify-content: center; 51 justify-content: center;
53 align-items: center; 52 align-items: center;
54 flex-direction: column; 53 flex-direction: column;
@@ -111,32 +110,27 @@ @@ -111,32 +110,27 @@
111 top: 0; 110 top: 0;
112 right: 0; 111 right: 0;
113 animation-delay: 0.4s; 112 animation-delay: 0.4s;
114 - animation-delay: 0.4s;  
115 } 113 }
116 114
117 .dot i:nth-child(3) { 115 .dot i:nth-child(3) {
118 right: 0; 116 right: 0;
119 bottom: 0; 117 bottom: 0;
120 animation-delay: 0.8s; 118 animation-delay: 0.8s;
121 - animation-delay: 0.8s;  
122 } 119 }
123 120
124 .dot i:nth-child(4) { 121 .dot i:nth-child(4) {
125 bottom: 0; 122 bottom: 0;
126 left: 0; 123 left: 0;
127 animation-delay: 1.2s; 124 animation-delay: 1.2s;
128 - animation-delay: 1.2s;  
129 } 125 }
130 @keyframes antRotate { 126 @keyframes antRotate {
131 to { 127 to {
132 transform: rotate(405deg); 128 transform: rotate(405deg);
133 - transform: rotate(405deg);  
134 } 129 }
135 } 130 }
136 @keyframes antRotate { 131 @keyframes antRotate {
137 to { 132 to {
138 transform: rotate(405deg); 133 transform: rotate(405deg);
139 - transform: rotate(405deg);  
140 } 134 }
141 } 135 }
142 @keyframes antSpinMove { 136 @keyframes antSpinMove {
src/utils/dateUtil.ts
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 import moment from 'moment'; 4 import moment from 'moment';
5 5
6 const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss'; 6 const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss';
7 -const DATE_FORMAT = 'YYYY-MM-DD '; 7 +const DATE_FORMAT = 'YYYY-MM-DD';
8 8
9 export function formatToDateTime( 9 export function formatToDateTime(
10 date: moment.MomentInput = undefined, 10 date: moment.MomentInput = undefined,
windi.config.ts
@@ -27,7 +27,7 @@ export default defineConfig({ @@ -27,7 +27,7 @@ export default defineConfig({
27 * Used for animation when the element is displayed 27 * Used for animation when the element is displayed
28 * @param maxOutput The larger the maxOutput output, the larger the generated css volume 28 * @param maxOutput The larger the maxOutput output, the larger the generated css volume
29 */ 29 */
30 -function createEnterPlugin(maxOutput = 7) { 30 +function createEnterPlugin(maxOutput = 6) {
31 const createCss = (index: number, d = 'x') => { 31 const createCss = (index: number, d = 'x') => {
32 const upd = d.toUpperCase(); 32 const upd = d.toUpperCase();
33 return { 33 return {