index.js
4.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
// dist/pages/myassets/index.js
import MyAssetsService from './myassetsService.js'
import { formatTimeByDefined } from '../../utils/index.js'
import Yas from '../../utils/yas';
let yas;
let {screenWidth} = wx.getSystemInfoSync();
let radio = (screenWidth / 750).toFixed(2);
Page({
/**
* 页面的初始数据
*/
data: {
api: Object,
data: [],
summary: {},
currentPage:1,
page:0,
pagetotal:0,
total:0,
isLast:false,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
yas = new Yas(this);
yas.pageOpenReport();
let api = new MyAssetsService();
this.setData({ api: api });
this.fetchIncomeList();
// this.setData({api: new MyAssetsService()});
},
/**
* 画progress底部背景
*/
drawProgressbg: function (summary) {
var ctx = wx.createCanvasContext('canvasProgressbg')
// 设置圆环的宽度
ctx.setLineWidth(28 * radio);
// 设置圆环的颜色
let strokeColor = '#E0E0E0'
if (summary && summary.totalIncome > 0) {
strokeColor = '#65AB85';
}
ctx.setStrokeStyle(strokeColor);
// 设置圆环端点的形状
ctx.setLineCap('round')
//开始一个新的路径
ctx.beginPath();
//设置一个原点(110,110),半径为100的圆的路径到当前路径
console.log("起始点:" + Math.PI)
ctx.arc(120 * radio, 120 * radio, 100 * radio, 0, 2 * Math.PI, false);
//对当前路径进行描边
ctx.stroke();
//开始绘制
ctx.draw();
},
/**
* 画progress进度
*/
drawCircle: function (step) {
// 使用 wx.createContext 获取绘图上下文 context
var context = wx.createCanvasContext('canvasProgress');
// 设置圆环的宽度
context.setLineWidth(28 * radio);
// 设置圆环的颜色
let strokeColor = '#002B47'
// if (this.data.summary.totalIncome <= 0){
// strokeColor = '#E0E0E0';
// }
context.setStrokeStyle(strokeColor);
// 设置圆环端点的形状
context.setLineCap('round')
//开始一个新的路径
context.beginPath();
//参数step 为绘制的圆环周长,从0到2为一周 。 -Math.PI / 2 将起始角设在12点钟位置 ,结束角 通过改变 step 的值确定
context.arc(120 * radio, 120 * radio, 100 * radio, -Math.PI / 2, step * Math.PI - Math.PI / 2, false);
//对当前路径进行描边
context.stroke();
//开始绘制
context.draw()
},
/**
* 开始progress
*/
startProgress: function (summary) {
// 设置倒计时 定时器 每100毫秒执行一次,计数器count+1 ,耗时6秒绘一圈
if (summary && summary.totalIncome > 0) {
// this.countTimer = setInterval(() => {
// if (this.data.count <= 60) {
/* 绘制彩色圆环进度条
注意此处 传参 step 取值范围是0到2,
所以 计数器 最大值 60 对应 2 做处理,计数器count=60的时候step=2
*/
this.drawCircle(summary.goodsIncome / (summary.totalIncome / 2))
// if()
// this.data.count++;
// }
// else {
// clearInterval(this.countTimer);
// this.startProgress();
// }
// }, 100)
}
},
fetchIncomeList: function () {
let that = this;
let params = {
page: that.data.currentPage,
limit: 20,
// debug: 'XYZ'
}
that.data.api.getAssetsList(params, () => {
wx.hideLoading();
}).then(data => {
if(data){
let detail = data.data;
let constSummary = {
totalIncome: '0.00',
goodsIncome: '0.00',
compensateIncome: '0.00',
}
let summary = data.summary ? data.summary : constSummary;
if(detail){
detail = that.data.data.concat(detail);
} else {
detail = that.data.data
}
if (detail.length > 0) {
detail.filter((item) => {
item.createTime = formatTimeByDefined(item.createTime, 'Y-M-D h:m:s');
return item;
})
}
console.log(summary);
let cPage = data.page;
if (cPage == 1){
//绘制背景
that.drawProgressbg(summary);
//开始progress
that.startProgress(summary);
}
let isLast = false;
// that.setData(data);
if (that.data.currentPage <= data.pagetotal) {
cPage = data.page + 1;
} else {
isLast = true;
}
that.setData({
data: detail,
currentPage: cPage,
isLast: isLast,
summary: summary
});
}
// console.log(data);
})
},
/**
* 加载更多
*/
loadMore: function (event) {
let item = this.data.data;
console.log(item)
if (!item.isLast) {
this.fetchIncomeList();
}
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
}
});