Merge branch 'main' of ssh://git.jizhiweb.cn:2222/clinic-v2/web

This commit is contained in:
ChenQiuYu 2025-05-17 16:51:14 +08:00
commit 4281c34423
3 changed files with 3 additions and 3 deletions

View File

@ -107,7 +107,7 @@ const clickFirst = () => {
}
const selectedDate: any = ref()
const query = ref({
pageSize: 20,
pageSize: 100,
pageNum: 1,
keyword: "",
status: 0,

View File

@ -71,7 +71,7 @@ const formatDate = (isoStr: any) => {
<el-table-column prop="chargeOrderCode" label="订单号" show-overflow-tooltip/>
<el-table-column prop="number" label="变化量">
<template #default="{row}">
{{ row.type == 1 ? row.number : "+" + row.number }}{{ row.unit }}
{{ row.type == 1 ? "-"+row.number : "+" + row.number }}{{ row.unit }}
</template>
</el-table-column>
<el-table-column prop="uploadMessage" label="变更类型" show-overflow-tooltip>

View File

@ -218,7 +218,7 @@ const init = () => {
isGrant.value = false;
const query = {
page: 1,
pageSize: 50
pageSize: 100
};
post("vip/vip/list", query).then((res: any) => {
list.value = res.list;