修改缴费记录和对公

This commit is contained in:
2024-09-10 11:07:45 +08:00
parent 6e2608925c
commit 8482453da0
11 changed files with 120 additions and 20 deletions

View File

@@ -2,9 +2,9 @@ import apis from '../utils/request';
const { GET, POST, PUT, DELETE } = apis
// 获取充值记录
export const getRechargeList = async function(year, codeId) {
export const getRechargeList = async function(year = "", codeId = "", pay = "") {
const tenement = wx.getStorageSync('tenement')?.id
return await GET(`/wx/getRechargeList?year=${year}&tenement=${tenement}&codeId=${codeId}`);
return await GET(`/wx/getRechargeList?year=${year}&tenement=${tenement}&codeId=${codeId}&pay=${pay}`);
}
// 预备充值请求