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, "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 -----------> <!---------- 表格 begin ----------->
<a-table size="small" :dataSource="tableData" :columns="columns" rowKey="id" bordered :loading="tableLoading" <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 #bodyCell="{ text, record, column }">
<template v-if="column.dataIndex === 'createTime'"> <template v-if="column.dataIndex === 'createTime'">
<span>{{ text.substring(0, 11) }}</span> <span>{{ text.substring(0, 11) }}</span>
@ -146,7 +146,7 @@
<a-tag :color="$smartEnumPlugin.getColorByValue('CASESettlementFlag', text)">{{ <a-tag :color="$smartEnumPlugin.getColorByValue('CASESettlementFlag', text)">{{
$smartEnumPlugin.getDescByValue('CASESettlementFlag', text) }}</a-tag> $smartEnumPlugin.getDescByValue('CASESettlementFlag', text) }}</a-tag>
</template> </template>
<template v-if="column.dataIndex === 'action'"> <template v-if="column.dataIndex === 'action'" >
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button @click="showForm(record.id)" type="link" v-privilege="'case-system:case:select'">查看</a-button> <a-button @click="showForm(record.id)" type="link" v-privilege="'case-system:case:select'">查看</a-button>
<span v-privilege="'case-system:case:examine'"> <span v-privilege="'case-system:case:examine'">
@ -243,6 +243,11 @@ const columns = ref([
dataIndex: 'expertHospitalName', dataIndex: 'expertHospitalName',
ellipsis: true, ellipsis: true,
}, },
{
title:'病历ID',
dataIndex:'id',
ellipsis:true
},
{ {
title: '患者', title: '患者',
dataIndex: 'userName', dataIndex: 'userName',
@ -278,6 +283,18 @@ const columns = ref([
ellipsis: true, ellipsis: true,
width: 100 width: 100
}, },
{
title:'结算时间',
dataIndex:'settlementTime',
ellipsis:true,
width: 100
},
{
title:'审核通过时间',
dataIndex:'examineTime',
ellipsis:true,
width: 100
},
{ {
title: '病例状态', title: '病例状态',
dataIndex: 'status', dataIndex: 'status',