@zkwq/business 0.0.78 → 0.0.80

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.
@@ -9,7 +9,7 @@
9
9
 
10
10
 
11
11
 
12
- [data-v-cb382cc4]:export {
12
+ [data-v-1ab2e75e]:export {
13
13
  primary: #2F3A91;
14
14
  success: #67C23A;
15
15
  warning: #FF791A;
@@ -72,7 +72,7 @@
72
72
 
73
73
 
74
74
 
75
- .aggs_item[data-v-cb382cc4] {
75
+ .aggs_item[data-v-1ab2e75e] {
76
76
  width: 100%;
77
77
  height: auto;
78
78
  overflow: hidden;
@@ -81,12 +81,12 @@
81
81
  padding-bottom: 12px;
82
82
  border-bottom: 1px solid #DCDFE6;
83
83
  }
84
- .aggs_item .name[data-v-cb382cc4] {
84
+ .aggs_item .name[data-v-1ab2e75e] {
85
85
  width: 100px;
86
86
  color: #8590a6;
87
87
  padding: 2px 8px;
88
88
  }
89
- .aggs_item .item[data-v-cb382cc4] {
89
+ .aggs_item .item[data-v-1ab2e75e] {
90
90
  flex: 1;
91
91
  height: auto;
92
92
  overflow: hidden;
@@ -94,23 +94,23 @@
94
94
  flex-direction: row;
95
95
  flex-wrap: wrap;
96
96
  }
97
- .aggs_item .item li[data-v-cb382cc4] {
97
+ .aggs_item .item li[data-v-1ab2e75e] {
98
98
  padding: 2px 8px;
99
99
  cursor: pointer;
100
100
  margin: 0px 8px;
101
101
  margin-bottom: 4px;
102
102
  }
103
- .aggs_item .item li[data-v-cb382cc4]:hover {
103
+ .aggs_item .item li[data-v-1ab2e75e]:hover {
104
104
  background: #6d75b2;
105
105
  color: white;
106
106
  border-radius: 4px;
107
107
  }
108
- .aggs_item .item .selected[data-v-cb382cc4] {
108
+ .aggs_item .item .selected[data-v-1ab2e75e] {
109
109
  background: #6d75b2;
110
110
  color: white;
111
111
  border-radius: 4px;
112
112
  }
113
- .aggs_item .more[data-v-cb382cc4] {
113
+ .aggs_item .more[data-v-1ab2e75e] {
114
114
  width: 50px;
115
115
  height: auto;
116
116
  overflow: hidden;
@@ -1 +1 @@
1
- [data-v-cb382cc4]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.aggs_item[data-v-cb382cc4]{width:100%;height:auto;overflow:hidden;display:flex;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #dcdfe6}.aggs_item .name[data-v-cb382cc4]{width:100px;color:#8590a6;padding:2px 8px}.aggs_item .item[data-v-cb382cc4]{flex:1;height:auto;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.aggs_item .item li[data-v-cb382cc4]{padding:2px 8px;cursor:pointer;margin:0 8px;margin-bottom:4px}.aggs_item .item li[data-v-cb382cc4]:hover{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .item .selected[data-v-cb382cc4]{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .more[data-v-cb382cc4]{width:50px;height:auto;overflow:hidden;text-align:center;color:#2f3a91;cursor:pointer;padding-top:4px}
1
+ [data-v-1ab2e75e]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.aggs_item[data-v-1ab2e75e]{width:100%;height:auto;overflow:hidden;display:flex;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #dcdfe6}.aggs_item .name[data-v-1ab2e75e]{width:100px;color:#8590a6;padding:2px 8px}.aggs_item .item[data-v-1ab2e75e]{flex:1;height:auto;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.aggs_item .item li[data-v-1ab2e75e]{padding:2px 8px;cursor:pointer;margin:0 8px;margin-bottom:4px}.aggs_item .item li[data-v-1ab2e75e]:hover{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .item .selected[data-v-1ab2e75e]{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .more[data-v-1ab2e75e]{width:50px;height:auto;overflow:hidden;text-align:center;color:#2f3a91;cursor:pointer;padding-top:4px}
@@ -1,4 +1,47 @@
1
-
1
+ .AppDialog__wrapper.base-dialog__wrapper {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: center;
5
+ overflow-x: hidden;
6
+ overflow-y: auto;
7
+ }
8
+ .AppDialog {
9
+ max-height: 100vh;
10
+ transition: max-height 0.8s ease, height 0.8s ease;
11
+ }
12
+ .AppDialog.base-dialog {
13
+ margin-top: 0 !important;
14
+ margin-bottom: 0 !important;
15
+ }
16
+ .AppDialog .base-dialog__header {
17
+ padding: 0;
18
+ }
19
+ .AppDialog .base-dialog__body {
20
+ padding: 0;
21
+ }
22
+ .AppDialog--fullPage {
23
+ height: 100vh;
24
+ }
25
+ .AppDialog--fullPage.AppDialog .base-dialog__body {
26
+ height: 100%;
27
+ }
28
+ .AppDialog--fullPage.AppDialog .AppDialog__inner {
29
+ height: 100vh;
30
+ overflow: visible;
31
+ }
32
+ .AppDialog--fullPage.AppDialog .AppDialog__content {
33
+ height: 100%;
34
+ }
35
+ .Modal__closeButton {
36
+ position: absolute;
37
+ top: 8px;
38
+ right: -60px;
39
+ padding: 12px;
40
+ }
41
+ .Modal__closeIcon {
42
+ vertical-align: top;
43
+ fill: #FFF;
44
+ }
2
45
 
3
46
 
4
47
 
@@ -116,47 +159,4 @@
116
159
  .AppDialog__subtitle--left[data-v-47783249] {
117
160
  padding: 0 16px;
118
161
  }
119
- }.AppDialog__wrapper.base-dialog__wrapper {
120
- display: flex;
121
- flex-direction: column;
122
- justify-content: center;
123
- overflow-x: hidden;
124
- overflow-y: auto;
125
- }
126
- .AppDialog {
127
- max-height: 100vh;
128
- transition: max-height 0.8s ease, height 0.8s ease;
129
- }
130
- .AppDialog.base-dialog {
131
- margin-top: 0 !important;
132
- margin-bottom: 0 !important;
133
- }
134
- .AppDialog .base-dialog__header {
135
- padding: 0;
136
- }
137
- .AppDialog .base-dialog__body {
138
- padding: 0;
139
- }
140
- .AppDialog--fullPage {
141
- height: 100vh;
142
- }
143
- .AppDialog--fullPage.AppDialog .base-dialog__body {
144
- height: 100%;
145
- }
146
- .AppDialog--fullPage.AppDialog .AppDialog__inner {
147
- height: 100vh;
148
- overflow: visible;
149
- }
150
- .AppDialog--fullPage.AppDialog .AppDialog__content {
151
- height: 100%;
152
- }
153
- .Modal__closeButton {
154
- position: absolute;
155
- top: 8px;
156
- right: -60px;
157
- padding: 12px;
158
- }
159
- .Modal__closeIcon {
160
- vertical-align: top;
161
- fill: #FFF;
162
162
  }
@@ -1 +1 @@
1
- [data-v-47783249]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-47783249]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-47783249]{padding:10px 20px 50px}.AppDialog__title[data-v-47783249]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-47783249]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-47783249]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-47783249]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 16px}}.AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}
1
+ .AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}[data-v-47783249]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-47783249]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-47783249]{padding:10px 20px 50px}.AppDialog__title[data-v-47783249]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-47783249]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-47783249]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-47783249]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 16px}}
@@ -9,7 +9,7 @@
9
9
 
