赞
踩
const imgPath = 'https://qiniu.image.yiheauc.com/static/checkbook.png'; wx.getImageInfo({ src: imgPath, success: (res) => { const imgObj = canvas.createImage(); imgObj.src = res.path; imgObj.onload = () => { ctx.drawImage(imgObj, 0, 0, 375, 480); imgObj2 && ctx.drawImage(imgObj2, 30, 400, 60, 60); ctx.font = 'normal bold 15px Arial'; ctx.fillText(paddleNumber, 75, 85); ctx.fillText(vendueTime, 201, 83); ctx.fillText(vendueName, 85, 106); ctx.fillText(moment().format('YYYY年MM月DD日'), 220, 450); let textHeight = 190; bidList && bidList.forEach((ele, index) => { auctionStr += `LOT ${ele.auction.lot} ¥${formatMoney(ele.price, 0)};`; if ((index + 1) % 2 === 0) { const str = auctionStr; ctx.fillText(str, 20, textHeight); textHeight += 20; auctionStr = ''; } if (bidList.length % 2 !== 0 && index === bidList.length - 1) { ctx.fillText(auctionStr, 20, textHeight); } }); }; }, fail: (err) => { console.log(err); }, });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。