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,
"typescript.validate.enable": false,
"typescript.updateImportsOnPaste.enabled": false,
"javascript.updateImportsOnPaste.enabled": false
"typescript.validate.enable": false
}

View File

@ -46,7 +46,7 @@
placeholder="结算状态" />
</a-form-item>
<a-form-item class="smart-query-form-item">
<a-button type="primary" @click="queryDataBtn">
<a-button type="primary" @click="queryData">
<template #icon>
<SearchOutlined />
</template>
@ -121,7 +121,7 @@
<!---------- 表格 begin ----------->
<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 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,11 +243,6 @@ const columns = ref([
dataIndex: 'expertHospitalName',
ellipsis: true,
},
{
title:'病历ID',
dataIndex:'id',
ellipsis:true
},
{
title: '患者',
dataIndex: 'userName',
@ -283,19 +278,6 @@ const columns = ref([
ellipsis: true,
width: 100
},
{
title:'审核时间',
dataIndex:'examineTime',
ellipsis:true,
width: 100
},
{
title:'结算时间',
dataIndex:'settlementTime',
ellipsis:true,
width: 100
},
{
title: '病例状态',
dataIndex: 'status',
@ -359,10 +341,7 @@ 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: 600
cssMaxHeight: 800
})
document.getElementsByClassName('tui-image-editor-main')[0].style.top = '45px'; //
@ -425,8 +425,6 @@ defineExpose({ init, save });
align-items: center !important;
background: transparent;
height: 40px !important;
}
.tui-image-editor-container .color-picker-value {
width: 20px !important;
@ -492,23 +490,4 @@ 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>