功能完成报表任务完成

This commit is contained in:
2023-02-11 00:39:10 +08:00
parent 4bb155021c
commit 2aaab6a744
7 changed files with 90 additions and 69 deletions

View File

@@ -1,10 +1,10 @@
import utils from './util'
//testURL
// const BASE_URL = 'http://127.0.0.1:8080/wx';
const BASE_URL = 'http://127.0.0.1:8080/wx';
//devURL
// const BASE_URL = 'https://lmqhznn.goho.co/wx';
//prodURL
const BASE_URL = 'https://www.qnforever.top/wx';
// const BASE_URL = 'https://www.qnforever.top/wx';
function buildURL(url, needToken) {
let userId = wx.getStorageSync('userId');
if (!userId && url != '/user/login') {
@@ -250,8 +250,11 @@ export default {
listBillGroup(params){
return fetchPost('/user/bills/group/list' ,params,true,false);
},
listBillGroupDetail(params){
listGroupDetail(params){
return fetchPost('/user/bills/group/detail' ,params,true,false);
},
listBillChart(params) {
return fetchPost('/user/bills/line/chart' ,params,true,false);
}
}