二、C端小程序电费扣款记录

This commit is contained in:
2025-07-17 15:33:22 +08:00
parent ac0a4b02c7
commit f9aedf7d79
5 changed files with 152 additions and 4 deletions

9
service/calc.js Normal file
View File

@@ -0,0 +1,9 @@
import apis from '../utils/request';
import { replaceSpecialIcon } from '../utils/index'
const { GET, POST, PUT, DELETE } = apis
// 获取电表列表
export const getDayCalcList = async function({ page, size, startTime, endTime, codeId }) {
const park = wx.getStorageSync('park')
return await GET(`/accounting/getEveryDayAccountingList?park=${park?.id}&page=${page}&size=${size}&startTime=${startTime}&endTime=${endTime}&codeId=${codeId}`);
}