Commit 133f337577dad0219851d2d6466ff0c60a21a47a

Authored by fengtao
1 parent b564d32e

fix:DEFECT-862 场景联动 条件筛选文本超出后样式错乱

... ... @@ -97,7 +97,7 @@
97 97
98 98 //ft add 表单数据置空
99 99 const resetConditionScreenForm = () => {
100   - // conditionScreeningList.value = [];
  100 + conditionScreeningList.value = [];
101 101 resetFilter();
102 102 for (let i = 0; i < unref(refItem.conditionScreeningRefs).length; i++) {
103 103 unref(refItem.conditionScreeningRefs)[i]?.resetConditionScreenForm();
... ... @@ -121,3 +121,12 @@
121 121 resetConditionScreenForm,
122 122 });
123 123 </script>
  124 +
  125 +<style lang="less" scoped>
  126 + :deep(.vben-collapse-container__header) {
  127 + overflow: hidden !important;
  128 + overflow-y: scroll !important;
  129 + white-space: pre !important;
  130 + height: 93px !important;
  131 + }
  132 +</style>
... ...
1 1 <template>
2 2 <div
  3 + style="width: 100%; flex-wrap: wrap"
3 4 v-if="otherAttribute.length > 0 && otherAttribute[0].value && otherAttribute[0].operation"
4 5 class="flex"
5 6 >
... ...