This commit is contained in:
xuliangzhan
2021-11-20 19:59:25 +08:00
parent af527e44b7
commit 36c79dce76
2 changed files with 4 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ body:
id: issue_link
attributes:
label: "可复现的链接:"
description: "一个最小化的重现能让我们精确地定位问题,从而快速解决问题。如何创建,点击 v3[codesandbox](https://codesandbox.io/s/vue-template-916h0)、[jsrun](https://jsrun.net/vIyKp/edit) 或 v4[codesandbox](https://codesandbox.io/s/vxe-table-wentiyanshi-forked-54v2j)、[jsrun](https://jsrun.net/K5IKp/edit),编辑后保存。"
description: "一个最小化的重现能让我们精确地定位问题,从而快速解决问题。如何创建,点击 v3[codesandbox](https://codesandbox.io/s/vue-template-916h0)、[jsfiddle](https://jsfiddle.net/86p7Ltny/)、[jsrun](https://jsrun.net/vIyKp/edit) 或 v4[codesandbox](https://codesandbox.io/s/vxe-table-wentiyanshi-forked-54v2j)、[jsfiddle](https://jsfiddle.net/9qoghkbj/)、[jsrun](https://jsrun.net/K5IKp/edit),编辑后保存。"
validations:
required: true
- type: textarea

View File

@@ -26,6 +26,9 @@ const defaultCellBorderColor = 'e8eaec'
function getCellLabel (column: VxeTableDefines.ColumnInfo, cellValue: any) {
if (cellValue) {
if (column.type === 'seq') {
return XEUtils.toValueString(cellValue)
}
switch (column.cellType) {
case 'string':
return XEUtils.toValueString(cellValue)