提交一波,继续处理数据结构

This commit is contained in:
aixianling
2024-04-15 14:31:13 +08:00
parent e72f7c5e9f
commit fdfbaad6d8
9 changed files with 392 additions and 255 deletions

View File

@@ -1,6 +1,6 @@
<template>
<section class="configItem" :class="{topLabel}">
<label v-text="label"/>
<label :class="{bold}" v-text="label"/>
<div class="content fill">
<slot v-if="$slots.default"/>
<div v-else-if="value" v-html="value"/>
@@ -13,7 +13,8 @@ export default {
props: {
label: String,
value: {default: null},
topLabel: Boolean
topLabel: Boolean,
bold: Boolean
},
}
</script>
@@ -35,6 +36,10 @@ export default {
color: #FFFFFF;
font-size: 12px;
text-align: right;
&.bold {
font-weight: bold;
}
}
.el-select .el-tag {