导入抄表记录完成电表列表部分(未调试)

This commit is contained in:
2025-09-08 17:31:03 +08:00
parent 71ad4995c8
commit 70737fa2b8
16 changed files with 249 additions and 46 deletions

7
service/workBench.js Normal file
View File

@@ -0,0 +1,7 @@
import apis from '../utils/request';
const { GET, POST, PUT, DELETE } = apis
// 检索园区路线列表
export const getMeterReadingRouteList = async function(keyword) {
return await GET(`/park/route/list?keyword=${keyword}`);
}