供奉大厅-供奉列表-接口优化

This commit is contained in:
WindowBird 2025-09-23 13:32:04 +08:00
parent 62f77290e3
commit f5bf135827
2 changed files with 17 additions and 11 deletions

View File

@ -13,7 +13,13 @@ export function getEnshrinedList(params) {
return request({
url: "/app/enshrined/list",
method: "get",
params,
params: {
pageNum: "1",
pageSize: "12",
orderByColumn: "create_time",
isAsc: "descending",
...params,
},
});
}

View File

@ -16,16 +16,16 @@
class="table-row"
@click="handleItemClick(item)"
>
<view class="table-cell worshiper-col">{{
item.worshiperName || "未知"
}}</view>
<view class="table-cell time-col">{{
formatDate(item.startDate)
}}</view>
<view class="table-cell worshiper-col"
>{{ item.worshiperName || "未知" }}
</view>
<view class="table-cell time-col"
>{{ formatDate(item.startDate) }}
</view>
<view class="table-cell time-col">{{ formatDate(item.endDate) }}</view>
<view class="table-cell type-col">{{
item.thaliName || "未知类型"
}}</view>
<view class="table-cell type-col"
>{{ item.thaliName || "未知类型" }}
</view>
</view>
</view>
@ -67,7 +67,7 @@ export default {
enshrinedList: [],
loading: false,
pageNum: 1,
pageSize: 10,
pageSize: 12,
total: 0,
hasMore: true,
};