wui-components-v2 1.1.74 → 1.1.76
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.
|
@@ -652,25 +652,23 @@ console.log('clearValueMap', clearValueMap)
|
|
|
652
652
|
</view>
|
|
653
653
|
</template>
|
|
654
654
|
|
|
655
|
-
<style scoped>
|
|
656
|
-
.custom-from-style {
|
|
657
|
-
:
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
}
|
|
655
|
+
<style scoped lang="scss">
|
|
656
|
+
.custom-from-style :deep(.custom-radio) {
|
|
657
|
+
display: flex;
|
|
658
|
+
padding: 4px;
|
|
659
|
+
}
|
|
661
660
|
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
}
|
|
661
|
+
.custom-from-style :deep(.wd-form-item .wd-cell__wrapper) {
|
|
662
|
+
gap: 12px;
|
|
663
|
+
}
|
|
664
|
+
.custom-from-style :deep(.wd-form-item) {
|
|
665
|
+
border-top: 0.6px solid #e8e8e8;
|
|
666
|
+
padding: 12px 6px;
|
|
667
|
+
margin: auto 6px;
|
|
668
|
+
width: calc(100% - 12px);
|
|
669
|
+
}
|
|
670
|
+
.custom-from-style :deep(.no-border-top) {
|
|
671
|
+
border-top: none;
|
|
674
672
|
}
|
|
675
673
|
:deep(.disabled-input) {
|
|
676
674
|
background-color: #e8e8e8 !important;
|
|
@@ -680,7 +678,7 @@ console.log('clearValueMap', clearValueMap)
|
|
|
680
678
|
:global(.wot-theme-dark) .custom-from-style :deep(.wd-form-item) {
|
|
681
679
|
border-top-color: #3d3d3d;
|
|
682
680
|
}
|
|
683
|
-
:global(.wot-theme-dark)
|
|
681
|
+
:global(.wot-theme-dark) :deep(.disabled-input) {
|
|
684
682
|
background-color: #2f2f2f !important;
|
|
685
683
|
}
|
|
686
684
|
</style>
|
|
@@ -496,13 +496,6 @@ console.log(props, 'props')
|
|
|
496
496
|
:type="checkboxType"
|
|
497
497
|
/>
|
|
498
498
|
</template>
|
|
499
|
-
|
|
500
|
-
<template #addressInfo v-if="showAddressInfo">
|
|
501
|
-
<div>{{ item.fieldMap[config.extDisplayConfig?.secondColumn?.sourceId] }}</div>
|
|
502
|
-
</template>
|
|
503
|
-
<template #detailAddress v-if="showAddressInfo">
|
|
504
|
-
<div>{{ formatAddress(item.fieldMap[config.extDisplayConfig?.cardShowCols?.[0]?.sourceId]) }}</div>
|
|
505
|
-
</template>
|
|
506
499
|
</foldCard>
|
|
507
500
|
|
|
508
501
|
<template #bottom>
|