Browse Source

【issues/6851】editableCell组件值为0时不展示

pull/6912/head
JEECG 4 months ago
parent
commit
b189e6de52
  1. 4
      jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue

4
jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue

@ -2,7 +2,9 @@
<div :class="prefixCls">
<div v-show="!isEdit" :class="{ [`${prefixCls}__normal`]: true, 'ellipsis-cell': column.ellipsis }" @click="handleEdit">
<div class="cell-content" :title="column.ellipsis ? getValues ?? '' : ''">
{{ getValues ? getValues : '&nbsp;' }}
<!-- update-begin--author:liaozhiyang---date:20240709---forissues/6851editableCell组件值为0时不展示 -->
{{ getValues ?? '&nbsp;' }}
<!-- update-end--author:liaozhiyang---date:20240709---forissues/6851editableCell组件值为0时不展示 -->
</div>
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />
</div>

Loading…
Cancel
Save