lw-cdp-ui 1.4.73 → 1.4.74

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.
@@ -19,6 +19,9 @@
19
19
  <slot :name="item?.options?.component"></slot>
20
20
  </div>
21
21
 
22
+ <!-- 物理换行 -->
23
+ <div v-else-if="item.component == 'dividerBr'" class="title-name-divider-br" :class="{ border: item?.border }"></div>
24
+
22
25
  <!-- 表单内容 -->
23
26
  <el-form-item
24
27
  v-else
@@ -337,4 +340,10 @@ export default {
337
340
  margin-left: 10px;
338
341
  }
339
342
  }
343
+ .title-name-divider-br {
344
+ &.border {
345
+ margin-bottom: 15px;
346
+ border-top: 1px var(--el-border-color) var(--el-border-style);
347
+ }
348
+ }
340
349
  </style>