Compare commits

..

No commits in common. "70b94460cbce89be73a624185e6a6d0687fba550" and "445a3e2a9a6f9c9be4d2f55aff134d0b06ad526b" have entirely different histories.

3 changed files with 6 additions and 50 deletions

View File

@ -1,6 +1,4 @@
{ {
"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

@ -46,7 +46,7 @@
placeholder="结算状态" /> placeholder="结算状态" />
</a-form-item> </a-form-item>
<a-form-item class="smart-query-form-item"> <a-form-item class="smart-query-form-item">
<a-button type="primary" @click="queryDataBtn"> <a-button type="primary" @click="queryData">
<template #icon> <template #icon>
<SearchOutlined /> <SearchOutlined />
</template> </template>
@ -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" :scroll="{ x: 1500}"> :pagination="false">
<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,11 +243,6 @@ const columns = ref([
dataIndex: 'expertHospitalName', dataIndex: 'expertHospitalName',
ellipsis: true, ellipsis: true,
}, },
{
title:'病历ID',
dataIndex:'id',
ellipsis:true
},
{ {
title: '患者', title: '患者',
dataIndex: 'userName', dataIndex: 'userName',
@ -283,19 +278,6 @@ const columns = ref([
ellipsis: true, ellipsis: true,
width: 100 width: 100
}, },
{
title:'审核时间',
dataIndex:'examineTime',
ellipsis:true,
width: 100
},
{
title:'结算时间',
dataIndex:'settlementTime',
ellipsis:true,
width: 100
},
{ {
title: '病例状态', title: '病例状态',
dataIndex: 'status', dataIndex: 'status',
@ -359,10 +341,7 @@ function resetQuery() {
queryForm.pageSize = pageSize; queryForm.pageSize = pageSize;
queryData(); queryData();
} }
const queryDataBtn=()=>{
queryForm.pageNum=1;
queryData();
}
// //
async function queryData() { async function queryData() {
tableLoading.value = true; tableLoading.value = true;

View File

@ -388,7 +388,7 @@ const init = (src) => {
theme: customTheme, // theme: customTheme, //
}, },
cssMaxWidth: 1000, // canvas cssMaxWidth: 1000, // canvas
cssMaxHeight: 600 cssMaxHeight: 800
}) })
document.getElementsByClassName('tui-image-editor-main')[0].style.top = '45px'; // document.getElementsByClassName('tui-image-editor-main')[0].style.top = '45px'; //
@ -425,8 +425,6 @@ defineExpose({ init, save });
align-items: center !important; align-items: center !important;
background: transparent; background: transparent;
height: 40px !important; height: 40px !important;
} }
.tui-image-editor-container .color-picker-value { .tui-image-editor-container .color-picker-value {
width: 20px !important; width: 20px !important;
@ -492,23 +490,4 @@ defineExpose({ init, save });
font-size: 17px; font-size: 17px;
opacity: 0.8; opacity: 0.8;
} }
.tui-image-editor-container .tui-image-editor-help-menu.top{
top:4px!important;
}
.tui-image-editor-submenu{
height:51px!important;
bottom:-44px!important;
}
#tui-image-editor{
height:660px!important;
overflow-y: auto;
}
.ant-modal-body{
padding: 0 !important;
}
.tui-image-editor-container .tui-image-editor-main-container{
bottom: 93px!important;
}
</style> </style>