giime 0.8.7 → 0.8.8
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 +81 -82
- package/es/components/src/base/cascader/Cascader.vue.d.ts +9 -3
- package/es/components/src/base/cascader/cascader.d.ts +4 -1
- package/es/components/src/base/cascader/cascader.mjs +5 -1
- package/es/components/src/base/cascader/cascader.mjs.map +1 -1
- package/es/components/src/base/cascader/index.d.ts +19 -7
- package/es/components/src/base/select/Select.vue.d.ts +9 -3
- package/es/components/src/base/select/index.d.ts +19 -7
- package/es/components/src/base/select/select.d.ts +4 -1
- package/es/components/src/base/select/select.mjs +5 -1
- package/es/components/src/base/select/select.mjs.map +1 -1
- package/es/components/src/base/selectV2/SelectV2.vue.d.ts +1 -1
- package/es/components/src/base/selectV2/index.d.ts +3 -3
- package/es/components/src/base/treeSelect/TreeSelect.vue.d.ts +9 -3
- package/es/components/src/base/treeSelect/treeSelect.d.ts +4 -1
- package/es/components/src/business/aliCategoryCascader/aliCategoryCascader.d.ts +4 -1
- package/es/components/src/business/companyCategoryCascader/companyCategoryCascader.d.ts +4 -1
- package/es/components/src/composite/selectOptions/SelectOptions.vue.d.ts +9 -3
- package/es/components/src/composite/selectOptions/index.d.ts +19 -7
- package/es/components/src/composite/selectOptions/selectOptions.d.ts +4 -1
- package/es/components/src/composite/tablePro/TableColumnVNodeRenderer.d.ts +10 -3
- package/es/components/src/composite/tablePro/TableColumnVNodeRenderer.mjs +24 -9
- package/es/components/src/composite/tablePro/TableColumnVNodeRenderer.mjs.map +1 -1
- package/es/components/src/composite/tablePro/TablePro.vue.mjs +1 -1
- package/es/components/src/composite/tablePro/TablePro.vue2.mjs +4 -3
- package/es/components/src/composite/tablePro/TablePro.vue2.mjs.map +1 -1
- package/es/giime/version.d.ts +1 -1
- package/es/hooks/base/useDictionary/index.d.ts +7 -3
- package/es/hooks/base/useDictionary/index.mjs.map +1 -1
- package/es/index.css +81 -82
- package/lib/components/src/base/cascader/Cascader.vue.d.ts +9 -3
- package/lib/components/src/base/cascader/cascader.d.ts +4 -1
- package/lib/components/src/base/cascader/cascader.js +5 -1
- package/lib/components/src/base/cascader/cascader.js.map +1 -1
- package/lib/components/src/base/cascader/index.d.ts +19 -7
- package/lib/components/src/base/select/Select.vue.d.ts +9 -3
- package/lib/components/src/base/select/index.d.ts +19 -7
- package/lib/components/src/base/select/select.d.ts +4 -1
- package/lib/components/src/base/select/select.js +5 -1
- package/lib/components/src/base/select/select.js.map +1 -1
- package/lib/components/src/base/selectV2/SelectV2.vue.d.ts +1 -1
- package/lib/components/src/base/selectV2/index.d.ts +3 -3
- package/lib/components/src/base/treeSelect/TreeSelect.vue.d.ts +9 -3
- package/lib/components/src/base/treeSelect/treeSelect.d.ts +4 -1
- package/lib/components/src/business/aliCategoryCascader/aliCategoryCascader.d.ts +4 -1
- package/lib/components/src/business/companyCategoryCascader/companyCategoryCascader.d.ts +4 -1
- package/lib/components/src/composite/selectOptions/SelectOptions.vue.d.ts +9 -3
- package/lib/components/src/composite/selectOptions/index.d.ts +19 -7
- package/lib/components/src/composite/selectOptions/selectOptions.d.ts +4 -1
- package/lib/components/src/composite/tablePro/TableColumnVNodeRenderer.d.ts +10 -3
- package/lib/components/src/composite/tablePro/TableColumnVNodeRenderer.js +24 -9
- package/lib/components/src/composite/tablePro/TableColumnVNodeRenderer.js.map +1 -1
- package/lib/components/src/composite/tablePro/TablePro.vue.js +1 -1
- package/lib/components/src/composite/tablePro/TablePro.vue2.js +4 -3
- package/lib/components/src/composite/tablePro/TablePro.vue2.js.map +1 -1
- package/lib/giime/version.d.ts +1 -1
- package/lib/hooks/base/useDictionary/index.d.ts +7 -3
- package/lib/hooks/base/useDictionary/index.js.map +1 -1
- package/lib/index.css +81 -82
- package/package.json +1 -1
package/lib/giime/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.8.
|
|
1
|
+
export declare const version = "0.8.8";
|
|
@@ -6,10 +6,14 @@ export interface DictionaryOption {
|
|
|
6
6
|
*/
|
|
7
7
|
tagType?: 'success' | 'warning' | 'primary' | 'danger';
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
export interface UseDictionaryOptions {
|
|
10
|
+
/**
|
|
11
|
+
* 是否立即执行字典数据获取
|
|
12
|
+
*/
|
|
11
13
|
immediate?: boolean;
|
|
12
|
-
}
|
|
14
|
+
}
|
|
15
|
+
/**字典 */
|
|
16
|
+
export declare const useDictionary: <T extends string>(fieldCodes: T[], options?: UseDictionaryOptions) => {
|
|
13
17
|
dictionaryList: import("vue").Ref<{
|
|
14
18
|
id: number;
|
|
15
19
|
fieldName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../../../packages/hooks/base/useDictionary/index.ts"],"sourcesContent":["import type { DataDictVo } from '@giime/api/guardBasic/interface';\nimport { usePostBasicV1DataDictionaryBatchDetailByCode } from '@giime/api/guardBasic/controller';\nimport { ref, computed } from 'vue';\nimport { tryOnMounted } from '@vueuse/core';\n\nexport interface DictionaryOption {\n label: string;\n value: any;\n /**\n * 标签类型 'success' | 'warning' | 'info' | 'primary' | 'danger'\n */\n tagType?: 'success' | 'warning' | 'primary' | 'danger';\n}\n/**字典 */\nexport const useDictionary = <T extends string>(fieldCodes: T[], options?:
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../../../packages/hooks/base/useDictionary/index.ts"],"sourcesContent":["import type { DataDictVo } from '@giime/api/guardBasic/interface';\nimport { usePostBasicV1DataDictionaryBatchDetailByCode } from '@giime/api/guardBasic/controller';\nimport { ref, computed } from 'vue';\nimport { tryOnMounted } from '@vueuse/core';\n\nexport interface DictionaryOption {\n label: string;\n value: any;\n /**\n * 标签类型 'success' | 'warning' | 'info' | 'primary' | 'danger'\n */\n tagType?: 'success' | 'warning' | 'primary' | 'danger';\n}\nexport interface UseDictionaryOptions {\n /**\n * 是否立即执行字典数据获取\n */\n immediate?: boolean;\n}\n/**字典 */\nexport const useDictionary = <T extends string>(fieldCodes: T[], options?: UseDictionaryOptions) => {\n const { exec: getDictionaryExec } = usePostBasicV1DataDictionaryBatchDetailByCode();\n const isLoading = ref(false);\n const dictionaryList = ref<DataDictVo[]>([]);\n const dictionary = computed(() => {\n return dictionaryList.value.reduce(\n (acc, item) => {\n acc[item.fieldCode as T] =\n item?.values?.map(it => ({\n label: it.valueName,\n value: it.valueCode,\n tagType: it.tagType as DictionaryOption['tagType'],\n })) || [];\n\n return acc;\n },\n {} as Record<T, DictionaryOption[]>,\n );\n });\n const getDictionary = async () => {\n isLoading.value = true;\n try {\n const { data } = await getDictionaryExec({ fieldCodes });\n\n dictionaryList.value = data.value?.data || [];\n } finally {\n isLoading.value = false;\n }\n };\n const immediate = options?.immediate ?? true;\n tryOnMounted(() => {\n if (immediate) {\n getDictionary();\n }\n });\n\n return {\n dictionaryList,\n dictionary,\n isLoading,\n getDictionary,\n };\n};\n"],"names":["usePostBasicV1DataDictionaryBatchDetailByCode","ref","computed","tryOnMounted"],"mappings":";;;;;;;AAoBO,MAAM,aAAA,GAAgB,CAAmB,UAAA,EAAiB,OAAA,KAAmC;AAClG,EAAA,MAAM,EAAE,IAAA,EAAM,iBAAA,EAAkB,GAAIA,2FAAA,EAA8C;AAClF,EAAA,MAAM,SAAA,GAAYC,QAAI,KAAK,CAAA;AAC3B,EAAA,MAAM,cAAA,GAAiBA,OAAA,CAAkB,EAAE,CAAA;AAC3C,EAAA,MAAM,UAAA,GAAaC,aAAS,MAAM;AAChC,IAAA,OAAO,eAAe,KAAA,CAAM,MAAA;AAAA,MAC1B,CAAC,KAAK,IAAA,KAAS;AACb,QAAA,GAAA,CAAI,KAAK,SAAc,CAAA,GACrB,IAAA,EAAM,MAAA,EAAQ,IAAI,CAAA,EAAA,MAAO;AAAA,UACvB,OAAO,EAAA,CAAG,SAAA;AAAA,UACV,OAAO,EAAA,CAAG,SAAA;AAAA,UACV,SAAS,EAAA,CAAG;AAAA,SACd,CAAE,KAAK,EAAC;AAEV,QAAA,OAAO,GAAA;AAAA,MACT,CAAA;AAAA,MACA;AAAC,KACH;AAAA,EACF,CAAC,CAAA;AACD,EAAA,MAAM,gBAAgB,YAAY;AAChC,IAAA,SAAA,CAAU,KAAA,GAAQ,IAAA;AAClB,IAAA,IAAI;AACF,MAAA,MAAM,EAAE,IAAA,EAAK,GAAI,MAAM,iBAAA,CAAkB,EAAE,YAAY,CAAA;AAEvD,MAAA,cAAA,CAAe,KAAA,GAAQ,IAAA,CAAK,KAAA,EAAO,IAAA,IAAQ,EAAC;AAAA,IAC9C,CAAA,SAAE;AACA,MAAA,SAAA,CAAU,KAAA,GAAQ,KAAA;AAAA,IACpB;AAAA,EACF,CAAA;AACA,EAAA,MAAM,SAAA,GAAY,SAAS,SAAA,IAAa,IAAA;AACxC,EAAAC,iBAAA,CAAa,MAAM;AACjB,IAAA,IAAI,SAAA,EAAW;AACb,MAAA,aAAA,EAAc;AAAA,IAChB;AAAA,EACF,CAAC,CAAA;AAED,EAAA,OAAO;AAAA,IACL,cAAA;AAAA,IACA,UAAA;AAAA,IACA,SAAA;AAAA,IACA;AAAA,GACF;AACF;;;;"}
|
package/lib/index.css
CHANGED
|
@@ -883,6 +883,14 @@ video {
|
|
|
883
883
|
.gm-group:hover .group-hover\:gm-block {
|
|
884
884
|
display: block;
|
|
885
885
|
}
|
|
886
|
+
.gm-upload-pro-preview-dialog[data-v-80b383d8] [data-v-80b383d8] .el-dialog__body {
|
|
887
|
+
padding: 0;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.gm-upload-pro-file-picture-card[data-v-80b383d8] [data-v-80b383d8] .el-upload-list__item, .gm-upload-pro-file-picture-card[data-v-80b383d8] [data-v-80b383d8] .el-upload--picture-card {
|
|
891
|
+
width: auto;
|
|
892
|
+
height: auto;
|
|
893
|
+
}
|
|
886
894
|
.gm-upload-pro-file {
|
|
887
895
|
line-height: normal;
|
|
888
896
|
}
|
|
@@ -921,14 +929,6 @@ video {
|
|
|
921
929
|
.gm-upload-pro-file-disabled .el-upload-list__item-status-label {
|
|
922
930
|
display: none;
|
|
923
931
|
}
|
|
924
|
-
.gm-upload-pro-preview-dialog[data-v-80b383d8] [data-v-80b383d8] .el-dialog__body {
|
|
925
|
-
padding: 0;
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
.gm-upload-pro-file-picture-card[data-v-80b383d8] [data-v-80b383d8] .el-upload-list__item, .gm-upload-pro-file-picture-card[data-v-80b383d8] [data-v-80b383d8] .el-upload--picture-card {
|
|
929
|
-
width: auto;
|
|
930
|
-
height: auto;
|
|
931
|
-
}
|
|
932
932
|
|
|
933
933
|
.gm-range-number .el-form-item[data-v-1ae16d96] {
|
|
934
934
|
margin: 0;
|
|
@@ -965,6 +965,13 @@ video {
|
|
|
965
965
|
stroke-dashoffset: -120px;
|
|
966
966
|
}
|
|
967
967
|
}
|
|
968
|
+
.gm-flex-center[data-v-c17deec9] {
|
|
969
|
+
align-items: center;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.gm-flex-justify-between[data-v-c17deec9] {
|
|
973
|
+
justify-content: space-between;
|
|
974
|
+
}
|
|
968
975
|
.gm-number-interval-single[data-v-4e6f4d6f] {
|
|
969
976
|
border-radius: var(--el-input-border-radius, var(--el-border-radius-base));
|
|
970
977
|
box-shadow: 0 0 0 1px var(--el-input-border-color, var(--el-border-color)) inset;
|
|
@@ -983,6 +990,33 @@ video {
|
|
|
983
990
|
.gm-number-interval-single[data-v-4e6f4d6f]:hover .gm-number-interval-close[data-v-4e6f4d6f] {
|
|
984
991
|
display: flex;
|
|
985
992
|
}
|
|
993
|
+
[data-v-d3111183] .gmSearchForm .el-form-item {
|
|
994
|
+
margin-right: 0;
|
|
995
|
+
margin-bottom: 4px;
|
|
996
|
+
}
|
|
997
|
+
[data-v-98c2e804] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
998
|
+
border-right: none;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
[data-v-98c2e804] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1002
|
+
height: 0;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
[data-v-98c2e804] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1006
|
+
height: 0;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
[data-v-98c2e804] .gmTableNoBorder.el-table--border:after {
|
|
1010
|
+
height: 0;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
[data-v-98c2e804] .gmTableNoBorder.el-table--border:before {
|
|
1014
|
+
height: 0;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
[data-v-98c2e804] .gmTableNoBorder .el-table__border-left-patch {
|
|
1018
|
+
height: 0;
|
|
1019
|
+
}
|
|
986
1020
|
.gm-upload-file {
|
|
987
1021
|
line-height: normal;
|
|
988
1022
|
}
|
|
@@ -1026,181 +1060,146 @@ video {
|
|
|
1026
1060
|
width: auto;
|
|
1027
1061
|
height: auto;
|
|
1028
1062
|
}
|
|
1029
|
-
[data-v-
|
|
1030
|
-
margin-right: 0;
|
|
1031
|
-
margin-bottom: 4px;
|
|
1032
|
-
}
|
|
1033
|
-
[data-v-2c351ff8] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1063
|
+
[data-v-4bbcbf2d] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1034
1064
|
border-right: none;
|
|
1035
1065
|
}
|
|
1036
1066
|
|
|
1037
|
-
[data-v-
|
|
1038
|
-
height: 0;
|
|
1039
|
-
}
|
|
1040
|
-
|
|
1041
|
-
[data-v-2c351ff8] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1067
|
+
[data-v-4bbcbf2d] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1042
1068
|
height: 0;
|
|
1043
1069
|
}
|
|
1044
1070
|
|
|
1045
|
-
[data-v-
|
|
1071
|
+
[data-v-4bbcbf2d] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1046
1072
|
height: 0;
|
|
1047
1073
|
}
|
|
1048
1074
|
|
|
1049
|
-
[data-v-
|
|
1050
|
-
height: 0;
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
[data-v-2c351ff8] .gmTableNoBorder .el-table__border-left-patch {
|
|
1054
|
-
height: 0;
|
|
1055
|
-
}
|
|
1056
|
-
[data-v-98c2e804] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1057
|
-
border-right: none;
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
[data-v-98c2e804] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1061
|
-
height: 0;
|
|
1062
|
-
}
|
|
1063
|
-
|
|
1064
|
-
[data-v-98c2e804] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1065
|
-
height: 0;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
[data-v-98c2e804] .gmTableNoBorder.el-table--border:after {
|
|
1075
|
+
[data-v-4bbcbf2d] .gmTableNoBorder.el-table--border:after {
|
|
1069
1076
|
height: 0;
|
|
1070
1077
|
}
|
|
1071
1078
|
|
|
1072
|
-
[data-v-
|
|
1079
|
+
[data-v-4bbcbf2d] .gmTableNoBorder.el-table--border:before {
|
|
1073
1080
|
height: 0;
|
|
1074
1081
|
}
|
|
1075
1082
|
|
|
1076
|
-
[data-v-
|
|
1083
|
+
[data-v-4bbcbf2d] .gmTableNoBorder .el-table__border-left-patch {
|
|
1077
1084
|
height: 0;
|
|
1078
1085
|
}
|
|
1079
|
-
.gm-flex-center[data-v-c17deec9] {
|
|
1080
|
-
align-items: center;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
.gm-flex-justify-between[data-v-c17deec9] {
|
|
1084
|
-
justify-content: space-between;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
.pagination-container[data-v-47d35e7b] {
|
|
1088
|
-
background: #fff;
|
|
1089
|
-
padding-top: 12px;
|
|
1090
|
-
}
|
|
1091
|
-
.pagination-container.hidden[data-v-47d35e7b] {
|
|
1092
|
-
display: none;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
1086
|
@charset "UTF-8";
|
|
1096
|
-
.custom-
|
|
1087
|
+
.table-custom-header-drawer .el-drawer__header {
|
|
1097
1088
|
padding: 10px 15px;
|
|
1098
1089
|
margin: 0;
|
|
1099
1090
|
border-bottom: 1px solid #ebeef5;
|
|
1100
1091
|
}
|
|
1101
|
-
.custom-
|
|
1092
|
+
.table-custom-header-drawer .el-drawer__title {
|
|
1102
1093
|
font-size: 14px;
|
|
1103
1094
|
color: #333;
|
|
1104
1095
|
}
|
|
1105
|
-
.custom-
|
|
1096
|
+
.table-custom-header-drawer .el-drawer__body {
|
|
1106
1097
|
padding: 15px;
|
|
1107
1098
|
}
|
|
1108
|
-
.custom-
|
|
1099
|
+
.table-custom-header-drawer .el-drawer__footer {
|
|
1109
1100
|
padding: 10px 15px;
|
|
1110
1101
|
border-top: 1px solid #ebeef5;
|
|
1111
1102
|
}
|
|
1112
|
-
.custom-
|
|
1103
|
+
.table-custom-header-drawer .el-checkbox {
|
|
1113
1104
|
display: flex;
|
|
1114
1105
|
align-items: center;
|
|
1115
1106
|
}
|
|
1116
|
-
.custom-
|
|
1107
|
+
.table-custom-header-drawer .el-input__inner {
|
|
1117
1108
|
text-align: center;
|
|
1118
1109
|
}
|
|
1119
|
-
.custom-
|
|
1110
|
+
.table-custom-header-drawer .el-input__suffix {
|
|
1120
1111
|
position: absolute;
|
|
1121
1112
|
right: 10px;
|
|
1122
1113
|
}
|
|
1123
|
-
.custom-
|
|
1114
|
+
.table-custom-header-drawer .custom-content li {
|
|
1124
1115
|
display: flex;
|
|
1125
1116
|
align-items: center;
|
|
1126
1117
|
justify-content: center;
|
|
1127
1118
|
height: 44px;
|
|
1128
1119
|
}
|
|
1129
|
-
.custom-
|
|
1120
|
+
.table-custom-header-drawer .custom-group {
|
|
1130
1121
|
max-height: calc(100vh - 226px);
|
|
1131
1122
|
overflow-y: auto;
|
|
1132
1123
|
}
|
|
1133
|
-
.custom-
|
|
1124
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar {
|
|
1134
1125
|
/*滚动条整体样式*/
|
|
1135
1126
|
width: 4px;
|
|
1136
1127
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1137
1128
|
height: 1px;
|
|
1138
1129
|
}
|
|
1139
|
-
.custom-
|
|
1130
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1140
1131
|
/*滚动条里面小方块*/
|
|
1141
1132
|
border-radius: 10px;
|
|
1142
1133
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1143
1134
|
background: #999;
|
|
1144
1135
|
}
|
|
1145
|
-
.custom-
|
|
1136
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-track {
|
|
1146
1137
|
/*滚动条里面轨道*/
|
|
1147
1138
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1148
1139
|
border-radius: 10px;
|
|
1149
1140
|
background: #eee;
|
|
1150
1141
|
}
|
|
1151
1142
|
@charset "UTF-8";
|
|
1152
|
-
.
|
|
1143
|
+
.custom-operate-drawer .el-drawer__header {
|
|
1153
1144
|
padding: 10px 15px;
|
|
1154
1145
|
margin: 0;
|
|
1155
1146
|
border-bottom: 1px solid #ebeef5;
|
|
1156
1147
|
}
|
|
1157
|
-
.
|
|
1148
|
+
.custom-operate-drawer .el-drawer__title {
|
|
1158
1149
|
font-size: 14px;
|
|
1159
1150
|
color: #333;
|
|
1160
1151
|
}
|
|
1161
|
-
.
|
|
1152
|
+
.custom-operate-drawer .el-drawer__body {
|
|
1162
1153
|
padding: 15px;
|
|
1163
1154
|
}
|
|
1164
|
-
.
|
|
1155
|
+
.custom-operate-drawer .el-drawer__footer {
|
|
1165
1156
|
padding: 10px 15px;
|
|
1166
1157
|
border-top: 1px solid #ebeef5;
|
|
1167
1158
|
}
|
|
1168
|
-
.
|
|
1159
|
+
.custom-operate-drawer .el-checkbox {
|
|
1169
1160
|
display: flex;
|
|
1170
1161
|
align-items: center;
|
|
1171
1162
|
}
|
|
1172
|
-
.
|
|
1163
|
+
.custom-operate-drawer .el-input__inner {
|
|
1173
1164
|
text-align: center;
|
|
1174
1165
|
}
|
|
1175
|
-
.
|
|
1166
|
+
.custom-operate-drawer .el-input__suffix {
|
|
1176
1167
|
position: absolute;
|
|
1177
1168
|
right: 10px;
|
|
1178
1169
|
}
|
|
1179
|
-
.
|
|
1170
|
+
.custom-operate-drawer .custom-content li {
|
|
1180
1171
|
display: flex;
|
|
1181
1172
|
align-items: center;
|
|
1182
1173
|
justify-content: center;
|
|
1183
1174
|
height: 44px;
|
|
1184
1175
|
}
|
|
1185
|
-
.
|
|
1176
|
+
.custom-operate-drawer .custom-group {
|
|
1186
1177
|
max-height: calc(100vh - 226px);
|
|
1187
1178
|
overflow-y: auto;
|
|
1188
1179
|
}
|
|
1189
|
-
.
|
|
1180
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar {
|
|
1190
1181
|
/*滚动条整体样式*/
|
|
1191
1182
|
width: 4px;
|
|
1192
1183
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1193
1184
|
height: 1px;
|
|
1194
1185
|
}
|
|
1195
|
-
.
|
|
1186
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1196
1187
|
/*滚动条里面小方块*/
|
|
1197
1188
|
border-radius: 10px;
|
|
1198
1189
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1199
1190
|
background: #999;
|
|
1200
1191
|
}
|
|
1201
|
-
.
|
|
1192
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-track {
|
|
1202
1193
|
/*滚动条里面轨道*/
|
|
1203
1194
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1204
1195
|
border-radius: 10px;
|
|
1205
1196
|
background: #eee;
|
|
1206
|
-
}
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.pagination-container[data-v-47d35e7b] {
|
|
1200
|
+
background: #fff;
|
|
1201
|
+
padding-top: 12px;
|
|
1202
|
+
}
|
|
1203
|
+
.pagination-container.hidden[data-v-47d35e7b] {
|
|
1204
|
+
display: none;
|
|
1205
|
+
}
|