giime 1.0.2-snapshot.3 → 1.0.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/dist/index.css +135 -135
- package/es/giime/version.d.ts +1 -1
- package/es/giime/version.mjs +1 -1
- package/es/giime/version.mjs.map +1 -1
- package/es/index.css +135 -135
- package/lib/giime/version.d.ts +1 -1
- package/lib/giime/version.js +1 -1
- package/lib/giime/version.js.map +1 -1
- package/lib/index.css +135 -135
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -887,55 +887,6 @@ video {
|
|
|
887
887
|
.gm-group:hover .group-hover\:gm-block {
|
|
888
888
|
display: block;
|
|
889
889
|
}
|
|
890
|
-
|
|
891
|
-
.gm-range-number .el-form-item[data-v-1ae16d96] {
|
|
892
|
-
margin: 0;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.gm-upload-preview-dialog[data-v-c615121c] [data-v-c615121c] .el-dialog__body {
|
|
896
|
-
padding: 0;
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload-list__item, .gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload--picture-card {
|
|
900
|
-
width: auto;
|
|
901
|
-
height: auto;
|
|
902
|
-
}
|
|
903
|
-
.gm-upload-file {
|
|
904
|
-
line-height: normal;
|
|
905
|
-
}
|
|
906
|
-
.gm-upload-file li > .el-checkbox {
|
|
907
|
-
position: absolute;
|
|
908
|
-
left: 10px;
|
|
909
|
-
top: 0;
|
|
910
|
-
z-index: 9;
|
|
911
|
-
}
|
|
912
|
-
.gm-upload-file .el-upload-list--picture-card {
|
|
913
|
-
gap: 10px;
|
|
914
|
-
}
|
|
915
|
-
.gm-upload-file .el-upload-list__item {
|
|
916
|
-
margin: 0;
|
|
917
|
-
border: none;
|
|
918
|
-
}
|
|
919
|
-
.gm-upload-file .el-upload-list__item-file-name {
|
|
920
|
-
line-height: normal;
|
|
921
|
-
}
|
|
922
|
-
.gm-upload-file .el-upload-dragger {
|
|
923
|
-
padding: 0;
|
|
924
|
-
border: none;
|
|
925
|
-
width: 100%;
|
|
926
|
-
height: 100%;
|
|
927
|
-
display: flex;
|
|
928
|
-
}
|
|
929
|
-
.gm-upload-file .el-upload--picture-card {
|
|
930
|
-
border: none;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
.gm-upload-file-disabled .el-upload--picture-card {
|
|
934
|
-
display: none;
|
|
935
|
-
}
|
|
936
|
-
.gm-upload-file-disabled .el-upload-list__item-status-label {
|
|
937
|
-
display: none;
|
|
938
|
-
}
|
|
939
890
|
.gm-flex-center[data-v-c17deec9] {
|
|
940
891
|
align-items: center;
|
|
941
892
|
}
|
|
@@ -943,32 +894,49 @@ video {
|
|
|
943
894
|
.gm-flex-justify-between[data-v-c17deec9] {
|
|
944
895
|
justify-content: space-between;
|
|
945
896
|
}
|
|
946
|
-
[data-v-
|
|
947
|
-
|
|
897
|
+
.circular[data-v-d7b04fae] {
|
|
898
|
+
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
948
899
|
}
|
|
949
900
|
|
|
950
|
-
[data-v-
|
|
951
|
-
|
|
901
|
+
.path[data-v-d7b04fae] {
|
|
902
|
+
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
903
|
+
stroke-dasharray: 90, 150;
|
|
904
|
+
stroke-dashoffset: 0;
|
|
905
|
+
stroke: var(--el-color-primary);
|
|
906
|
+
stroke-linecap: round;
|
|
952
907
|
}
|
|
953
908
|
|
|
954
|
-
|
|
955
|
-
|
|
909
|
+
@keyframes loading-rotate-d7b04fae {
|
|
910
|
+
to {
|
|
911
|
+
transform: rotate(360deg);
|
|
912
|
+
}
|
|
956
913
|
}
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
914
|
+
@keyframes loading-dash-d7b04fae {
|
|
915
|
+
0% {
|
|
916
|
+
stroke-dasharray: 1, 200;
|
|
917
|
+
stroke-dashoffset: 0;
|
|
918
|
+
}
|
|
919
|
+
50% {
|
|
920
|
+
stroke-dasharray: 90, 150;
|
|
921
|
+
stroke-dashoffset: -40px;
|
|
922
|
+
}
|
|
923
|
+
100% {
|
|
924
|
+
stroke-dasharray: 90, 150;
|
|
925
|
+
stroke-dashoffset: -120px;
|
|
926
|
+
}
|
|
960
927
|
}
|
|
961
928
|
|
|
962
|
-
[data-v-
|
|
963
|
-
|
|
929
|
+
.gm-range-number .el-form-item[data-v-1ae16d96] {
|
|
930
|
+
margin: 0;
|
|
964
931
|
}
|
|
965
932
|
|
|
966
|
-
[data-v-
|
|
967
|
-
|
|
933
|
+
.gm-upload-pro-preview-dialog[data-v-fbc23b01] [data-v-fbc23b01] .el-dialog__body {
|
|
934
|
+
padding: 0;
|
|
968
935
|
}
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
936
|
+
|
|
937
|
+
.gm-upload-pro-file-picture-card[data-v-fbc23b01] [data-v-fbc23b01] .el-upload-list__item, .gm-upload-pro-file-picture-card[data-v-fbc23b01] [data-v-fbc23b01] .el-upload--picture-card {
|
|
938
|
+
width: auto;
|
|
939
|
+
height: auto;
|
|
972
940
|
}
|
|
973
941
|
.gm-upload-pro-file {
|
|
974
942
|
line-height: normal;
|
|
@@ -1026,186 +994,218 @@ video {
|
|
|
1026
994
|
.gm-number-interval-single[data-v-4e6f4d6f]:hover .gm-number-interval-close[data-v-4e6f4d6f] {
|
|
1027
995
|
display: flex;
|
|
1028
996
|
}
|
|
1029
|
-
[data-v-
|
|
997
|
+
[data-v-195b27e4] .gmSearchForm .el-form-item {
|
|
998
|
+
margin-right: 0;
|
|
999
|
+
margin-bottom: 4px;
|
|
1000
|
+
}
|
|
1001
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1030
1002
|
border-right: none;
|
|
1031
1003
|
}
|
|
1032
1004
|
|
|
1033
|
-
[data-v-
|
|
1005
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1034
1006
|
height: 0;
|
|
1035
1007
|
}
|
|
1036
1008
|
|
|
1037
|
-
[data-v-
|
|
1009
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1038
1010
|
height: 0;
|
|
1039
1011
|
}
|
|
1040
1012
|
|
|
1041
|
-
[data-v-
|
|
1013
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border:after {
|
|
1042
1014
|
height: 0;
|
|
1043
1015
|
}
|
|
1044
1016
|
|
|
1045
|
-
[data-v-
|
|
1017
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border:before {
|
|
1046
1018
|
height: 0;
|
|
1047
1019
|
}
|
|
1048
1020
|
|
|
1049
|
-
[data-v-
|
|
1021
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__border-left-patch {
|
|
1050
1022
|
height: 0;
|
|
1051
1023
|
}
|
|
1052
|
-
.gm-upload-pro-preview-dialog[data-v-fbc23b01] [data-v-fbc23b01] .el-dialog__body {
|
|
1053
|
-
padding: 0;
|
|
1054
|
-
}
|
|
1055
1024
|
|
|
1056
|
-
.
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
}
|
|
1060
|
-
.circular[data-v-d7b04fae] {
|
|
1061
|
-
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
1025
|
+
.pagination-container[data-v-47d35e7b] {
|
|
1026
|
+
background: #fff;
|
|
1027
|
+
padding-top: 12px;
|
|
1062
1028
|
}
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
1066
|
-
stroke-dasharray: 90, 150;
|
|
1067
|
-
stroke-dashoffset: 0;
|
|
1068
|
-
stroke: var(--el-color-primary);
|
|
1069
|
-
stroke-linecap: round;
|
|
1029
|
+
.pagination-container.hidden[data-v-47d35e7b] {
|
|
1030
|
+
display: none;
|
|
1070
1031
|
}
|
|
1071
1032
|
|
|
1072
|
-
@keyframes loading-rotate-d7b04fae {
|
|
1073
|
-
to {
|
|
1074
|
-
transform: rotate(360deg);
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
@keyframes loading-dash-d7b04fae {
|
|
1078
|
-
0% {
|
|
1079
|
-
stroke-dasharray: 1, 200;
|
|
1080
|
-
stroke-dashoffset: 0;
|
|
1081
|
-
}
|
|
1082
|
-
50% {
|
|
1083
|
-
stroke-dasharray: 90, 150;
|
|
1084
|
-
stroke-dashoffset: -40px;
|
|
1085
|
-
}
|
|
1086
|
-
100% {
|
|
1087
|
-
stroke-dasharray: 90, 150;
|
|
1088
|
-
stroke-dashoffset: -120px;
|
|
1089
|
-
}
|
|
1090
|
-
}
|
|
1091
1033
|
@charset "UTF-8";
|
|
1092
|
-
.
|
|
1034
|
+
.custom-operate-drawer .el-drawer__header {
|
|
1093
1035
|
padding: 10px 15px;
|
|
1094
1036
|
margin: 0;
|
|
1095
1037
|
border-bottom: 1px solid #ebeef5;
|
|
1096
1038
|
}
|
|
1097
|
-
.
|
|
1039
|
+
.custom-operate-drawer .el-drawer__title {
|
|
1098
1040
|
font-size: 14px;
|
|
1099
1041
|
color: #333;
|
|
1100
1042
|
}
|
|
1101
|
-
.
|
|
1043
|
+
.custom-operate-drawer .el-drawer__body {
|
|
1102
1044
|
padding: 15px;
|
|
1103
1045
|
}
|
|
1104
|
-
.
|
|
1046
|
+
.custom-operate-drawer .el-drawer__footer {
|
|
1105
1047
|
padding: 10px 15px;
|
|
1106
1048
|
border-top: 1px solid #ebeef5;
|
|
1107
1049
|
}
|
|
1108
|
-
.
|
|
1050
|
+
.custom-operate-drawer .el-checkbox {
|
|
1109
1051
|
display: flex;
|
|
1110
1052
|
align-items: center;
|
|
1111
1053
|
}
|
|
1112
|
-
.
|
|
1054
|
+
.custom-operate-drawer .el-input__inner {
|
|
1113
1055
|
text-align: center;
|
|
1114
1056
|
}
|
|
1115
|
-
.
|
|
1057
|
+
.custom-operate-drawer .el-input__suffix {
|
|
1116
1058
|
position: absolute;
|
|
1117
1059
|
right: 10px;
|
|
1118
1060
|
}
|
|
1119
|
-
.
|
|
1061
|
+
.custom-operate-drawer .custom-content li {
|
|
1120
1062
|
display: flex;
|
|
1121
1063
|
align-items: center;
|
|
1122
1064
|
justify-content: center;
|
|
1123
1065
|
height: 44px;
|
|
1124
1066
|
}
|
|
1125
|
-
.
|
|
1067
|
+
.custom-operate-drawer .custom-group {
|
|
1126
1068
|
max-height: calc(100vh - 226px);
|
|
1127
1069
|
overflow-y: auto;
|
|
1128
1070
|
}
|
|
1129
|
-
.
|
|
1071
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar {
|
|
1130
1072
|
/*滚动条整体样式*/
|
|
1131
1073
|
width: 4px;
|
|
1132
1074
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1133
1075
|
height: 1px;
|
|
1134
1076
|
}
|
|
1135
|
-
.
|
|
1077
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1136
1078
|
/*滚动条里面小方块*/
|
|
1137
1079
|
border-radius: 10px;
|
|
1138
1080
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1139
1081
|
background: #999;
|
|
1140
1082
|
}
|
|
1141
|
-
.
|
|
1083
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-track {
|
|
1142
1084
|
/*滚动条里面轨道*/
|
|
1143
1085
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1144
1086
|
border-radius: 10px;
|
|
1145
1087
|
background: #eee;
|
|
1146
1088
|
}
|
|
1089
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1090
|
+
border-right: none;
|
|
1091
|
+
}
|
|
1147
1092
|
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
padding-top: 12px;
|
|
1093
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1094
|
+
height: 0;
|
|
1151
1095
|
}
|
|
1152
|
-
|
|
1153
|
-
|
|
1096
|
+
|
|
1097
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1098
|
+
height: 0;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border:after {
|
|
1102
|
+
height: 0;
|
|
1154
1103
|
}
|
|
1155
1104
|
|
|
1105
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border:before {
|
|
1106
|
+
height: 0;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__border-left-patch {
|
|
1110
|
+
height: 0;
|
|
1111
|
+
}
|
|
1156
1112
|
@charset "UTF-8";
|
|
1157
|
-
.custom-
|
|
1113
|
+
.table-custom-header-drawer .el-drawer__header {
|
|
1158
1114
|
padding: 10px 15px;
|
|
1159
1115
|
margin: 0;
|
|
1160
1116
|
border-bottom: 1px solid #ebeef5;
|
|
1161
1117
|
}
|
|
1162
|
-
.custom-
|
|
1118
|
+
.table-custom-header-drawer .el-drawer__title {
|
|
1163
1119
|
font-size: 14px;
|
|
1164
1120
|
color: #333;
|
|
1165
1121
|
}
|
|
1166
|
-
.custom-
|
|
1122
|
+
.table-custom-header-drawer .el-drawer__body {
|
|
1167
1123
|
padding: 15px;
|
|
1168
1124
|
}
|
|
1169
|
-
.custom-
|
|
1125
|
+
.table-custom-header-drawer .el-drawer__footer {
|
|
1170
1126
|
padding: 10px 15px;
|
|
1171
1127
|
border-top: 1px solid #ebeef5;
|
|
1172
1128
|
}
|
|
1173
|
-
.custom-
|
|
1129
|
+
.table-custom-header-drawer .el-checkbox {
|
|
1174
1130
|
display: flex;
|
|
1175
1131
|
align-items: center;
|
|
1176
1132
|
}
|
|
1177
|
-
.custom-
|
|
1133
|
+
.table-custom-header-drawer .el-input__inner {
|
|
1178
1134
|
text-align: center;
|
|
1179
1135
|
}
|
|
1180
|
-
.custom-
|
|
1136
|
+
.table-custom-header-drawer .el-input__suffix {
|
|
1181
1137
|
position: absolute;
|
|
1182
1138
|
right: 10px;
|
|
1183
1139
|
}
|
|
1184
|
-
.custom-
|
|
1140
|
+
.table-custom-header-drawer .custom-content li {
|
|
1185
1141
|
display: flex;
|
|
1186
1142
|
align-items: center;
|
|
1187
1143
|
justify-content: center;
|
|
1188
1144
|
height: 44px;
|
|
1189
1145
|
}
|
|
1190
|
-
.custom-
|
|
1146
|
+
.table-custom-header-drawer .custom-group {
|
|
1191
1147
|
max-height: calc(100vh - 226px);
|
|
1192
1148
|
overflow-y: auto;
|
|
1193
1149
|
}
|
|
1194
|
-
.custom-
|
|
1150
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar {
|
|
1195
1151
|
/*滚动条整体样式*/
|
|
1196
1152
|
width: 4px;
|
|
1197
1153
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1198
1154
|
height: 1px;
|
|
1199
1155
|
}
|
|
1200
|
-
.custom-
|
|
1156
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1201
1157
|
/*滚动条里面小方块*/
|
|
1202
1158
|
border-radius: 10px;
|
|
1203
1159
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1204
1160
|
background: #999;
|
|
1205
1161
|
}
|
|
1206
|
-
.custom-
|
|
1162
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-track {
|
|
1207
1163
|
/*滚动条里面轨道*/
|
|
1208
1164
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1209
1165
|
border-radius: 10px;
|
|
1210
1166
|
background: #eee;
|
|
1167
|
+
}
|
|
1168
|
+
.gm-upload-preview-dialog[data-v-c615121c] [data-v-c615121c] .el-dialog__body {
|
|
1169
|
+
padding: 0;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload-list__item, .gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload--picture-card {
|
|
1173
|
+
width: auto;
|
|
1174
|
+
height: auto;
|
|
1175
|
+
}
|
|
1176
|
+
.gm-upload-file {
|
|
1177
|
+
line-height: normal;
|
|
1178
|
+
}
|
|
1179
|
+
.gm-upload-file li > .el-checkbox {
|
|
1180
|
+
position: absolute;
|
|
1181
|
+
left: 10px;
|
|
1182
|
+
top: 0;
|
|
1183
|
+
z-index: 9;
|
|
1184
|
+
}
|
|
1185
|
+
.gm-upload-file .el-upload-list--picture-card {
|
|
1186
|
+
gap: 10px;
|
|
1187
|
+
}
|
|
1188
|
+
.gm-upload-file .el-upload-list__item {
|
|
1189
|
+
margin: 0;
|
|
1190
|
+
border: none;
|
|
1191
|
+
}
|
|
1192
|
+
.gm-upload-file .el-upload-list__item-file-name {
|
|
1193
|
+
line-height: normal;
|
|
1194
|
+
}
|
|
1195
|
+
.gm-upload-file .el-upload-dragger {
|
|
1196
|
+
padding: 0;
|
|
1197
|
+
border: none;
|
|
1198
|
+
width: 100%;
|
|
1199
|
+
height: 100%;
|
|
1200
|
+
display: flex;
|
|
1201
|
+
}
|
|
1202
|
+
.gm-upload-file .el-upload--picture-card {
|
|
1203
|
+
border: none;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.gm-upload-file-disabled .el-upload--picture-card {
|
|
1207
|
+
display: none;
|
|
1208
|
+
}
|
|
1209
|
+
.gm-upload-file-disabled .el-upload-list__item-status-label {
|
|
1210
|
+
display: none;
|
|
1211
1211
|
}
|
package/es/giime/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.0.2
|
|
1
|
+
export declare const version = "1.0.2";
|
package/es/giime/version.mjs
CHANGED
package/es/giime/version.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.mjs","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '1.0.2
|
|
1
|
+
{"version":3,"file":"version.mjs","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '1.0.2';\n"],"names":[],"mappings":"AAAO,MAAM,OAAA,GAAU;;;;"}
|
package/es/index.css
CHANGED
|
@@ -887,55 +887,6 @@ video {
|
|
|
887
887
|
.gm-group:hover .group-hover\:gm-block {
|
|
888
888
|
display: block;
|
|
889
889
|
}
|
|
890
|
-
|
|
891
|
-
.gm-range-number .el-form-item[data-v-1ae16d96] {
|
|
892
|
-
margin: 0;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.gm-upload-preview-dialog[data-v-c615121c] [data-v-c615121c] .el-dialog__body {
|
|
896
|
-
padding: 0;
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload-list__item, .gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload--picture-card {
|
|
900
|
-
width: auto;
|
|
901
|
-
height: auto;
|
|
902
|
-
}
|
|
903
|
-
.gm-upload-file {
|
|
904
|
-
line-height: normal;
|
|
905
|
-
}
|
|
906
|
-
.gm-upload-file li > .el-checkbox {
|
|
907
|
-
position: absolute;
|
|
908
|
-
left: 10px;
|
|
909
|
-
top: 0;
|
|
910
|
-
z-index: 9;
|
|
911
|
-
}
|
|
912
|
-
.gm-upload-file .el-upload-list--picture-card {
|
|
913
|
-
gap: 10px;
|
|
914
|
-
}
|
|
915
|
-
.gm-upload-file .el-upload-list__item {
|
|
916
|
-
margin: 0;
|
|
917
|
-
border: none;
|
|
918
|
-
}
|
|
919
|
-
.gm-upload-file .el-upload-list__item-file-name {
|
|
920
|
-
line-height: normal;
|
|
921
|
-
}
|
|
922
|
-
.gm-upload-file .el-upload-dragger {
|
|
923
|
-
padding: 0;
|
|
924
|
-
border: none;
|
|
925
|
-
width: 100%;
|
|
926
|
-
height: 100%;
|
|
927
|
-
display: flex;
|
|
928
|
-
}
|
|
929
|
-
.gm-upload-file .el-upload--picture-card {
|
|
930
|
-
border: none;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
.gm-upload-file-disabled .el-upload--picture-card {
|
|
934
|
-
display: none;
|
|
935
|
-
}
|
|
936
|
-
.gm-upload-file-disabled .el-upload-list__item-status-label {
|
|
937
|
-
display: none;
|
|
938
|
-
}
|
|
939
890
|
.gm-flex-center[data-v-c17deec9] {
|
|
940
891
|
align-items: center;
|
|
941
892
|
}
|
|
@@ -943,32 +894,49 @@ video {
|
|
|
943
894
|
.gm-flex-justify-between[data-v-c17deec9] {
|
|
944
895
|
justify-content: space-between;
|
|
945
896
|
}
|
|
946
|
-
[data-v-
|
|
947
|
-
|
|
897
|
+
.circular[data-v-d7b04fae] {
|
|
898
|
+
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
948
899
|
}
|
|
949
900
|
|
|
950
|
-
[data-v-
|
|
951
|
-
|
|
901
|
+
.path[data-v-d7b04fae] {
|
|
902
|
+
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
903
|
+
stroke-dasharray: 90, 150;
|
|
904
|
+
stroke-dashoffset: 0;
|
|
905
|
+
stroke: var(--el-color-primary);
|
|
906
|
+
stroke-linecap: round;
|
|
952
907
|
}
|
|
953
908
|
|
|
954
|
-
|
|
955
|
-
|
|
909
|
+
@keyframes loading-rotate-d7b04fae {
|
|
910
|
+
to {
|
|
911
|
+
transform: rotate(360deg);
|
|
912
|
+
}
|
|
956
913
|
}
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
914
|
+
@keyframes loading-dash-d7b04fae {
|
|
915
|
+
0% {
|
|
916
|
+
stroke-dasharray: 1, 200;
|
|
917
|
+
stroke-dashoffset: 0;
|
|
918
|
+
}
|
|
919
|
+
50% {
|
|
920
|
+
stroke-dasharray: 90, 150;
|
|
921
|
+
stroke-dashoffset: -40px;
|
|
922
|
+
}
|
|
923
|
+
100% {
|
|
924
|
+
stroke-dasharray: 90, 150;
|
|
925
|
+
stroke-dashoffset: -120px;
|
|
926
|
+
}
|
|
960
927
|
}
|
|
961
928
|
|
|
962
|
-
[data-v-
|
|
963
|
-
|
|
929
|
+
.gm-range-number .el-form-item[data-v-1ae16d96] {
|
|
930
|
+
margin: 0;
|
|
964
931
|
}
|
|
965
932
|
|
|
966
|
-
[data-v-
|
|
967
|
-
|
|
933
|
+
.gm-upload-pro-preview-dialog[data-v-fbc23b01] [data-v-fbc23b01] .el-dialog__body {
|
|
934
|
+
padding: 0;
|
|
968
935
|
}
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
936
|
+
|
|
937
|
+
.gm-upload-pro-file-picture-card[data-v-fbc23b01] [data-v-fbc23b01] .el-upload-list__item, .gm-upload-pro-file-picture-card[data-v-fbc23b01] [data-v-fbc23b01] .el-upload--picture-card {
|
|
938
|
+
width: auto;
|
|
939
|
+
height: auto;
|
|
972
940
|
}
|
|
973
941
|
.gm-upload-pro-file {
|
|
974
942
|
line-height: normal;
|
|
@@ -1026,186 +994,218 @@ video {
|
|
|
1026
994
|
.gm-number-interval-single[data-v-4e6f4d6f]:hover .gm-number-interval-close[data-v-4e6f4d6f] {
|
|
1027
995
|
display: flex;
|
|
1028
996
|
}
|
|
1029
|
-
[data-v-
|
|
997
|
+
[data-v-195b27e4] .gmSearchForm .el-form-item {
|
|
998
|
+
margin-right: 0;
|
|
999
|
+
margin-bottom: 4px;
|
|
1000
|
+
}
|
|
1001
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1030
1002
|
border-right: none;
|
|
1031
1003
|
}
|
|
1032
1004
|
|
|
1033
|
-
[data-v-
|
|
1005
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1034
1006
|
height: 0;
|
|
1035
1007
|
}
|
|
1036
1008
|
|
|
1037
|
-
[data-v-
|
|
1009
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1038
1010
|
height: 0;
|
|
1039
1011
|
}
|
|
1040
1012
|
|
|
1041
|
-
[data-v-
|
|
1013
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border:after {
|
|
1042
1014
|
height: 0;
|
|
1043
1015
|
}
|
|
1044
1016
|
|
|
1045
|
-
[data-v-
|
|
1017
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border:before {
|
|
1046
1018
|
height: 0;
|
|
1047
1019
|
}
|
|
1048
1020
|
|
|
1049
|
-
[data-v-
|
|
1021
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__border-left-patch {
|
|
1050
1022
|
height: 0;
|
|
1051
1023
|
}
|
|
1052
|
-
.gm-upload-pro-preview-dialog[data-v-fbc23b01] [data-v-fbc23b01] .el-dialog__body {
|
|
1053
|
-
padding: 0;
|
|
1054
|
-
}
|
|
1055
1024
|
|
|
1056
|
-
.
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
}
|
|
1060
|
-
.circular[data-v-d7b04fae] {
|
|
1061
|
-
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
1025
|
+
.pagination-container[data-v-47d35e7b] {
|
|
1026
|
+
background: #fff;
|
|
1027
|
+
padding-top: 12px;
|
|
1062
1028
|
}
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
1066
|
-
stroke-dasharray: 90, 150;
|
|
1067
|
-
stroke-dashoffset: 0;
|
|
1068
|
-
stroke: var(--el-color-primary);
|
|
1069
|
-
stroke-linecap: round;
|
|
1029
|
+
.pagination-container.hidden[data-v-47d35e7b] {
|
|
1030
|
+
display: none;
|
|
1070
1031
|
}
|
|
1071
1032
|
|
|
1072
|
-
@keyframes loading-rotate-d7b04fae {
|
|
1073
|
-
to {
|
|
1074
|
-
transform: rotate(360deg);
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
@keyframes loading-dash-d7b04fae {
|
|
1078
|
-
0% {
|
|
1079
|
-
stroke-dasharray: 1, 200;
|
|
1080
|
-
stroke-dashoffset: 0;
|
|
1081
|
-
}
|
|
1082
|
-
50% {
|
|
1083
|
-
stroke-dasharray: 90, 150;
|
|
1084
|
-
stroke-dashoffset: -40px;
|
|
1085
|
-
}
|
|
1086
|
-
100% {
|
|
1087
|
-
stroke-dasharray: 90, 150;
|
|
1088
|
-
stroke-dashoffset: -120px;
|
|
1089
|
-
}
|
|
1090
|
-
}
|
|
1091
1033
|
@charset "UTF-8";
|
|
1092
|
-
.
|
|
1034
|
+
.custom-operate-drawer .el-drawer__header {
|
|
1093
1035
|
padding: 10px 15px;
|
|
1094
1036
|
margin: 0;
|
|
1095
1037
|
border-bottom: 1px solid #ebeef5;
|
|
1096
1038
|
}
|
|
1097
|
-
.
|
|
1039
|
+
.custom-operate-drawer .el-drawer__title {
|
|
1098
1040
|
font-size: 14px;
|
|
1099
1041
|
color: #333;
|
|
1100
1042
|
}
|
|
1101
|
-
.
|
|
1043
|
+
.custom-operate-drawer .el-drawer__body {
|
|
1102
1044
|
padding: 15px;
|
|
1103
1045
|
}
|
|
1104
|
-
.
|
|
1046
|
+
.custom-operate-drawer .el-drawer__footer {
|
|
1105
1047
|
padding: 10px 15px;
|
|
1106
1048
|
border-top: 1px solid #ebeef5;
|
|
1107
1049
|
}
|
|
1108
|
-
.
|
|
1050
|
+
.custom-operate-drawer .el-checkbox {
|
|
1109
1051
|
display: flex;
|
|
1110
1052
|
align-items: center;
|
|
1111
1053
|
}
|
|
1112
|
-
.
|
|
1054
|
+
.custom-operate-drawer .el-input__inner {
|
|
1113
1055
|
text-align: center;
|
|
1114
1056
|
}
|
|
1115
|
-
.
|
|
1057
|
+
.custom-operate-drawer .el-input__suffix {
|
|
1116
1058
|
position: absolute;
|
|
1117
1059
|
right: 10px;
|
|
1118
1060
|
}
|
|
1119
|
-
.
|
|
1061
|
+
.custom-operate-drawer .custom-content li {
|
|
1120
1062
|
display: flex;
|
|
1121
1063
|
align-items: center;
|
|
1122
1064
|
justify-content: center;
|
|
1123
1065
|
height: 44px;
|
|
1124
1066
|
}
|
|
1125
|
-
.
|
|
1067
|
+
.custom-operate-drawer .custom-group {
|
|
1126
1068
|
max-height: calc(100vh - 226px);
|
|
1127
1069
|
overflow-y: auto;
|
|
1128
1070
|
}
|
|
1129
|
-
.
|
|
1071
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar {
|
|
1130
1072
|
/*滚动条整体样式*/
|
|
1131
1073
|
width: 4px;
|
|
1132
1074
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1133
1075
|
height: 1px;
|
|
1134
1076
|
}
|
|
1135
|
-
.
|
|
1077
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1136
1078
|
/*滚动条里面小方块*/
|
|
1137
1079
|
border-radius: 10px;
|
|
1138
1080
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1139
1081
|
background: #999;
|
|
1140
1082
|
}
|
|
1141
|
-
.
|
|
1083
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-track {
|
|
1142
1084
|
/*滚动条里面轨道*/
|
|
1143
1085
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1144
1086
|
border-radius: 10px;
|
|
1145
1087
|
background: #eee;
|
|
1146
1088
|
}
|
|
1089
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1090
|
+
border-right: none;
|
|
1091
|
+
}
|
|
1147
1092
|
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
padding-top: 12px;
|
|
1093
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1094
|
+
height: 0;
|
|
1151
1095
|
}
|
|
1152
|
-
|
|
1153
|
-
|
|
1096
|
+
|
|
1097
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1098
|
+
height: 0;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border:after {
|
|
1102
|
+
height: 0;
|
|
1154
1103
|
}
|
|
1155
1104
|
|
|
1105
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border:before {
|
|
1106
|
+
height: 0;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__border-left-patch {
|
|
1110
|
+
height: 0;
|
|
1111
|
+
}
|
|
1156
1112
|
@charset "UTF-8";
|
|
1157
|
-
.custom-
|
|
1113
|
+
.table-custom-header-drawer .el-drawer__header {
|
|
1158
1114
|
padding: 10px 15px;
|
|
1159
1115
|
margin: 0;
|
|
1160
1116
|
border-bottom: 1px solid #ebeef5;
|
|
1161
1117
|
}
|
|
1162
|
-
.custom-
|
|
1118
|
+
.table-custom-header-drawer .el-drawer__title {
|
|
1163
1119
|
font-size: 14px;
|
|
1164
1120
|
color: #333;
|
|
1165
1121
|
}
|
|
1166
|
-
.custom-
|
|
1122
|
+
.table-custom-header-drawer .el-drawer__body {
|
|
1167
1123
|
padding: 15px;
|
|
1168
1124
|
}
|
|
1169
|
-
.custom-
|
|
1125
|
+
.table-custom-header-drawer .el-drawer__footer {
|
|
1170
1126
|
padding: 10px 15px;
|
|
1171
1127
|
border-top: 1px solid #ebeef5;
|
|
1172
1128
|
}
|
|
1173
|
-
.custom-
|
|
1129
|
+
.table-custom-header-drawer .el-checkbox {
|
|
1174
1130
|
display: flex;
|
|
1175
1131
|
align-items: center;
|
|
1176
1132
|
}
|
|
1177
|
-
.custom-
|
|
1133
|
+
.table-custom-header-drawer .el-input__inner {
|
|
1178
1134
|
text-align: center;
|
|
1179
1135
|
}
|
|
1180
|
-
.custom-
|
|
1136
|
+
.table-custom-header-drawer .el-input__suffix {
|
|
1181
1137
|
position: absolute;
|
|
1182
1138
|
right: 10px;
|
|
1183
1139
|
}
|
|
1184
|
-
.custom-
|
|
1140
|
+
.table-custom-header-drawer .custom-content li {
|
|
1185
1141
|
display: flex;
|
|
1186
1142
|
align-items: center;
|
|
1187
1143
|
justify-content: center;
|
|
1188
1144
|
height: 44px;
|
|
1189
1145
|
}
|
|
1190
|
-
.custom-
|
|
1146
|
+
.table-custom-header-drawer .custom-group {
|
|
1191
1147
|
max-height: calc(100vh - 226px);
|
|
1192
1148
|
overflow-y: auto;
|
|
1193
1149
|
}
|
|
1194
|
-
.custom-
|
|
1150
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar {
|
|
1195
1151
|
/*滚动条整体样式*/
|
|
1196
1152
|
width: 4px;
|
|
1197
1153
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1198
1154
|
height: 1px;
|
|
1199
1155
|
}
|
|
1200
|
-
.custom-
|
|
1156
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1201
1157
|
/*滚动条里面小方块*/
|
|
1202
1158
|
border-radius: 10px;
|
|
1203
1159
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1204
1160
|
background: #999;
|
|
1205
1161
|
}
|
|
1206
|
-
.custom-
|
|
1162
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-track {
|
|
1207
1163
|
/*滚动条里面轨道*/
|
|
1208
1164
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1209
1165
|
border-radius: 10px;
|
|
1210
1166
|
background: #eee;
|
|
1167
|
+
}
|
|
1168
|
+
.gm-upload-preview-dialog[data-v-c615121c] [data-v-c615121c] .el-dialog__body {
|
|
1169
|
+
padding: 0;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload-list__item, .gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload--picture-card {
|
|
1173
|
+
width: auto;
|
|
1174
|
+
height: auto;
|
|
1175
|
+
}
|
|
1176
|
+
.gm-upload-file {
|
|
1177
|
+
line-height: normal;
|
|
1178
|
+
}
|
|
1179
|
+
.gm-upload-file li > .el-checkbox {
|
|
1180
|
+
position: absolute;
|
|
1181
|
+
left: 10px;
|
|
1182
|
+
top: 0;
|
|
1183
|
+
z-index: 9;
|
|
1184
|
+
}
|
|
1185
|
+
.gm-upload-file .el-upload-list--picture-card {
|
|
1186
|
+
gap: 10px;
|
|
1187
|
+
}
|
|
1188
|
+
.gm-upload-file .el-upload-list__item {
|
|
1189
|
+
margin: 0;
|
|
1190
|
+
border: none;
|
|
1191
|
+
}
|
|
1192
|
+
.gm-upload-file .el-upload-list__item-file-name {
|
|
1193
|
+
line-height: normal;
|
|
1194
|
+
}
|
|
1195
|
+
.gm-upload-file .el-upload-dragger {
|
|
1196
|
+
padding: 0;
|
|
1197
|
+
border: none;
|
|
1198
|
+
width: 100%;
|
|
1199
|
+
height: 100%;
|
|
1200
|
+
display: flex;
|
|
1201
|
+
}
|
|
1202
|
+
.gm-upload-file .el-upload--picture-card {
|
|
1203
|
+
border: none;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.gm-upload-file-disabled .el-upload--picture-card {
|
|
1207
|
+
display: none;
|
|
1208
|
+
}
|
|
1209
|
+
.gm-upload-file-disabled .el-upload-list__item-status-label {
|
|
1210
|
+
display: none;
|
|
1211
1211
|
}
|
package/lib/giime/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.0.2
|
|
1
|
+
export declare const version = "1.0.2";
|
package/lib/giime/version.js
CHANGED
package/lib/giime/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '1.0.2
|
|
1
|
+
{"version":3,"file":"version.js","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '1.0.2';\n"],"names":[],"mappings":";;AAAO,MAAM,OAAA,GAAU;;;;"}
|
package/lib/index.css
CHANGED
|
@@ -887,55 +887,6 @@ video {
|
|
|
887
887
|
.gm-group:hover .group-hover\:gm-block {
|
|
888
888
|
display: block;
|
|
889
889
|
}
|
|
890
|
-
|
|
891
|
-
.gm-range-number .el-form-item[data-v-1ae16d96] {
|
|
892
|
-
margin: 0;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.gm-upload-preview-dialog[data-v-c615121c] [data-v-c615121c] .el-dialog__body {
|
|
896
|
-
padding: 0;
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload-list__item, .gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload--picture-card {
|
|
900
|
-
width: auto;
|
|
901
|
-
height: auto;
|
|
902
|
-
}
|
|
903
|
-
.gm-upload-file {
|
|
904
|
-
line-height: normal;
|
|
905
|
-
}
|
|
906
|
-
.gm-upload-file li > .el-checkbox {
|
|
907
|
-
position: absolute;
|
|
908
|
-
left: 10px;
|
|
909
|
-
top: 0;
|
|
910
|
-
z-index: 9;
|
|
911
|
-
}
|
|
912
|
-
.gm-upload-file .el-upload-list--picture-card {
|
|
913
|
-
gap: 10px;
|
|
914
|
-
}
|
|
915
|
-
.gm-upload-file .el-upload-list__item {
|
|
916
|
-
margin: 0;
|
|
917
|
-
border: none;
|
|
918
|
-
}
|
|
919
|
-
.gm-upload-file .el-upload-list__item-file-name {
|
|
920
|
-
line-height: normal;
|
|
921
|
-
}
|
|
922
|
-
.gm-upload-file .el-upload-dragger {
|
|
923
|
-
padding: 0;
|
|
924
|
-
border: none;
|
|
925
|
-
width: 100%;
|
|
926
|
-
height: 100%;
|
|
927
|
-
display: flex;
|
|
928
|
-
}
|
|
929
|
-
.gm-upload-file .el-upload--picture-card {
|
|
930
|
-
border: none;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
.gm-upload-file-disabled .el-upload--picture-card {
|
|
934
|
-
display: none;
|
|
935
|
-
}
|
|
936
|
-
.gm-upload-file-disabled .el-upload-list__item-status-label {
|
|
937
|
-
display: none;
|
|
938
|
-
}
|
|
939
890
|
.gm-flex-center[data-v-c17deec9] {
|
|
940
891
|
align-items: center;
|
|
941
892
|
}
|
|
@@ -943,32 +894,49 @@ video {
|
|
|
943
894
|
.gm-flex-justify-between[data-v-c17deec9] {
|
|
944
895
|
justify-content: space-between;
|
|
945
896
|
}
|
|
946
|
-
[data-v-
|
|
947
|
-
|
|
897
|
+
.circular[data-v-d7b04fae] {
|
|
898
|
+
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
948
899
|
}
|
|
949
900
|
|
|
950
|
-
[data-v-
|
|
951
|
-
|
|
901
|
+
.path[data-v-d7b04fae] {
|
|
902
|
+
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
903
|
+
stroke-dasharray: 90, 150;
|
|
904
|
+
stroke-dashoffset: 0;
|
|
905
|
+
stroke: var(--el-color-primary);
|
|
906
|
+
stroke-linecap: round;
|
|
952
907
|
}
|
|
953
908
|
|
|
954
|
-
|
|
955
|
-
|
|
909
|
+
@keyframes loading-rotate-d7b04fae {
|
|
910
|
+
to {
|
|
911
|
+
transform: rotate(360deg);
|
|
912
|
+
}
|
|
956
913
|
}
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
914
|
+
@keyframes loading-dash-d7b04fae {
|
|
915
|
+
0% {
|
|
916
|
+
stroke-dasharray: 1, 200;
|
|
917
|
+
stroke-dashoffset: 0;
|
|
918
|
+
}
|
|
919
|
+
50% {
|
|
920
|
+
stroke-dasharray: 90, 150;
|
|
921
|
+
stroke-dashoffset: -40px;
|
|
922
|
+
}
|
|
923
|
+
100% {
|
|
924
|
+
stroke-dasharray: 90, 150;
|
|
925
|
+
stroke-dashoffset: -120px;
|
|
926
|
+
}
|
|
960
927
|
}
|
|
961
928
|
|
|
962
|
-
[data-v-
|
|
963
|
-
|
|
929
|
+
.gm-range-number .el-form-item[data-v-1ae16d96] {
|
|
930
|
+
margin: 0;
|
|
964
931
|
}
|
|
965
932
|
|
|
966
|
-
[data-v-
|
|
967
|
-
|
|
933
|
+
.gm-upload-pro-preview-dialog[data-v-fbc23b01] [data-v-fbc23b01] .el-dialog__body {
|
|
934
|
+
padding: 0;
|
|
968
935
|
}
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
936
|
+
|
|
937
|
+
.gm-upload-pro-file-picture-card[data-v-fbc23b01] [data-v-fbc23b01] .el-upload-list__item, .gm-upload-pro-file-picture-card[data-v-fbc23b01] [data-v-fbc23b01] .el-upload--picture-card {
|
|
938
|
+
width: auto;
|
|
939
|
+
height: auto;
|
|
972
940
|
}
|
|
973
941
|
.gm-upload-pro-file {
|
|
974
942
|
line-height: normal;
|
|
@@ -1026,186 +994,218 @@ video {
|
|
|
1026
994
|
.gm-number-interval-single[data-v-4e6f4d6f]:hover .gm-number-interval-close[data-v-4e6f4d6f] {
|
|
1027
995
|
display: flex;
|
|
1028
996
|
}
|
|
1029
|
-
[data-v-
|
|
997
|
+
[data-v-195b27e4] .gmSearchForm .el-form-item {
|
|
998
|
+
margin-right: 0;
|
|
999
|
+
margin-bottom: 4px;
|
|
1000
|
+
}
|
|
1001
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1030
1002
|
border-right: none;
|
|
1031
1003
|
}
|
|
1032
1004
|
|
|
1033
|
-
[data-v-
|
|
1005
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1034
1006
|
height: 0;
|
|
1035
1007
|
}
|
|
1036
1008
|
|
|
1037
|
-
[data-v-
|
|
1009
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1038
1010
|
height: 0;
|
|
1039
1011
|
}
|
|
1040
1012
|
|
|
1041
|
-
[data-v-
|
|
1013
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border:after {
|
|
1042
1014
|
height: 0;
|
|
1043
1015
|
}
|
|
1044
1016
|
|
|
1045
|
-
[data-v-
|
|
1017
|
+
[data-v-050a4f74] .gmTableNoBorder.el-table--border:before {
|
|
1046
1018
|
height: 0;
|
|
1047
1019
|
}
|
|
1048
1020
|
|
|
1049
|
-
[data-v-
|
|
1021
|
+
[data-v-050a4f74] .gmTableNoBorder .el-table__border-left-patch {
|
|
1050
1022
|
height: 0;
|
|
1051
1023
|
}
|
|
1052
|
-
.gm-upload-pro-preview-dialog[data-v-fbc23b01] [data-v-fbc23b01] .el-dialog__body {
|
|
1053
|
-
padding: 0;
|
|
1054
|
-
}
|
|
1055
1024
|
|
|
1056
|
-
.
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
}
|
|
1060
|
-
.circular[data-v-d7b04fae] {
|
|
1061
|
-
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
1025
|
+
.pagination-container[data-v-47d35e7b] {
|
|
1026
|
+
background: #fff;
|
|
1027
|
+
padding-top: 12px;
|
|
1062
1028
|
}
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
1066
|
-
stroke-dasharray: 90, 150;
|
|
1067
|
-
stroke-dashoffset: 0;
|
|
1068
|
-
stroke: var(--el-color-primary);
|
|
1069
|
-
stroke-linecap: round;
|
|
1029
|
+
.pagination-container.hidden[data-v-47d35e7b] {
|
|
1030
|
+
display: none;
|
|
1070
1031
|
}
|
|
1071
1032
|
|
|
1072
|
-
@keyframes loading-rotate-d7b04fae {
|
|
1073
|
-
to {
|
|
1074
|
-
transform: rotate(360deg);
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
@keyframes loading-dash-d7b04fae {
|
|
1078
|
-
0% {
|
|
1079
|
-
stroke-dasharray: 1, 200;
|
|
1080
|
-
stroke-dashoffset: 0;
|
|
1081
|
-
}
|
|
1082
|
-
50% {
|
|
1083
|
-
stroke-dasharray: 90, 150;
|
|
1084
|
-
stroke-dashoffset: -40px;
|
|
1085
|
-
}
|
|
1086
|
-
100% {
|
|
1087
|
-
stroke-dasharray: 90, 150;
|
|
1088
|
-
stroke-dashoffset: -120px;
|
|
1089
|
-
}
|
|
1090
|
-
}
|
|
1091
1033
|
@charset "UTF-8";
|
|
1092
|
-
.
|
|
1034
|
+
.custom-operate-drawer .el-drawer__header {
|
|
1093
1035
|
padding: 10px 15px;
|
|
1094
1036
|
margin: 0;
|
|
1095
1037
|
border-bottom: 1px solid #ebeef5;
|
|
1096
1038
|
}
|
|
1097
|
-
.
|
|
1039
|
+
.custom-operate-drawer .el-drawer__title {
|
|
1098
1040
|
font-size: 14px;
|
|
1099
1041
|
color: #333;
|
|
1100
1042
|
}
|
|
1101
|
-
.
|
|
1043
|
+
.custom-operate-drawer .el-drawer__body {
|
|
1102
1044
|
padding: 15px;
|
|
1103
1045
|
}
|
|
1104
|
-
.
|
|
1046
|
+
.custom-operate-drawer .el-drawer__footer {
|
|
1105
1047
|
padding: 10px 15px;
|
|
1106
1048
|
border-top: 1px solid #ebeef5;
|
|
1107
1049
|
}
|
|
1108
|
-
.
|
|
1050
|
+
.custom-operate-drawer .el-checkbox {
|
|
1109
1051
|
display: flex;
|
|
1110
1052
|
align-items: center;
|
|
1111
1053
|
}
|
|
1112
|
-
.
|
|
1054
|
+
.custom-operate-drawer .el-input__inner {
|
|
1113
1055
|
text-align: center;
|
|
1114
1056
|
}
|
|
1115
|
-
.
|
|
1057
|
+
.custom-operate-drawer .el-input__suffix {
|
|
1116
1058
|
position: absolute;
|
|
1117
1059
|
right: 10px;
|
|
1118
1060
|
}
|
|
1119
|
-
.
|
|
1061
|
+
.custom-operate-drawer .custom-content li {
|
|
1120
1062
|
display: flex;
|
|
1121
1063
|
align-items: center;
|
|
1122
1064
|
justify-content: center;
|
|
1123
1065
|
height: 44px;
|
|
1124
1066
|
}
|
|
1125
|
-
.
|
|
1067
|
+
.custom-operate-drawer .custom-group {
|
|
1126
1068
|
max-height: calc(100vh - 226px);
|
|
1127
1069
|
overflow-y: auto;
|
|
1128
1070
|
}
|
|
1129
|
-
.
|
|
1071
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar {
|
|
1130
1072
|
/*滚动条整体样式*/
|
|
1131
1073
|
width: 4px;
|
|
1132
1074
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1133
1075
|
height: 1px;
|
|
1134
1076
|
}
|
|
1135
|
-
.
|
|
1077
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1136
1078
|
/*滚动条里面小方块*/
|
|
1137
1079
|
border-radius: 10px;
|
|
1138
1080
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1139
1081
|
background: #999;
|
|
1140
1082
|
}
|
|
1141
|
-
.
|
|
1083
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-track {
|
|
1142
1084
|
/*滚动条里面轨道*/
|
|
1143
1085
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1144
1086
|
border-radius: 10px;
|
|
1145
1087
|
background: #eee;
|
|
1146
1088
|
}
|
|
1089
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1090
|
+
border-right: none;
|
|
1091
|
+
}
|
|
1147
1092
|
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
padding-top: 12px;
|
|
1093
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1094
|
+
height: 0;
|
|
1151
1095
|
}
|
|
1152
|
-
|
|
1153
|
-
|
|
1096
|
+
|
|
1097
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1098
|
+
height: 0;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border:after {
|
|
1102
|
+
height: 0;
|
|
1154
1103
|
}
|
|
1155
1104
|
|
|
1105
|
+
[data-v-3f2c8504] .gmTableNoBorder.el-table--border:before {
|
|
1106
|
+
height: 0;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
[data-v-3f2c8504] .gmTableNoBorder .el-table__border-left-patch {
|
|
1110
|
+
height: 0;
|
|
1111
|
+
}
|
|
1156
1112
|
@charset "UTF-8";
|
|
1157
|
-
.custom-
|
|
1113
|
+
.table-custom-header-drawer .el-drawer__header {
|
|
1158
1114
|
padding: 10px 15px;
|
|
1159
1115
|
margin: 0;
|
|
1160
1116
|
border-bottom: 1px solid #ebeef5;
|
|
1161
1117
|
}
|
|
1162
|
-
.custom-
|
|
1118
|
+
.table-custom-header-drawer .el-drawer__title {
|
|
1163
1119
|
font-size: 14px;
|
|
1164
1120
|
color: #333;
|
|
1165
1121
|
}
|
|
1166
|
-
.custom-
|
|
1122
|
+
.table-custom-header-drawer .el-drawer__body {
|
|
1167
1123
|
padding: 15px;
|
|
1168
1124
|
}
|
|
1169
|
-
.custom-
|
|
1125
|
+
.table-custom-header-drawer .el-drawer__footer {
|
|
1170
1126
|
padding: 10px 15px;
|
|
1171
1127
|
border-top: 1px solid #ebeef5;
|
|
1172
1128
|
}
|
|
1173
|
-
.custom-
|
|
1129
|
+
.table-custom-header-drawer .el-checkbox {
|
|
1174
1130
|
display: flex;
|
|
1175
1131
|
align-items: center;
|
|
1176
1132
|
}
|
|
1177
|
-
.custom-
|
|
1133
|
+
.table-custom-header-drawer .el-input__inner {
|
|
1178
1134
|
text-align: center;
|
|
1179
1135
|
}
|
|
1180
|
-
.custom-
|
|
1136
|
+
.table-custom-header-drawer .el-input__suffix {
|
|
1181
1137
|
position: absolute;
|
|
1182
1138
|
right: 10px;
|
|
1183
1139
|
}
|
|
1184
|
-
.custom-
|
|
1140
|
+
.table-custom-header-drawer .custom-content li {
|
|
1185
1141
|
display: flex;
|
|
1186
1142
|
align-items: center;
|
|
1187
1143
|
justify-content: center;
|
|
1188
1144
|
height: 44px;
|
|
1189
1145
|
}
|
|
1190
|
-
.custom-
|
|
1146
|
+
.table-custom-header-drawer .custom-group {
|
|
1191
1147
|
max-height: calc(100vh - 226px);
|
|
1192
1148
|
overflow-y: auto;
|
|
1193
1149
|
}
|
|
1194
|
-
.custom-
|
|
1150
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar {
|
|
1195
1151
|
/*滚动条整体样式*/
|
|
1196
1152
|
width: 4px;
|
|
1197
1153
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1198
1154
|
height: 1px;
|
|
1199
1155
|
}
|
|
1200
|
-
.custom-
|
|
1156
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1201
1157
|
/*滚动条里面小方块*/
|
|
1202
1158
|
border-radius: 10px;
|
|
1203
1159
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1204
1160
|
background: #999;
|
|
1205
1161
|
}
|
|
1206
|
-
.custom-
|
|
1162
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-track {
|
|
1207
1163
|
/*滚动条里面轨道*/
|
|
1208
1164
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1209
1165
|
border-radius: 10px;
|
|
1210
1166
|
background: #eee;
|
|
1167
|
+
}
|
|
1168
|
+
.gm-upload-preview-dialog[data-v-c615121c] [data-v-c615121c] .el-dialog__body {
|
|
1169
|
+
padding: 0;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload-list__item, .gm-upload-file-picture-card[data-v-c615121c] [data-v-c615121c] .el-upload--picture-card {
|
|
1173
|
+
width: auto;
|
|
1174
|
+
height: auto;
|
|
1175
|
+
}
|
|
1176
|
+
.gm-upload-file {
|
|
1177
|
+
line-height: normal;
|
|
1178
|
+
}
|
|
1179
|
+
.gm-upload-file li > .el-checkbox {
|
|
1180
|
+
position: absolute;
|
|
1181
|
+
left: 10px;
|
|
1182
|
+
top: 0;
|
|
1183
|
+
z-index: 9;
|
|
1184
|
+
}
|
|
1185
|
+
.gm-upload-file .el-upload-list--picture-card {
|
|
1186
|
+
gap: 10px;
|
|
1187
|
+
}
|
|
1188
|
+
.gm-upload-file .el-upload-list__item {
|
|
1189
|
+
margin: 0;
|
|
1190
|
+
border: none;
|
|
1191
|
+
}
|
|
1192
|
+
.gm-upload-file .el-upload-list__item-file-name {
|
|
1193
|
+
line-height: normal;
|
|
1194
|
+
}
|
|
1195
|
+
.gm-upload-file .el-upload-dragger {
|
|
1196
|
+
padding: 0;
|
|
1197
|
+
border: none;
|
|
1198
|
+
width: 100%;
|
|
1199
|
+
height: 100%;
|
|
1200
|
+
display: flex;
|
|
1201
|
+
}
|
|
1202
|
+
.gm-upload-file .el-upload--picture-card {
|
|
1203
|
+
border: none;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.gm-upload-file-disabled .el-upload--picture-card {
|
|
1207
|
+
display: none;
|
|
1208
|
+
}
|
|
1209
|
+
.gm-upload-file-disabled .el-upload-list__item-status-label {
|
|
1210
|
+
display: none;
|
|
1211
1211
|
}
|