准备联调抄表记录

This commit is contained in:
2025-09-17 14:51:36 +08:00
parent 17c992fb0b
commit 4308096394
8 changed files with 74 additions and 13 deletions

View File

@@ -24,4 +24,10 @@ export const getMeterReadingRouteMeterDetail = async function(id) {
// 新建一条抄表记录
export const createReading = async function(park, code, data) {
return await POST(`/reading/${park}/${code}`, data);
}
// 查询符合指定条件的抄表记录
export const getReadingList = async function(park, keyword, page) {
return await GET(`/reading/${park}?keyword=${keyword}&page=${page}`,);
}