[修改优惠券管理,添加我的优惠券,修改签到页面]

This commit is contained in:
zhangmanman
2021-11-24 10:23:46 +08:00
5 changed files with 52507 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
<<<<<<< HEAD
config.appendPadding = [10, 30, 10, 15]
const chart = new F2.Chart(config);
@@ -31,4 +32,39 @@ chart.line()
return 'line';
}
});
=======
config.appendPadding = [10, 30, 10, 15]
const chart = new F2.Chart(config);
chart.source(data, {
date: {
range: [0, 1],
type: 'timeCat',
mask: 'MM-DD'
},
value: {
tickCount: 0
}
});
chart.legend({
position: 'bottom',
offsetY: 0,
offsetX: 30
});
chart.area()
.position('date*value')
.color('name', ['#5881d3', '#ca66e0'])
.shape('smooth')
chart.line()
.position('date*value')
.color('name', ['#5881d3', '#ca66e0'])
.shape('smooth', name => {
if (name === '预期收益率') {
return 'line';
}
if (name === '实际收益率') {
return 'line';
}
});
>>>>>>> eba5f5995696e08f67df615fb32054bffa94ae34
chart.render();