Browse Source

表格组件查询按钮及扩展单选组件优化

main
likunming 1 month ago
parent
commit
63c54c9598
  1. 3
      io.sc.platform.core.frontend/src/platform/components/grid/TdContent.vue

3
io.sc.platform.core.frontend/src/platform/components/grid/TdContent.vue

@ -10,7 +10,8 @@
<component :is="value.componentType" v-bind="value.attrs"></component>
</template>
<template v-else>
<span v-html="Tools.isUndefinedOrNull(value) ? '' : value"></span>
<span v-if="col.html" v-dompurify-html="Tools.isUndefinedOrNull(value) ? '' : value"></span>
<span v-else>{{ value }}</span>
</template>
</template>

Loading…
Cancel
Save