n20-common-lib 2.6.65 → 2.7.0-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -20
- package/src/assets/css/cl-file-upload-table.scss +8 -1
- package/src/assets/css/cl-layout-header.scss +23 -0
- package/src/assets/css/cl-message.scss +55 -1
- package/src/assets/css/cl-pagination.scss +4 -34
- package/src/assets/css/el-table.scss +16 -7
- package/src/assets/css/filter.scss +1 -5
- package/src/assets/css/font-icon.scss +8 -0
- package/src/assets/css/normalize.scss +20 -5
- package/src/assets/getJsonc.js +2 -2
- package/src/assets/iconFont5/demo_index.html +233 -3
- package/src/assets/iconFont5/iconfont.css +43 -3
- package/src/assets/iconFont5/iconfont.js +1 -1
- package/src/assets/iconFont5/iconfont.json +70 -0
- package/src/assets/iconFont5/iconfont.ttf +0 -0
- package/src/assets/iconFont5/iconfont.woff +0 -0
- package/src/assets/iconFont5/iconfont.woff2 +0 -0
- package/src/assets/realUrl.js +1 -1
- package/src/components/AdvancedFilter/formItemRender.vue +29 -60
- package/src/components/AdvancedFilter/index.vue +6 -40
- package/src/components/Anchor/AnchorItem.vue +0 -5
- package/src/components/Anchor/index.vue +1 -23
- package/src/components/ApprovalButtons/index.vue +4 -12
- package/src/components/ApprovalCard/index.vue +1 -1
- package/src/components/Descriptions/index.vue +0 -4
- package/src/components/Dialog/index.vue +5 -0
- package/src/components/ElectronicArchive/index.vue +912 -0
- package/src/components/FileUploadTable/index.vue +17 -17
- package/src/components/InputNumber/index.vue +0 -1
- package/src/components/Layout/HeaderWrap/indexN.vue +103 -18
- package/src/components/Layout/HeaderWrap/menuDrawer.vue +28 -0
- package/src/components/Layout/indexN.vue +3 -14
- package/src/components/LoginTemporary/utils.js +2 -1
- package/src/components/Pagination/index.vue +137 -25
- package/src/components/Pagination/mixins/index.js +39 -0
- package/src/components/SecondaryTab/index.vue +1 -27
- package/src/components/TablePro/filterContent.vue +279 -0
- package/src/components/TablePro/filterContent_tree.vue +172 -0
- package/src/components/TablePro/index.js +30 -0
- package/src/components/TablePro/index.vue +3 -2
- package/src/directives/VRuleKey/index.js +1 -1
- package/src/index.js +9 -0
- package/style/fonts/{iconfont.72eacf7d.ttf → iconfont.06971f9f.ttf} +0 -0
- package/style/fonts/iconfont.84848783.woff2 +0 -0
- package/style/fonts/iconfont.a3597821.woff +0 -0
- package/style/index.css +2 -2
- package/theme/blue.css +2 -2
- package/theme/cctcRed.css +2 -2
- package/theme/fonts/{iconfont.72eacf7d.ttf → iconfont.06971f9f.ttf} +0 -0
- package/theme/fonts/iconfont.84848783.woff2 +0 -0
- package/theme/fonts/iconfont.a3597821.woff +0 -0
- package/theme/green.css +2 -2
- package/theme/lightBlue.css +2 -2
- package/theme/orange.css +2 -2
- package/theme/purple.css +2 -2
- package/theme/red.css +2 -2
- package/theme/yellow.css +2 -2
- package/src/components/Pagination/remotePagination.vue +0 -201
- package/src/components/Pagination/staticPagination.vue +0 -156
- package/style/fonts/iconfont.384a1d95.woff +0 -0
- package/style/fonts/iconfont.72a1a997.woff2 +0 -0
- package/theme/fonts/iconfont.384a1d95.woff +0 -0
- package/theme/fonts/iconfont.72a1a997.woff2 +0 -0
package/package.json
CHANGED
|
@@ -1,26 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n20-common-lib",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0-beta",
|
|
4
4
|
"private": false,
|
|
5
|
+
"main": "src/index.js",
|
|
5
6
|
"scripts": {
|
|
7
|
+
"dev": "vue-cli-service serve --doc",
|
|
8
|
+
"build:docs": "vue-cli-service build --doc",
|
|
6
9
|
"serve": "vue-cli-service serve",
|
|
10
|
+
"serve:theme": "vue-cli-service serve --testTheme",
|
|
11
|
+
"test": "vue-cli-service serve --test",
|
|
7
12
|
"build": "node versionInfo.js && npm run build:css && vue-cli-service build --testTheme",
|
|
8
|
-
"test:unit": "vue-cli-service test:unit",
|
|
9
13
|
"lint": "vue-cli-service lint",
|
|
14
|
+
"info": "node versionInfo.js",
|
|
10
15
|
"build:Jenkins_1": "vue-cli-service build --serverConfig ./server-config-jenkins.jsonc",
|
|
11
|
-
"build:css": "node build_css",
|
|
12
|
-
"build:doc": "node versionInfo.js && vue-cli-service build --testTheme",
|
|
13
|
-
"build:docs": "vue-cli-service build --doc",
|
|
14
16
|
"build:gzip": "vue-cli-service build --gzip",
|
|
15
|
-
"build:js": "vue-cli-service build --formats umd-min --target lib src/index.js --name index --dest lib --analy",
|
|
16
17
|
"build:report": "vue-cli-service build --analy",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"test": "vue-cli-service serve --test"
|
|
18
|
+
"build:css": "node build_css",
|
|
19
|
+
"build:js": "vue-cli-service build --formats umd-min --target lib src/index.js --name index --dest lib --analy",
|
|
20
|
+
"build:doc": "node versionInfo.js && vue-cli-service build --testTheme",
|
|
21
|
+
"getI18n": "node ./node_modules/nstc-get-i18n"
|
|
22
22
|
},
|
|
23
|
-
"main": "src/index.js",
|
|
24
23
|
"files": [
|
|
25
24
|
"src/_qiankun",
|
|
26
25
|
"src/assets",
|
|
@@ -60,22 +59,17 @@
|
|
|
60
59
|
"qrcode": "*",
|
|
61
60
|
"resize-detector": "*",
|
|
62
61
|
"strip-json-comments": "*",
|
|
63
|
-
"vuedraggable": "*",
|
|
64
62
|
"v-viewer": "1.6.4",
|
|
65
|
-
"
|
|
63
|
+
"vuedraggable": "*"
|
|
66
64
|
},
|
|
67
65
|
"devDependencies": {
|
|
68
66
|
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
|
|
69
67
|
"@babel/plugin-transform-flow-comments": "^7.14.5",
|
|
70
68
|
"@vue/cli-plugin-babel": "~4.5.0",
|
|
71
69
|
"@vue/cli-plugin-eslint": "~4.5.0",
|
|
72
|
-
"@vue/cli-plugin-unit-jest": "^5.0.8",
|
|
73
70
|
"@vue/cli-service": "~4.5.0",
|
|
74
71
|
"@vue/compiler-dom": "^3.2.47",
|
|
75
|
-
"@vue/test-utils": "^1.1.3",
|
|
76
|
-
"@vue/vue2-jest": "^27.0.0-alpha.2",
|
|
77
72
|
"babel-eslint": "^10.1.0",
|
|
78
|
-
"babel-jest": "^27.0.6",
|
|
79
73
|
"babel-plugin-component": "^1.1.1",
|
|
80
74
|
"clipboard": "^2.0.11",
|
|
81
75
|
"compression-webpack-plugin": "^3.1.0",
|
|
@@ -89,7 +83,6 @@
|
|
|
89
83
|
"file-saver": "^2.0.5",
|
|
90
84
|
"fuse.js": "^6.6.2",
|
|
91
85
|
"html-webpack-tags-plugin": "^2.0.17",
|
|
92
|
-
"jest": "^27.0.5",
|
|
93
86
|
"jszip": "^3.10.0",
|
|
94
87
|
"lodash": "^4.17.21",
|
|
95
88
|
"md2vue-loader": "file:./md2vue-loader",
|
|
@@ -110,12 +103,12 @@
|
|
|
110
103
|
"vue": "^2.6.11",
|
|
111
104
|
"vue-cli-plugin-axios": "~0.0.4",
|
|
112
105
|
"vue-grid-layout": "^2.3.12",
|
|
113
|
-
"vue-jest": "^3.0.7",
|
|
114
106
|
"vue-router": "^3.5.2",
|
|
115
107
|
"vue-template-compiler": "^2.6.11",
|
|
116
108
|
"vuex": "^3.6.2",
|
|
117
109
|
"vxe-table": "^3.6.17",
|
|
118
110
|
"webpack-bundle-analyzer": "^3.9.0",
|
|
111
|
+
"xe-utils": "^3.5.11",
|
|
119
112
|
"xlsx": "0.14.1",
|
|
120
113
|
"xlsx-style": "^0.8.13"
|
|
121
114
|
},
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
.file-upload-table
|
|
1
|
+
.file-upload-table,
|
|
2
|
+
.n20-ElectronicArchive {
|
|
2
3
|
.el-table {
|
|
3
4
|
border-top: $--tab-border-line;
|
|
4
5
|
border-left: $--tab-border-line;
|
|
@@ -29,4 +30,10 @@
|
|
|
29
30
|
.el-upload {
|
|
30
31
|
display: block;
|
|
31
32
|
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.electronicArchive-messageBox {
|
|
36
|
+
.el-message-box__btns {
|
|
37
|
+
margin-top: 0;
|
|
38
|
+
}
|
|
32
39
|
}
|
|
@@ -6,6 +6,14 @@ $--header-color: #3d4a57;
|
|
|
6
6
|
height: 26px;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
.header_change_system_box {
|
|
10
|
+
&:hover {
|
|
11
|
+
background-color: #f5f5f5;
|
|
12
|
+
padding: 4px;
|
|
13
|
+
border-radius: $--border-radius-base;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
9
17
|
.header-color {
|
|
10
18
|
color: var(--header-color, $--header-color);
|
|
11
19
|
}
|
|
@@ -270,4 +278,19 @@ $--header-color: #3d4a57;
|
|
|
270
278
|
margin-left: 34px;
|
|
271
279
|
line-height: 20px;
|
|
272
280
|
color: #333333;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.header-menu-drawer.el-drawer.ttb {
|
|
284
|
+
top: 48px;
|
|
285
|
+
left: 190px;
|
|
286
|
+
width: calc(100% - 190px);
|
|
287
|
+
|
|
288
|
+
.header_flex-base {
|
|
289
|
+
flex-basis: 33.33%;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.header_menu_box {
|
|
293
|
+
padding-top: 48px;
|
|
294
|
+
padding-left: 105px;
|
|
295
|
+
}
|
|
273
296
|
}
|
|
@@ -57,6 +57,60 @@
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
.ElectronicArchive_msgboxPor.el-message-box {
|
|
61
|
+
box-sizing: border-box;
|
|
62
|
+
padding: 32px 32px 24px;
|
|
63
|
+
|
|
64
|
+
.el-message-box__header {
|
|
65
|
+
padding: 0;
|
|
66
|
+
margin-bottom: 12px;
|
|
67
|
+
|
|
68
|
+
.n20-icon-xinxi {
|
|
69
|
+
color: #ffbf00;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.el-message-box__status.el-icon-warning {
|
|
73
|
+
color: #ffbf00;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.el-message-box__content {
|
|
78
|
+
padding: 0;
|
|
79
|
+
margin-top: 12px;
|
|
80
|
+
margin-bottom: 12px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.el-message-box__btns {
|
|
84
|
+
margin-top: 0;
|
|
85
|
+
padding-left: 0;
|
|
86
|
+
padding-right: 0;
|
|
87
|
+
display: flex;
|
|
88
|
+
justify-content: center;
|
|
89
|
+
flex-direction: row-reverse;
|
|
90
|
+
|
|
91
|
+
.el-button.el-button--default:hover {
|
|
92
|
+
color: var(--color-primary);
|
|
93
|
+
background: #ffffff;
|
|
94
|
+
border-color: var(--color-primary);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.el-button.el-button--primary:hover {
|
|
98
|
+
background: var(--color-primary-hover);
|
|
99
|
+
color: #fff;
|
|
100
|
+
border-color: var(--color-primary-hover);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
& .el-button+.el-button {
|
|
104
|
+
margin-left: 0;
|
|
105
|
+
margin-right: 16px;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.el-message-box__headerbtn {
|
|
110
|
+
top: -15px;
|
|
111
|
+
right: -15px;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
60
114
|
.header-show-icon {
|
|
61
115
|
.el-message-box__title {
|
|
62
116
|
justify-content: flex-start;
|
|
@@ -157,4 +211,4 @@
|
|
|
157
211
|
|
|
158
212
|
.el-message-box__status.el-icon-info {
|
|
159
213
|
color: $--messagebox-warning-color;
|
|
160
|
-
}
|
|
214
|
+
}
|
|
@@ -1,45 +1,35 @@
|
|
|
1
1
|
.n20-pagination-1 {
|
|
2
2
|
display: inline-block;
|
|
3
3
|
padding-right: 5px;
|
|
4
|
-
|
|
5
|
-
>* {
|
|
4
|
+
> * {
|
|
6
5
|
vertical-align: middle;
|
|
7
6
|
}
|
|
8
|
-
|
|
9
7
|
.el-pagination {
|
|
10
8
|
display: inline-block;
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
.btn-prev,
|
|
14
11
|
.btn-next {
|
|
15
12
|
padding-left: 6px;
|
|
16
13
|
padding-right: 6px;
|
|
17
14
|
border: 1px solid $--border-color-base;
|
|
18
|
-
|
|
19
15
|
&:not([disabled]):hover {
|
|
20
16
|
border-color: $--color-primary;
|
|
21
17
|
}
|
|
22
18
|
}
|
|
23
|
-
|
|
24
19
|
.btn-next {
|
|
25
20
|
margin-left: 6px;
|
|
26
21
|
}
|
|
27
|
-
|
|
28
22
|
.el-pagination {
|
|
29
23
|
padding: 1px 5px;
|
|
30
24
|
}
|
|
31
25
|
}
|
|
32
|
-
|
|
33
26
|
.n20-pagination-jumper-1 {
|
|
34
27
|
width: 36px;
|
|
35
|
-
text-align: center;
|
|
36
28
|
margin-left: 6px;
|
|
37
29
|
margin-right: 6px;
|
|
38
|
-
|
|
39
30
|
&.is-without-controls {
|
|
40
31
|
.el-input__inner {
|
|
41
32
|
height: 26px;
|
|
42
|
-
text-align: center;
|
|
43
33
|
line-height: 26px;
|
|
44
34
|
padding-left: 4px;
|
|
45
35
|
padding-right: 4px;
|
|
@@ -47,23 +37,19 @@
|
|
|
47
37
|
}
|
|
48
38
|
}
|
|
49
39
|
}
|
|
50
|
-
|
|
51
40
|
.n20-pagination-sizes-1 {
|
|
52
41
|
.el-radio-button__inner {
|
|
53
42
|
border-radius: 2px !important;
|
|
54
43
|
border: 1px solid $--border-color-base;
|
|
55
44
|
box-shadow: none;
|
|
56
45
|
}
|
|
57
|
-
|
|
58
|
-
.el-radio-button__orig-radio:checked+.el-radio-button__inner {
|
|
46
|
+
.el-radio-button__orig-radio:checked + .el-radio-button__inner {
|
|
59
47
|
border-color: $--color-primary;
|
|
60
48
|
}
|
|
61
49
|
}
|
|
62
|
-
|
|
63
50
|
.n20-pagination-usersizes-1 {
|
|
64
51
|
width: 52px;
|
|
65
52
|
vertical-align: middle;
|
|
66
|
-
|
|
67
53
|
&.is-without-controls {
|
|
68
54
|
.el-input__inner {
|
|
69
55
|
height: 26px;
|
|
@@ -73,7 +59,6 @@
|
|
|
73
59
|
border-radius: 2px;
|
|
74
60
|
}
|
|
75
61
|
}
|
|
76
|
-
|
|
77
62
|
&.is-active {
|
|
78
63
|
.el-input__inner {
|
|
79
64
|
border-color: $--border-color-base;
|
|
@@ -83,81 +68,66 @@
|
|
|
83
68
|
|
|
84
69
|
.n20-pagination {
|
|
85
70
|
display: inline-block;
|
|
86
|
-
|
|
87
|
-
>* {
|
|
71
|
+
> * {
|
|
88
72
|
vertical-align: middle;
|
|
89
73
|
}
|
|
90
|
-
|
|
91
74
|
.el-pagination {
|
|
92
75
|
display: inline-block;
|
|
93
76
|
padding-right: 0;
|
|
94
77
|
}
|
|
95
|
-
|
|
96
78
|
.btn-prev,
|
|
97
79
|
.btn-next {
|
|
98
80
|
padding-left: 6px;
|
|
99
81
|
padding-right: 6px;
|
|
100
82
|
border: 1px solid $--border-color-base;
|
|
101
83
|
border-radius: $--border-radius-small;
|
|
102
|
-
|
|
103
84
|
&:not([disabled]):hover {
|
|
104
85
|
border-color: $--color-primary;
|
|
105
86
|
}
|
|
106
87
|
}
|
|
107
|
-
|
|
108
88
|
.btn-next {
|
|
109
89
|
margin-left: 4px;
|
|
110
90
|
}
|
|
111
|
-
|
|
112
91
|
.el-input__inner {
|
|
113
92
|
height: 26px;
|
|
114
93
|
line-height: 26px;
|
|
115
94
|
}
|
|
116
|
-
|
|
117
95
|
.el-pagination__sizes {
|
|
118
96
|
margin-right: 6px;
|
|
119
|
-
|
|
120
97
|
.el-input {
|
|
121
98
|
width: 85px;
|
|
122
99
|
margin-left: 0;
|
|
123
100
|
margin-right: 0;
|
|
124
101
|
}
|
|
125
|
-
|
|
126
102
|
.el-input .el-input__inner {
|
|
127
103
|
padding-right: 20px;
|
|
128
104
|
}
|
|
129
|
-
|
|
130
105
|
.el-select__caret {
|
|
131
106
|
line-height: 25px;
|
|
132
107
|
position: relative;
|
|
133
108
|
top: -2px;
|
|
134
109
|
}
|
|
135
110
|
}
|
|
136
|
-
|
|
137
111
|
.el-pagination__jump {
|
|
138
112
|
margin-left: 0;
|
|
139
113
|
}
|
|
140
114
|
}
|
|
141
|
-
|
|
142
115
|
.n20-pagination-total,
|
|
143
116
|
.n20-pagination-no {
|
|
144
117
|
min-width: initial !important;
|
|
145
118
|
}
|
|
146
|
-
|
|
147
119
|
.n20-pagination-total {
|
|
148
120
|
margin-left: 4px;
|
|
149
121
|
margin-right: 4px;
|
|
150
122
|
font-weight: normal;
|
|
151
123
|
}
|
|
152
|
-
|
|
153
124
|
.n20-pagination-no {
|
|
154
125
|
color: $--color-primary;
|
|
155
126
|
}
|
|
156
|
-
|
|
157
127
|
.el-pagination__sizes-popper {
|
|
158
128
|
.el-select-dropdown__item {
|
|
159
129
|
padding-left: 12px;
|
|
160
130
|
padding-right: 12px;
|
|
161
131
|
text-align: center;
|
|
162
132
|
}
|
|
163
|
-
}
|
|
133
|
+
}
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
.el-table {
|
|
54
|
+
|
|
54
55
|
/* 排序 */
|
|
55
56
|
.caret-wrapper {
|
|
56
57
|
display: inline-flex;
|
|
@@ -120,6 +121,13 @@
|
|
|
120
121
|
padding: 16px;
|
|
121
122
|
}
|
|
122
123
|
|
|
124
|
+
/* 附件上传hover颜色 */
|
|
125
|
+
.base-table_default {
|
|
126
|
+
.el-table__body .hover-active:hover>td {
|
|
127
|
+
background-color: #FF3C2F10 !important;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
123
131
|
.vxe-table .vxe-cell--sort {
|
|
124
132
|
display: inline-flex !important;
|
|
125
133
|
flex-direction: row-reverse !important;
|
|
@@ -188,16 +196,17 @@ th.vxe-header--column {
|
|
|
188
196
|
color: #333;
|
|
189
197
|
}
|
|
190
198
|
|
|
191
|
-
.vxe-table-custom-wrap.vxe-body--column.col--ellipsis:not(.col--actived)
|
|
192
|
-
.vxe-table--render-default .vxe-table-custom-wrap.vxe-footer--column.col--ellipsis:not(.col--actived)
|
|
193
|
-
.vxe-table--render-default .vxe-table-custom-wrap.vxe-header--column.col--ellipsis:not(.col--actived)
|
|
199
|
+
.vxe-table-custom-wrap.vxe-body--column.col--ellipsis:not(.col--actived)>.vxe-cell,
|
|
200
|
+
.vxe-table--render-default .vxe-table-custom-wrap.vxe-footer--column.col--ellipsis:not(.col--actived)>.vxe-cell,
|
|
201
|
+
.vxe-table--render-default .vxe-table-custom-wrap.vxe-header--column.col--ellipsis:not(.col--actived)>.vxe-cell {
|
|
194
202
|
overflow: hidden;
|
|
195
203
|
text-overflow: ellipsis;
|
|
196
204
|
white-space: wrap !important;
|
|
197
205
|
}
|
|
198
|
-
|
|
199
|
-
.vxe-table--render-default.size--small .vxe-table-custom-wrap.vxe-
|
|
200
|
-
.vxe-table--render-default.size--small .vxe-table-custom-wrap.vxe-
|
|
206
|
+
|
|
207
|
+
.vxe-table--render-default.size--small .vxe-table-custom-wrap.vxe-body--column.col--ellipsis>.vxe-cell,
|
|
208
|
+
.vxe-table--render-default.size--small .vxe-table-custom-wrap.vxe-footer--column.col--ellipsis>.vxe-cell,
|
|
209
|
+
.vxe-table--render-default.size--small .vxe-table-custom-wrap.vxe-header--column.col--ellipsis>.vxe-cell {
|
|
201
210
|
max-height: 100%;
|
|
202
211
|
}
|
|
203
212
|
|
|
@@ -217,4 +226,4 @@ th.vxe-header--column {
|
|
|
217
226
|
.icon-mini {
|
|
218
227
|
background-image: url('../../components/TableSetSize/mini.png');
|
|
219
228
|
}
|
|
220
|
-
}
|
|
229
|
+
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
display: flex;
|
|
9
9
|
align-items: center;
|
|
10
10
|
flex: 1;
|
|
11
|
-
padding: 8px
|
|
11
|
+
padding: 8px;
|
|
12
12
|
|
|
13
13
|
&-item.n20-advanced-filter-active {
|
|
14
14
|
border-color: #b3d0ff;
|
|
@@ -68,10 +68,6 @@
|
|
|
68
68
|
max-width: 380px;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
.n20-date-editor .el-input__prefix {
|
|
72
|
-
display: none;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
71
|
.el-input,
|
|
76
72
|
.el-input__inner {
|
|
77
73
|
border: none;
|
|
@@ -260,7 +260,7 @@ iframe {
|
|
|
260
260
|
.b-center {
|
|
261
261
|
text-align: center;
|
|
262
262
|
|
|
263
|
-
|
|
263
|
+
&>* {
|
|
264
264
|
display: inline-block;
|
|
265
265
|
vertical-align: bottom;
|
|
266
266
|
}
|
|
@@ -269,7 +269,7 @@ iframe {
|
|
|
269
269
|
.b-vertical {
|
|
270
270
|
font-size: 0;
|
|
271
271
|
|
|
272
|
-
|
|
272
|
+
&>* {
|
|
273
273
|
vertical-align: middle;
|
|
274
274
|
display: inline-block;
|
|
275
275
|
font-size: 14px;
|
|
@@ -320,12 +320,22 @@ iframe {
|
|
|
320
320
|
flex-direction: column;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
.flex-box
|
|
324
|
-
.flex-column
|
|
323
|
+
.flex-box>*,
|
|
324
|
+
.flex-column>* {
|
|
325
325
|
flex: none;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
+
|
|
329
|
+
|
|
328
330
|
.flex {
|
|
331
|
+
&-wrap {
|
|
332
|
+
flex-wrap: wrap;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
&-nowrap {
|
|
336
|
+
flex-wrap: nowrap;
|
|
337
|
+
}
|
|
338
|
+
|
|
329
339
|
&-v {
|
|
330
340
|
align-items: center;
|
|
331
341
|
}
|
|
@@ -455,6 +465,7 @@ iframe {
|
|
|
455
465
|
/* 边框
|
|
456
466
|
-------------- */
|
|
457
467
|
.bd {
|
|
468
|
+
|
|
458
469
|
&-none,
|
|
459
470
|
&-0 {
|
|
460
471
|
border: none !important;
|
|
@@ -615,6 +626,7 @@ iframe {
|
|
|
615
626
|
.auto-width-input {
|
|
616
627
|
width: fit-content;
|
|
617
628
|
}
|
|
629
|
+
|
|
618
630
|
.width-auto {
|
|
619
631
|
width: auto !important;
|
|
620
632
|
}
|
|
@@ -800,6 +812,7 @@ $list: 45, 60, 80, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 2
|
|
|
800
812
|
}
|
|
801
813
|
|
|
802
814
|
@keyframes ping {
|
|
815
|
+
|
|
803
816
|
75%,
|
|
804
817
|
100% {
|
|
805
818
|
transform: scale(2);
|
|
@@ -808,6 +821,7 @@ $list: 45, 60, 80, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 2
|
|
|
808
821
|
}
|
|
809
822
|
|
|
810
823
|
@keyframes pulse {
|
|
824
|
+
|
|
811
825
|
0%,
|
|
812
826
|
100% {
|
|
813
827
|
opacity: 1;
|
|
@@ -819,6 +833,7 @@ $list: 45, 60, 80, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 2
|
|
|
819
833
|
}
|
|
820
834
|
|
|
821
835
|
@keyframes bounce {
|
|
836
|
+
|
|
822
837
|
0%,
|
|
823
838
|
100% {
|
|
824
839
|
transform: translateY(-25%);
|
|
@@ -829,4 +844,4 @@ $list: 45, 60, 80, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 2
|
|
|
829
844
|
transform: translateY(0);
|
|
830
845
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
831
846
|
}
|
|
832
|
-
}
|
|
847
|
+
}
|
package/src/assets/getJsonc.js
CHANGED
|
@@ -4,8 +4,8 @@ import realUrl from './realUrl'
|
|
|
4
4
|
/* 前端(内存)缓存 */
|
|
5
5
|
const jsoncs = {}
|
|
6
6
|
|
|
7
|
-
export default function getJsonc(url, sync
|
|
8
|
-
const _url = realUrl(url
|
|
7
|
+
export default function getJsonc(url, sync) {
|
|
8
|
+
const _url = realUrl(url)
|
|
9
9
|
if (sync) {
|
|
10
10
|
if (jsoncs[url + '?sync']) {
|
|
11
11
|
return jsoncs[url + '?sync']
|