page
This commit is contained in:
parent
3380321599
commit
70b94460cb
@ -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>
|
||||||
@ -283,18 +283,19 @@ const columns = ref([
|
|||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
width: 100
|
width: 100
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
title:'审核时间',
|
||||||
|
dataIndex:'examineTime',
|
||||||
|
ellipsis:true,
|
||||||
|
width: 100
|
||||||
|
},
|
||||||
|
{
|
||||||
title:'结算时间',
|
title:'结算时间',
|
||||||
dataIndex:'settlementTime',
|
dataIndex:'settlementTime',
|
||||||
ellipsis:true,
|
ellipsis:true,
|
||||||
width: 100
|
width: 100
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title:'审核通过时间',
|
|
||||||
dataIndex:'examineTime',
|
|
||||||
ellipsis:true,
|
|
||||||
width: 100
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: '病例状态',
|
title: '病例状态',
|
||||||
dataIndex: 'status',
|
dataIndex: 'status',
|
||||||
@ -358,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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user