10
10
 
11
11
 
12
- [data-v-896a6628]:export {
12
+ [data-v-2f9bbe5a]:export {
13
13
  primary: #2F3A91;
14
14
  success: #67C23A;
15
15
  warning: #FF791A;
@@ -72,29 +72,29 @@
72
72
 
73
73
 
74
74
 
75
- .DatePicker__warp[data-v-896a6628] {
75
+ .DatePicker__warp[data-v-2f9bbe5a] {
76
76
  width: 100%;
77
77
  display: flex;
78
78
  align-items: center;
79
79
  gap: 12px;
80
80
  }
81
- .setting__icon[data-v-896a6628] {
81
+ .setting__icon[data-v-2f9bbe5a] {
82
82
  display: inline-block;
83
83
  margin-left: 8px;
84
84
  cursor: pointer;
85
85
  }
86
- .format__warp[data-v-896a6628] {
86
+ .format__warp[data-v-2f9bbe5a] {
87
87
  width: 100%;
88
88
  }
89
- .format__warp li[data-v-896a6628] {
89
+ .format__warp li[data-v-2f9bbe5a] {
90
90
  width: calc(100% - 16px);
91
91
  padding: 8px;
92
92
  cursor: pointer;
93
93
  }
94
- .format__warp li[data-v-896a6628]:hover {
94
+ .format__warp li[data-v-2f9bbe5a]:hover {
95
95
  background: #2F3A91;
96
96
  color: white;
97
97
  }
98
- .format__warp .selected[data-v-896a6628] {
98
+ .format__warp .selected[data-v-2f9bbe5a] {
99
99
  color: #2F3A91;
100
100
  }
@@ -1 +1 @@
1
- [data-v-896a6628]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.DatePicker__warp[data-v-896a6628]{width:100%;display:flex;align-items:center;gap:12px}.setting__icon[data-v-896a6628]{display:inline-block;margin-left:8px;cursor:pointer}.format__warp[data-v-896a6628]{width:100%}.format__warp li[data-v-896a6628]{width:calc(100% - 16px);padding:8px;cursor:pointer}.format__warp li[data-v-896a6628]:hover{background:#2f3a91;color:#fff}.format__warp .selected[data-v-896a6628]{color:#2f3a91}
1
+ [data-v-2f9bbe5a]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.DatePicker__warp[data-v-2f9bbe5a]{width:100%;display:flex;align-items:center;gap:12px}.setting__icon[data-v-2f9bbe5a]{display:inline-block;margin-left:8px;cursor:pointer}.format__warp[data-v-2f9bbe5a]{width:100%}.format__warp li[data-v-2f9bbe5a]{width:calc(100% - 16px);padding:8px;cursor:pointer}.format__warp li[data-v-2f9bbe5a]:hover{background:#2f3a91;color:#fff}.format__warp .selected[data-v-2f9bbe5a]{color:#2f3a91}
@@ -48616,7 +48616,7 @@
48616
48616
  .base-transfer__button i, .base-transfer__button span {
48617
48617
  font-size: 14px;
48618
48618
  }
48619
- .base-transfer__button [class*=el-icon-] + span {
48619
+ .base-transfer__button [class*=base-icon-] + span {
48620
48620
  margin-left: 0;
48621
48621
  }
48622
48622
  .base-transfer-panel {