hookehuyr

fix 便签显示宽度问题调整

<!--
* @Date: 2022-08-29 14:31:20
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-03-08 15:28:33
* @LastEditTime: 2024-07-27 16:01:53
* @FilePath: /data-table/src/components/NoteField/index.vue
* @Description: 富文本组件
-->
......@@ -11,7 +11,7 @@
<span v-if="item.component_props.required" class="required">&nbsp;*</span>
<span v-if="!item.component_props.hide_label">{{ item.component_props.label }}</span>
</div>
<div class="html" style="padding: 0.5rem 1rem 0 1rem;" v-html="item.component_props.note"></div>
<div class="html" style="padding: 0.5rem 1rem 0 1rem; overflow: scroll;" v-html="item.component_props.note"></div>
</div>
</template>
......