fix(table): fix the initial data display of editable cells (#218)
修正可编辑单元格初始数据显示
This commit is contained in:
parent
22016291e4
commit
9ea257e1fb
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div :class="prefixCls">
|
<div :class="prefixCls">
|
||||||
<div v-show="!isEdit" :class="`${prefixCls}__normal`" @click="handleEdit">
|
<div v-show="!isEdit" :class="`${prefixCls}__normal`" @click="handleEdit">
|
||||||
{{ value || ' ' }}
|
{{ getValues || ' ' }}
|
||||||
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />
|
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -312,6 +312,7 @@
|
||||||
handleOptionsChange,
|
handleOptionsChange,
|
||||||
getWrapperStyle,
|
getWrapperStyle,
|
||||||
getRowEditable,
|
getRowEditable,
|
||||||
|
getValues,
|
||||||
// getSize,
|
// getSize,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue