Showing
1 changed file
with
3 additions
and
4 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-08-30 11:34:19 | 2 | * @Date: 2022-08-30 11:34:19 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2023-04-03 17:13:20 | 4 | + * @LastEditTime: 2023-04-04 14:58:27 |
| 5 | * @FilePath: /custom_form/src/components/RadioField/index.vue | 5 | * @FilePath: /custom_form/src/components/RadioField/index.vue |
| 6 | * @Description: 单项选择控件 | 6 | * @Description: 单项选择控件 |
| 7 | --> | 7 | --> |
| ... | @@ -16,7 +16,7 @@ | ... | @@ -16,7 +16,7 @@ |
| 16 | style="width: 100%"> | 16 | style="width: 100%"> |
| 17 | <div v-for="x in item.component_props.options" :key="x.value" class="radio-wrapper"> | 17 | <div v-for="x in item.component_props.options" :key="x.value" class="radio-wrapper"> |
| 18 | <nut-radio :label="x.value" icon-size="16" style="margin-bottom: 0.25rem">{{ x.title }}</nut-radio> | 18 | <nut-radio :label="x.value" icon-size="16" style="margin-bottom: 0.25rem">{{ x.title }}</nut-radio> |
| 19 | - <div v-if="x.desc_text" class="van-multi-ellipsis--l3 rule-desc-text">{{ x.desc_text }}</div> | 19 | + <div v-if="x.desc_text" class="multi-ellipsis--l3 rule-desc-text">{{ x.desc_text }}</div> |
| 20 | <div v-if="x.desc_type === 'text'" class="rule-box" @click="showRule(x)"> | 20 | <div v-if="x.desc_type === 'text'" class="rule-box" @click="showRule(x)"> |
| 21 | {{ x.desc_btn_name }} >> | 21 | {{ x.desc_btn_name }} >> |
| 22 | </div> | 22 | </div> |
| ... | @@ -36,7 +36,7 @@ | ... | @@ -36,7 +36,7 @@ |
| 36 | <nut-overlay v-model:visible="show" :lock-scroll="true"> | 36 | <nut-overlay v-model:visible="show" :lock-scroll="true"> |
| 37 | <div class="rule-wrapper"> | 37 | <div class="rule-wrapper"> |
| 38 | <div class="rule-block"> | 38 | <div class="rule-block"> |
| 39 | - <div style="height: 70vh; min-height: 70vh; overflow: scroll; white-space: pre-wrap; line-height: 1.5;" v-html="rule_content"></div> | 39 | + <div style="height: 70vh; min-height: 70vh; overflow: scroll; white-space: pre-wrap; line-height: 1.5;font-size: 15px;" v-html="rule_content"></div> |
| 40 | <div class="close-btn"> | 40 | <div class="close-btn"> |
| 41 | <nut-button type="primary" block @click="closeRule" | 41 | <nut-button type="primary" block @click="closeRule" |
| 42 | >关 闭</nut-button | 42 | >关 闭</nut-button |
| ... | @@ -183,7 +183,6 @@ defineExpose({ validRadio }); | ... | @@ -183,7 +183,6 @@ defineExpose({ validRadio }); |
| 183 | border-radius: 0.25rem; | 183 | border-radius: 0.25rem; |
| 184 | padding: 25px; | 184 | padding: 25px; |
| 185 | margin: 25px; | 185 | margin: 25px; |
| 186 | - margin-top: 0; | ||
| 187 | } | 186 | } |
| 188 | .affix-input { | 187 | .affix-input { |
| 189 | border: 1px solid #eaeaea; | 188 | border: 1px solid #eaeaea; | ... | ... |
-
Please register or login to post a comment