cnhis-design-vue 3.1.8-beta.9 → 3.1.9-beta.2
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/README.md +22 -22
- package/es/packages/big-table/index.d.ts +1 -1
- package/es/packages/big-table/src/BigTable.vue.d.ts +1 -1
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.mjs +3 -1
- package/es/packages/big-table/style/index.less +557 -557
- package/es/packages/bpmn-workflow/style/index.less +29 -29
- package/es/packages/button-print/style/index.less +30 -30
- package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +6 -4
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +3 -0
- package/es/packages/chunk-upload/style/index.less +394 -394
- package/es/packages/drag-layout/src/DragLayout.vue.d.ts +8 -5
- package/es/packages/drag-layout/style/index.less +208 -208
- package/es/packages/field-set/style/index.less +157 -157
- package/es/packages/form-render/index.d.ts +2 -1
- package/es/packages/form-render/index.mjs +2 -0
- package/es/packages/form-render/src/FormRender.vue.d.ts +2 -1
- package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +12 -7
- package/es/packages/form-render/src/components/select.d.ts +10 -2
- package/es/packages/form-render/src/components/select.mjs +19 -2
- package/es/packages/form-render/src/constants/index.d.ts +2 -0
- package/es/packages/form-render/src/constants/index.mjs +2 -1
- package/es/packages/form-render/src/hooks/index.d.ts +11 -9
- package/es/packages/form-render/src/hooks/index.mjs +2 -0
- package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +13 -33
- package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +2 -2
- package/es/packages/form-render/src/hooks/useBusinessBinding.mjs +1 -1
- package/es/packages/form-render/src/hooks/useChangeContext.d.ts +11 -0
- package/es/packages/form-render/src/hooks/useChangeContext.mjs +21 -0
- package/es/packages/form-render/src/hooks/useUrlDeps.d.ts +1 -0
- package/es/packages/form-render/src/hooks/useUrlDeps.mjs +4 -0
- package/es/packages/form-render/src/types/index.d.ts +16 -6
- package/es/packages/form-table/style/index.less +301 -301
- package/es/packages/grid/style/index.less +12 -12
- package/es/packages/index.less +2945 -2945
- package/es/packages/index.mjs +2 -0
- package/es/packages/info-header/style/index.less +153 -153
- package/es/packages/map/style/index.less +59 -59
- package/es/packages/scale-view/style/index.less +748 -748
- package/es/packages/select-label/src/LabelFormContent.vue.d.ts +3 -0
- package/es/packages/select-label/style/index.less +151 -151
- package/es/packages/select-person/src/SelectPerson.vue.d.ts +6 -8
- package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +43 -18
- package/es/packages/select-person/src/utils/index.mjs +15 -2
- package/es/packages/select-person/style/index.less +229 -229
- package/es/packages/time-line/style/index.less +34 -34
- package/global.d.ts +8 -8
- package/package.json +1 -1
- package/yarn-error.log +103 -8659
package/es/packages/index.mjs
CHANGED
|
@@ -39,6 +39,8 @@ export { useFieldVisitor } from './form-render/src/hooks/useFieldVisitor.mjs';
|
|
|
39
39
|
export { useTypeNormalize } from './form-render/src/hooks/useTypeNormalize.mjs';
|
|
40
40
|
export { useFormValidator } from './form-render/src/hooks/useFormValidator.mjs';
|
|
41
41
|
export { BusinessCollector, useBusinessBinding } from './form-render/src/hooks/useBusinessBinding.mjs';
|
|
42
|
+
export { ContextCollector, useChangeContext } from './form-render/src/hooks/useChangeContext.mjs';
|
|
43
|
+
export { useUrlDeps } from './form-render/src/hooks/useUrlDeps.mjs';
|
|
42
44
|
|
|
43
45
|
const components = {
|
|
44
46
|
CGrid: Grid,
|
|
@@ -1,153 +1,153 @@
|
|
|
1
|
-
.c-info-header {
|
|
2
|
-
@font-face {
|
|
3
|
-
font-family: "iconfont"; /* Project id 3468756 */
|
|
4
|
-
src: url('./iconfont.ttf?t=1655348824139') format('truetype');
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.iconfont {
|
|
8
|
-
font-family: "iconfont" !important;
|
|
9
|
-
font-size: 16px;
|
|
10
|
-
font-style: normal;
|
|
11
|
-
-webkit-font-smoothing: antialiased;
|
|
12
|
-
-moz-osx-font-smoothing: grayscale;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.icon-double_up:before {
|
|
16
|
-
content: "\e8c3";
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.icon-guanbi-yanjing:before {
|
|
20
|
-
content: "\e6e3";
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.icon-faxian-yanjing:before {
|
|
24
|
-
content: "\e6de";
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.icon-bianji:before {
|
|
28
|
-
content: "\e600";
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.icon-setting:before {
|
|
32
|
-
content: "\e785";
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.icon-double_down:before {
|
|
36
|
-
content: "\e8c2";
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
display: flex;
|
|
41
|
-
align-items: center;
|
|
42
|
-
justify-content: space-between;
|
|
43
|
-
gap: 18px;
|
|
44
|
-
padding: 16px;
|
|
45
|
-
box-shadow: 0 2px 4px 0 rgba(176, 176, 176, 0.46);
|
|
46
|
-
background: white;
|
|
47
|
-
|
|
48
|
-
&__operation {
|
|
49
|
-
//
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
&__divider {
|
|
53
|
-
width: 1px;
|
|
54
|
-
background: #d5d5d566;
|
|
55
|
-
align-self: stretch;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
&__patient {
|
|
59
|
-
display: flex;
|
|
60
|
-
gap: 12px;
|
|
61
|
-
margin-right: 34px;
|
|
62
|
-
|
|
63
|
-
&Header {
|
|
64
|
-
display: flex;
|
|
65
|
-
vertical-align: bottom;
|
|
66
|
-
align-items: baseline;
|
|
67
|
-
gap: 6px;
|
|
68
|
-
|
|
69
|
-
&--name {
|
|
70
|
-
font-size: 20px;
|
|
71
|
-
font-weight: 700;
|
|
72
|
-
margin-right: 6px;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.n-tag {
|
|
76
|
-
align-self: flex-start;
|
|
77
|
-
border-radius: 4px;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
&__info {
|
|
83
|
-
flex: 1;
|
|
84
|
-
display: flex;
|
|
85
|
-
flex-wrap: wrap;
|
|
86
|
-
overflow: hidden;
|
|
87
|
-
justify-content: flex-start;
|
|
88
|
-
height: calc(var(--row-height) * var(--row-num) * 1px);
|
|
89
|
-
|
|
90
|
-
font-size: 14px;
|
|
91
|
-
|
|
92
|
-
td {
|
|
93
|
-
text-align: left;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.n-descriptions-table-content {
|
|
97
|
-
padding-bottom: 0 !important;
|
|
98
|
-
height: calc(var(--row-height) * 1px);
|
|
99
|
-
vertical-align: middle !important;
|
|
100
|
-
max-width: calc(var(--column-width) * 1px);
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.n-descriptions-table-content__content {
|
|
104
|
-
font-weight: 700;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.n-descriptions-table-content__label {
|
|
108
|
-
display: inline-block;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
&__setting {
|
|
113
|
-
display: flex;
|
|
114
|
-
align-self: flex-start;
|
|
115
|
-
gap: 8px;
|
|
116
|
-
|
|
117
|
-
&Icon {
|
|
118
|
-
cursor: pointer;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.iconfont {
|
|
122
|
-
font-size: 20px;
|
|
123
|
-
color: black;
|
|
124
|
-
display: inline-block;
|
|
125
|
-
transition: all .2s ease-in-out;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
&.is-compact {
|
|
130
|
-
[compact-hidden] {
|
|
131
|
-
display: none !important;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.icon-double_down {
|
|
135
|
-
transform: rotate(180deg);
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
&__hidden {
|
|
140
|
-
display: inline-flex;
|
|
141
|
-
vertical-align: middle;
|
|
142
|
-
align-items: center;
|
|
143
|
-
gap: 8px;
|
|
144
|
-
font-size: 14px;
|
|
145
|
-
|
|
146
|
-
&--icon {
|
|
147
|
-
color: inherit !important;
|
|
148
|
-
cursor: pointer;
|
|
149
|
-
font-size: 14px;
|
|
150
|
-
text-decoration: none !important;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
}
|
|
1
|
+
.c-info-header {
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: "iconfont"; /* Project id 3468756 */
|
|
4
|
+
src: url('./iconfont.ttf?t=1655348824139') format('truetype');
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.iconfont {
|
|
8
|
+
font-family: "iconfont" !important;
|
|
9
|
+
font-size: 16px;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
-webkit-font-smoothing: antialiased;
|
|
12
|
+
-moz-osx-font-smoothing: grayscale;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.icon-double_up:before {
|
|
16
|
+
content: "\e8c3";
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.icon-guanbi-yanjing:before {
|
|
20
|
+
content: "\e6e3";
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.icon-faxian-yanjing:before {
|
|
24
|
+
content: "\e6de";
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.icon-bianji:before {
|
|
28
|
+
content: "\e600";
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.icon-setting:before {
|
|
32
|
+
content: "\e785";
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.icon-double_down:before {
|
|
36
|
+
content: "\e8c2";
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
justify-content: space-between;
|
|
43
|
+
gap: 18px;
|
|
44
|
+
padding: 16px;
|
|
45
|
+
box-shadow: 0 2px 4px 0 rgba(176, 176, 176, 0.46);
|
|
46
|
+
background: white;
|
|
47
|
+
|
|
48
|
+
&__operation {
|
|
49
|
+
//
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&__divider {
|
|
53
|
+
width: 1px;
|
|
54
|
+
background: #d5d5d566;
|
|
55
|
+
align-self: stretch;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&__patient {
|
|
59
|
+
display: flex;
|
|
60
|
+
gap: 12px;
|
|
61
|
+
margin-right: 34px;
|
|
62
|
+
|
|
63
|
+
&Header {
|
|
64
|
+
display: flex;
|
|
65
|
+
vertical-align: bottom;
|
|
66
|
+
align-items: baseline;
|
|
67
|
+
gap: 6px;
|
|
68
|
+
|
|
69
|
+
&--name {
|
|
70
|
+
font-size: 20px;
|
|
71
|
+
font-weight: 700;
|
|
72
|
+
margin-right: 6px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.n-tag {
|
|
76
|
+
align-self: flex-start;
|
|
77
|
+
border-radius: 4px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&__info {
|
|
83
|
+
flex: 1;
|
|
84
|
+
display: flex;
|
|
85
|
+
flex-wrap: wrap;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
justify-content: flex-start;
|
|
88
|
+
height: calc(var(--row-height) * var(--row-num) * 1px);
|
|
89
|
+
|
|
90
|
+
font-size: 14px;
|
|
91
|
+
|
|
92
|
+
td {
|
|
93
|
+
text-align: left;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.n-descriptions-table-content {
|
|
97
|
+
padding-bottom: 0 !important;
|
|
98
|
+
height: calc(var(--row-height) * 1px);
|
|
99
|
+
vertical-align: middle !important;
|
|
100
|
+
max-width: calc(var(--column-width) * 1px);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.n-descriptions-table-content__content {
|
|
104
|
+
font-weight: 700;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.n-descriptions-table-content__label {
|
|
108
|
+
display: inline-block;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&__setting {
|
|
113
|
+
display: flex;
|
|
114
|
+
align-self: flex-start;
|
|
115
|
+
gap: 8px;
|
|
116
|
+
|
|
117
|
+
&Icon {
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.iconfont {
|
|
122
|
+
font-size: 20px;
|
|
123
|
+
color: black;
|
|
124
|
+
display: inline-block;
|
|
125
|
+
transition: all .2s ease-in-out;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&.is-compact {
|
|
130
|
+
[compact-hidden] {
|
|
131
|
+
display: none !important;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.icon-double_down {
|
|
135
|
+
transform: rotate(180deg);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
&__hidden {
|
|
140
|
+
display: inline-flex;
|
|
141
|
+
vertical-align: middle;
|
|
142
|
+
align-items: center;
|
|
143
|
+
gap: 8px;
|
|
144
|
+
font-size: 14px;
|
|
145
|
+
|
|
146
|
+
&--icon {
|
|
147
|
+
color: inherit !important;
|
|
148
|
+
cursor: pointer;
|
|
149
|
+
font-size: 14px;
|
|
150
|
+
text-decoration: none !important;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
.c-map {
|
|
2
|
-
width: 100%;
|
|
3
|
-
min-height: 500px;
|
|
4
|
-
height: 100%;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
text-align: left;
|
|
7
|
-
ul,li {
|
|
8
|
-
list-style: none;
|
|
9
|
-
margin: 0;
|
|
10
|
-
padding: 0;
|
|
11
|
-
}
|
|
12
|
-
#map-core {
|
|
13
|
-
width: 100%;
|
|
14
|
-
height: 250px;
|
|
15
|
-
}
|
|
16
|
-
.search-container {
|
|
17
|
-
margin-top: 20px;
|
|
18
|
-
height: 40px;
|
|
19
|
-
.map-input-search {
|
|
20
|
-
display: flex;
|
|
21
|
-
.n-input {
|
|
22
|
-
height: 32px;
|
|
23
|
-
line-height: 32px;
|
|
24
|
-
border-top-right-radius: 0;
|
|
25
|
-
border-bottom-right-radius: 0;
|
|
26
|
-
}
|
|
27
|
-
.input-addon {
|
|
28
|
-
height: 32px;
|
|
29
|
-
line-height: 32px;
|
|
30
|
-
.n-button {
|
|
31
|
-
height: 100%;
|
|
32
|
-
padding: 0 16px;
|
|
33
|
-
border-top-left-radius: 0;
|
|
34
|
-
border-bottom-left-radius: 0;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
.address-list {
|
|
40
|
-
height: calc(100% - 75px);
|
|
41
|
-
overflow-y: auto;
|
|
42
|
-
.address-item {
|
|
43
|
-
height: 60px;
|
|
44
|
-
cursor: pointer;
|
|
45
|
-
padding-top: 10px;
|
|
46
|
-
.title {
|
|
47
|
-
font-size: 16px;
|
|
48
|
-
}
|
|
49
|
-
span {
|
|
50
|
-
font-size: 12px;
|
|
51
|
-
color: #b9b9b9;
|
|
52
|
-
}
|
|
53
|
-
&:first-child {
|
|
54
|
-
height: 57px;
|
|
55
|
-
padding-top: 20px;
|
|
56
|
-
line-height: 40px;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
1
|
+
.c-map {
|
|
2
|
+
width: 100%;
|
|
3
|
+
min-height: 500px;
|
|
4
|
+
height: 100%;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
text-align: left;
|
|
7
|
+
ul,li {
|
|
8
|
+
list-style: none;
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
}
|
|
12
|
+
#map-core {
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 250px;
|
|
15
|
+
}
|
|
16
|
+
.search-container {
|
|
17
|
+
margin-top: 20px;
|
|
18
|
+
height: 40px;
|
|
19
|
+
.map-input-search {
|
|
20
|
+
display: flex;
|
|
21
|
+
.n-input {
|
|
22
|
+
height: 32px;
|
|
23
|
+
line-height: 32px;
|
|
24
|
+
border-top-right-radius: 0;
|
|
25
|
+
border-bottom-right-radius: 0;
|
|
26
|
+
}
|
|
27
|
+
.input-addon {
|
|
28
|
+
height: 32px;
|
|
29
|
+
line-height: 32px;
|
|
30
|
+
.n-button {
|
|
31
|
+
height: 100%;
|
|
32
|
+
padding: 0 16px;
|
|
33
|
+
border-top-left-radius: 0;
|
|
34
|
+
border-bottom-left-radius: 0;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
.address-list {
|
|
40
|
+
height: calc(100% - 75px);
|
|
41
|
+
overflow-y: auto;
|
|
42
|
+
.address-item {
|
|
43
|
+
height: 60px;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
padding-top: 10px;
|
|
46
|
+
.title {
|
|
47
|
+
font-size: 16px;
|
|
48
|
+
}
|
|
49
|
+
span {
|
|
50
|
+
font-size: 12px;
|
|
51
|
+
color: #b9b9b9;
|
|
52
|
+
}
|
|
53
|
+
&:first-child {
|
|
54
|
+
height: 57px;
|
|
55
|
+
padding-top: 20px;
|
|
56
|
+
line-height: 40px;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
60
|
}
|