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,
|
||||
"typescript.validate.enable": false
|
||||
"typescript.validate.enable": false,
|
||||
"typescript.updateImportsOnPaste.enabled": false,
|
||||
"javascript.updateImportsOnPaste.enabled": false
|
||||
}
|
||||
@ -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;
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user