8 lines
276 B
JavaScript

import apis from '../utils/request';
const { GET, POST, PUT, DELETE } = apis
// 获取电费账单
export const getReportDetail = async function(id, tid) {
const tenement = wx.getStorageSync('tenement')
return await GET(`/report/${id}/tenement/${tid || tenement?.id}`);
}