完成账单用电初始版本(未联调)
This commit is contained in:
@@ -11,4 +11,15 @@ export const getBillList = async function(page) {
|
||||
export const getElectricityList = async function({ meter, type, time }) {
|
||||
const tenement = wx.getStorageSync('tenement')?.id || ""
|
||||
return await GET(`/wx/getElectricityList?tenement=${tenement}&meter=${meter}&type=${type}&time=${time}`);
|
||||
}
|
||||
|
||||
// 抄表记录列表
|
||||
export const getMeterReadingList = async function(meter) {
|
||||
const tenement = wx.getStorageSync('tenement')?.id || ""
|
||||
return await GET(`/wx/getMeterReadingList?tenement=${tenement}&meter=${meter}`);
|
||||
}
|
||||
// 账务余额列表
|
||||
export const getAccountingList = async function(meter) {
|
||||
const tenement = wx.getStorageSync('tenement')?.id || ""
|
||||
return await GET(`/wx/getAccountingList?tenement=${tenement}&meter=${meter}`);
|
||||
}
|
Reference in New Issue
Block a user