Compare commits
4 Commits
445a3e2a9a
...
70b94460cb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
70b94460cb | ||
|
|
3380321599 | ||
|
|
f226395609 | ||
|
|
376fd782c1 |
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
|
||||||
}
|
}
|
||||||
@ -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="queryData">
|
<a-button type="primary" @click="queryDataBtn">
|
||||||
<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">
|
: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,19 @@ 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',
|
||||||
@ -341,7 +359,10 @@ 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;
|
||||||
|
|||||||
@ -388,7 +388,7 @@ const init = (src) => {
|
|||||||
theme: customTheme, // 自定义样式
|
theme: customTheme, // 自定义样式
|
||||||
},
|
},
|
||||||
cssMaxWidth: 1000, // canvas 最大宽度
|
cssMaxWidth: 1000, // canvas 最大宽度
|
||||||
cssMaxHeight: 800
|
cssMaxHeight: 600
|
||||||
})
|
})
|
||||||
|
|
||||||
document.getElementsByClassName('tui-image-editor-main')[0].style.top = '45px'; // 调整图片显示位置
|
document.getElementsByClassName('tui-image-editor-main')[0].style.top = '45px'; // 调整图片显示位置
|
||||||
@ -425,6 +425,8 @@ 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;
|
||||||
@ -490,4 +492,23 @@ 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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user