Compare commits

..

4 Commits

Author SHA1 Message Date
zoujiandong
70b94460cb page 2025-08-14 15:55:34 +08:00
zoujiandong
3380321599 liebiao 2025-08-14 11:52:22 +08:00
zoujiandong
f226395609 imgeditor 2025-08-14 11:23:31 +08:00
zoujiandong
376fd782c1 imgeditor 2025-08-14 09:26:26 +08:00
3 changed files with 50 additions and 6 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

@ -46,7 +46,7 @@
placeholder="结算状态" />
</a-form-item>
<a-form-item class="smart-query-form-item">
<a-button type="primary" @click="queryData">
<a-button type="primary" @click="queryDataBtn">
<template #icon>
<SearchOutlined />
</template>
@ -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>
@ -146,7 +146,7 @@
<a-tag :color="$smartEnumPlugin.getColorByValue('CASESettlementFlag', text)">{{
$smartEnumPlugin.getDescByValue('CASESettlementFlag', text) }}</a-tag>
</template>
<template v-if="column.dataIndex === 'action'">
<template v-if="column.dataIndex === 'action'" >
<div class="smart-table-operate">
<a-button @click="showForm(record.id)" type="link" v-privilege="'case-system:case:select'">查看</a-button>
<span v-privilege="'case-system:case:examine'">
@ -243,6 +243,11 @@ const columns = ref([
dataIndex: 'expertHospitalName',
ellipsis: true,
},
{
title:'病历ID',
dataIndex:'id',
ellipsis:true
},
{
title: '患者',
dataIndex: 'userName',
@ -278,6 +283,19 @@ const columns = ref([
ellipsis: true,
width: 100
},
{
title:'审核时间',
dataIndex:'examineTime',
ellipsis:true,
width: 100
},
{
title:'结算时间',
dataIndex:'settlementTime',
ellipsis:true,
width: 100
},
{
title: '病例状态',
dataIndex: 'status',
@ -341,7 +359,10 @@ function resetQuery() {
queryForm.pageSize = pageSize;
queryData();
}
const queryDataBtn=()=>{
queryForm.pageNum=1;
queryData();
}
//
async function queryData() {
tableLoading.value = true;

View File

@ -388,7 +388,7 @@ const init = (src) => {
theme: customTheme, //
},
cssMaxWidth: 1000, // canvas
cssMaxHeight: 800
cssMaxHeight: 600
})
document.getElementsByClassName('tui-image-editor-main')[0].style.top = '45px'; //
@ -425,6 +425,8 @@ defineExpose({ init, save });
align-items: center !important;
background: transparent;
height: 40px !important;
}
.tui-image-editor-container .color-picker-value {
width: 20px !important;
@ -490,4 +492,23 @@ defineExpose({ init, save });
font-size: 17px;
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>