安卓手机绘图调用一次
const grd = ctx.createLinearGradient(this.width/2, this.marginTop, this.width/2, this.height)
grd.addColorStop(0, '#fe9947')
grd.addColorStop(1, '#ffddbf')
ctx.setFillStyle(grd);
ctx.beginPath();
之后
ctx.setFillStyle('#ffffff');
不管设置什么颜色全部无效
苹果手机没问题