Commit 090d8440147f044f8b2659488b0c95f99c357398

Authored by vben
1 parent 013cb7f1

fix: type, #1347

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