297 lines
10 KiB
JavaScript
297 lines
10 KiB
JavaScript
import * as echarts from '../../ec-canvas/echarts';
|
|
function initPieChart(canvas, width, height, dpr) {
|
|
const chart = echarts.init(canvas, null, {
|
|
width: 400,
|
|
height: 250,
|
|
devicePixelRatio: dpr // new
|
|
});
|
|
canvas.setChart(chart);
|
|
var option = {
|
|
backgroundColor: "#3C4043",
|
|
series: [{
|
|
label: {
|
|
normal: {
|
|
fontSize: 14
|
|
}
|
|
},
|
|
type: 'pie',
|
|
center: ['50%', '50%'],
|
|
radius: ['0%', '70%'],
|
|
data: [{
|
|
value: 55,
|
|
name: '数码产品',
|
|
id: 1
|
|
}, {
|
|
value: 20,
|
|
name: '零食'
|
|
}, {
|
|
value: 10,
|
|
name: '娱乐'
|
|
}, {
|
|
value: 20,
|
|
name: '房贷'
|
|
}, {
|
|
value: 38,
|
|
name: '房租'
|
|
}]
|
|
}]
|
|
};
|
|
chart.setOption(option);
|
|
chart.on('click', 'series.pie', function(param) {
|
|
wx.navigateTo({
|
|
url: "./group/index?type=1"
|
|
})
|
|
});
|
|
return chart;
|
|
}
|
|
|
|
function initLineChart1(canvas, width, height, dpr) {
|
|
const chart = echarts.init(canvas, null, {
|
|
width: 400,
|
|
height: 300,
|
|
devicePixelRatio: dpr // new
|
|
});
|
|
canvas.setChart(chart);
|
|
|
|
var option = {
|
|
title: {
|
|
text: '的撒打',
|
|
left: 'center'
|
|
},
|
|
legend: {
|
|
data: ['支出', '收入', '转账','还款'],
|
|
top: 20,
|
|
left: 'center',
|
|
backgroundColor: 'white',
|
|
z: 100
|
|
},
|
|
grid: {
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
show: true,
|
|
trigger: 'axis'
|
|
},
|
|
xAxis: {
|
|
type: 'category',
|
|
boundaryGap: false,
|
|
data: ['第一周', '第二周', '第三周', '第四周'],
|
|
// show: false
|
|
},
|
|
yAxis: {
|
|
x: 'center',
|
|
type: 'value',
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
// show: false
|
|
},
|
|
series: [{
|
|
name: '支出',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [18, 36, 65, 30, 78, 40, 33]
|
|
}, {
|
|
name: '收入',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [12, 50, 51, 35, 70, 30, 20]
|
|
}, {
|
|
name: '转账',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [10, 30, 31, 50, 40, 20, 10]
|
|
}, {
|
|
name: '还款',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [50, 80, 11, 25, 30, 110, 20]
|
|
}]
|
|
};
|
|
chart.setOption(option);
|
|
return chart;
|
|
}
|
|
function initLineChart2(canvas, width, height, dpr) {
|
|
const chart = echarts.init(canvas, null, {
|
|
width: 400,
|
|
height: 300,
|
|
devicePixelRatio: dpr // new
|
|
});
|
|
canvas.setChart(chart);
|
|
|
|
var option = {
|
|
title: {
|
|
text: '的撒打',
|
|
left: 'center'
|
|
},
|
|
legend: {
|
|
data: ['支出', '收入', '转账','还款'],
|
|
top: 20,
|
|
left: 'center',
|
|
backgroundColor: 'white',
|
|
z: 100
|
|
},
|
|
grid: {
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
show: true,
|
|
trigger: 'axis'
|
|
},
|
|
xAxis: {
|
|
type: 'category',
|
|
boundaryGap: false,
|
|
data: ['1月', '2月', '3月', '4月', '5月', '6月'],
|
|
// show: false
|
|
},
|
|
yAxis: {
|
|
x: 'center',
|
|
type: 'value',
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: 'dashed'
|
|
}
|
|
}
|
|
// show: false
|
|
},
|
|
series: [{
|
|
name: '支出',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [18, 36, 65, 30, 78, 40, 33]
|
|
}, {
|
|
name: '收入',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [12, 50, 51, 35, 70, 30, 20]
|
|
}, {
|
|
name: '转账',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [10, 30, 31, 50, 40, 20, 10]
|
|
}, {
|
|
name: '还款',
|
|
type: 'line',
|
|
smooth: true,
|
|
data: [50, 80, 11, 25, 30, 110, 20]
|
|
}]
|
|
};
|
|
chart.setOption(option);
|
|
return chart;
|
|
}
|
|
const app = getApp();
|
|
Page({
|
|
data: {
|
|
// 指定选择区间起始值
|
|
start: '2000-01-01 00:00:00',
|
|
end: '2030-09-09 12:12:12',
|
|
showDateVisible:false,
|
|
showDate:app.$utils.formatDateMonth(new Date()),
|
|
accountList: [],
|
|
sumExpend: 0,
|
|
sumIncome: 0,
|
|
sumTransfer: 0,
|
|
sumRepayment: 0,
|
|
payTypeList: [
|
|
{"title":"数码产品","type":"expend","progress":"80","money":"4500.00"},
|
|
{"title":"房贷","type":"expend","progress":"20","money":"35.00"},
|
|
{"title":"数码产品","type":"expend","progress":"80","money":"4500.00"},
|
|
{"title":"房贷","type":"expend","progress":"20","money":"35.00"},
|
|
{"title":"数码产品","type":"expend","progress":"80","money":"4500.00"},
|
|
{"title":"房贷","type":"expend","progress":"20","money":"35.00"},
|
|
{"title":"数码产品","type":"expend","progress":"80","money":"4500.00"},
|
|
{"title":"房贷","type":"expend","progress":"20","money":"35.00"},
|
|
{"title":"数码产品","type":"expend","progress":"80","money":"4500.00"},
|
|
{"title":"房贷","type":"expend","progress":"20","money":"35.00"},
|
|
],
|
|
incomeList : [
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"},
|
|
{"id":1,"title":"电脑","type":"income","dateTime":"01-06","from":"银行卡","money":"4500.00"}
|
|
],
|
|
payList : [
|
|
{"id":1,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":2,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":2,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":2,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":2,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":2,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":2,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":2,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
{"id":3,"title":"狗粮","type":"expend","dateTime":"01-06","from":"支付宝","money":"35.00"},
|
|
],
|
|
ecPie: {
|
|
onInit: initPieChart
|
|
},
|
|
ecLine1: {
|
|
onInit: initLineChart1
|
|
},
|
|
ecLine2: {
|
|
onInit: initLineChart2
|
|
}
|
|
},
|
|
onShow: function () {
|
|
this.updateView();
|
|
if (wx.canIUse('hideHomeButton')) {
|
|
wx.hideHomeButton()
|
|
}
|
|
},
|
|
updateView(){
|
|
app.$api.listBillByAMonth({'rangeDate':this.data.showDate}).then(res => {
|
|
if (res.data){
|
|
let accountList = res.data.accountList
|
|
let sumExpend = res.data.sumExpend
|
|
let sumIncome = res.data.sumIncome
|
|
let sumTransfer = res.data.sumTransfer
|
|
let sumRepayment = res.data.sumRepayment
|
|
this.setData({accountList,sumExpend,sumIncome,sumTransfer,sumRepayment})
|
|
}
|
|
})
|
|
},
|
|
showPicker(e) {
|
|
const { mode } = e.currentTarget.dataset;
|
|
this.setData({
|
|
mode,
|
|
[`${mode}Visible`]: true,
|
|
});
|
|
},
|
|
hidePicker() {
|
|
const { mode } = this.data;
|
|
this.setData({
|
|
[`${mode}Visible`]: false,
|
|
});
|
|
},
|
|
onConfirm(e) {
|
|
const { value } = e.detail;
|
|
const { mode } = this.data;
|
|
this.setData({
|
|
[mode]: value
|
|
// [`${mode}Text`]: value,
|
|
});
|
|
this.updateView()
|
|
this.hidePicker()
|
|
}
|
|
|
|
});
|