This commit is contained in:
zoujiandong 2025-08-14 11:52:22 +08:00
parent f226395609
commit 3380321599
2 changed files with 22 additions and 3 deletions

View File

@ -1,4 +1,6 @@
{
"javascript.inlayHints.variableTypes.enabled": true,
"typescript.validate.enable": false
"typescript.validate.enable": false,
"typescript.updateImportsOnPaste.enabled": false,
"javascript.updateImportsOnPaste.enabled": false
}

View File

@ -121,7 +121,7 @@
<!---------- 表格 begin ----------->
<a-table size="small" :dataSource="tableData" :columns="columns" rowKey="id" bordered :loading="tableLoading"
:pagination="false">
:pagination="false" :scroll="{ x: 1500}">
<template #bodyCell="{ text, record, column }">
<template v-if="column.dataIndex === 'createTime'">
<span>{{ text.substring(0, 11) }}</span>
@ -243,6 +243,11 @@ const columns = ref([
dataIndex: 'expertHospitalName',
ellipsis: true,
},
{
title:'病历ID',
dataIndex:'id',
ellipsis:true
},
{
title: '患者',
dataIndex: 'userName',
@ -278,6 +283,18 @@ const columns = ref([
ellipsis: true,
width: 100
},
{
title:'结算时间',
dataIndex:'settlementTime',
ellipsis:true,
width: 100
},
{
title:'审核通过时间',
dataIndex:'examineTime',
ellipsis:true,
width: 100
},
{
title: '病例状态',
dataIndex: 'status',