From 1fc8237aed572fc833f0eaa67f371889809cb6f0 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 9 Sep 2023 18:21:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BA=A4=E8=B4=B9=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/fee/feeDetail.js | 20 +++++ constant/url.js | 2 + pages/report/reportPayFeeDetail.vue | 134 +++++++++++++++++++++++++++- 3 files changed, 155 insertions(+), 1 deletion(-) create mode 100644 api/fee/feeDetail.js diff --git a/api/fee/feeDetail.js b/api/fee/feeDetail.js new file mode 100644 index 0000000..4d09b96 --- /dev/null +++ b/api/fee/feeDetail.js @@ -0,0 +1,20 @@ +import url from '../../constant/url.js' + +export function queryPayFeeDetail(_that,_data){ + return new Promise(function(reslove,reject){ + _that.context.get({ + url: url.queryPayFeeDetail, + data:_data, + success: function(res) { + reslove(res.data); + }, + fail: function(e) { + wx.showToast({ + title: "服务器异常了", + icon: 'none', + duration: 2000 + }) + } + }) + }); +} diff --git a/constant/url.js b/constant/url.js index 7fd0f43..2b4af51 100644 --- a/constant/url.js +++ b/constant/url.js @@ -209,6 +209,8 @@ export default { queryOrderDataReport:baseUrl+"app/dataReport.queryOrderDataReport", queryInoutDataReport:baseUrl+"app/dataReport.queryInoutDataReport", queryOthersDataReport:baseUrl+"app/dataReport.queryOthersDataReport", + queryPayFeeDetail:baseUrl+"app/reportFeeMonthStatistics/queryPayFeeDetail", + } diff --git a/pages/report/reportPayFeeDetail.vue b/pages/report/reportPayFeeDetail.vue index 8183fd0..87eb274 100644 --- a/pages/report/reportPayFeeDetail.vue +++ b/pages/report/reportPayFeeDetail.vue @@ -1,22 +1,154 @@ -