liebiao
This commit is contained in:
parent
f226395609
commit
3380321599
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -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
|
||||||
}
|
}
|
||||||
@ -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>
|
||||||
@ -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',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user