|
@@ -7,10 +7,9 @@ export function useCount(flag: Ref<boolean>) {
|
|
|
}
|
|
|
|
|
|
const tableDataFormatter = ({
|
|
|
- rowData,
|
|
|
+ cellData,
|
|
|
column: { columnName, columnLabel },
|
|
|
}: CellRenderProps) => {
|
|
|
- const cellValue = rowData[columnName]
|
|
|
if (!unref(flag)) {
|
|
|
const matched = columnLabel.match(/(?<=\()\S+(?=\))/)
|
|
|
if (matched) {
|
|
@@ -18,20 +17,20 @@ export function useCount(flag: Ref<boolean>) {
|
|
|
const countIndex = machedStr.split('/').findIndex(str => str === '件')
|
|
|
if (
|
|
|
countIndex > -1 &&
|
|
|
- typeof cellValue === 'string' &&
|
|
|
- cellValue.split('/')[countIndex]
|
|
|
+ typeof cellData === 'string' &&
|
|
|
+ cellData.split('/')[countIndex]
|
|
|
) {
|
|
|
- return cellValue
|
|
|
+ return cellData
|
|
|
.split('/')
|
|
|
.filter((_, index) => index !== countIndex)
|
|
|
.join('/')
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if (columnName.includes('Time') && typeof cellValue === 'string') {
|
|
|
- return cellValue.replace('T', '\n')
|
|
|
+ if (columnName.includes('Time') && typeof cellData === 'string') {
|
|
|
+ return cellData.replace('T', '\n')
|
|
|
}
|
|
|
- return cellValue
|
|
|
+ return cellData
|
|
|
}
|
|
|
|
|
|
return {
|