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 @@ -