|
@@ -1,8 +1,11 @@
|
|
|
<template>
|
|
|
<view class="box">
|
|
|
- <view style="padding-top: 100rpx;">
|
|
|
- <canvas canvas-id="mini_poster" style="width: 600rpx;height: 817rpx;margin-left: 73rpx;"></canvas><!-- :style="{ width: canvasW + 'px', height: canvasH + 'px' }" -->
|
|
|
+ <view style="padding-top: 100rpx;padding-left: 73rpx;padding-right: 75rpx;">
|
|
|
+ <view style="border-radius: 20rpx;">
|
|
|
+ <canvas canvas-id="mini_poster" style="width: 600rpx;" :style="{ height: canvasH + 'px' }"></canvas><!-- :style="{ width: canvasW + 'px', height: canvasH + 'px' }" -->
|
|
|
+ </view>
|
|
|
</view>
|
|
|
+
|
|
|
<view style="height: 106rpx;"></view>
|
|
|
<!-- <view class="footer">
|
|
|
<view style="height: 106rpx; align-items: center; background-color: #333333;">
|
|
@@ -67,7 +70,12 @@
|
|
|
this.userInfo=this.$store.state.userInfo;
|
|
|
this.ext=this.$common.getExtStoreId();
|
|
|
this.canvasW =uni.upx2px(600)
|
|
|
- this.canvasH = uni.upx2px(827)
|
|
|
+ if(this.sellingPoint){
|
|
|
+ this.canvasH = uni.upx2px(817)
|
|
|
+ }else{
|
|
|
+ this.canvasH = uni.upx2px(717)
|
|
|
+ }
|
|
|
+
|
|
|
var that=this;
|
|
|
var type=opt.type
|
|
|
if(type==2){
|
|
@@ -156,7 +164,10 @@
|
|
|
const cw = this.canvasW - 2 * padding
|
|
|
|
|
|
let ctx = uni.createCanvasContext('mini_poster', this)
|
|
|
-
|
|
|
+ // 左上角
|
|
|
+ var cx = uni.upx2px(30)
|
|
|
+ var cy = uni.upx2px(30)
|
|
|
+ // ctx.arc(this.canvasW, 0, this.canvasW,this.canvasH, cx)
|
|
|
// 透明背景
|
|
|
// ctx.setFillStyle('rgba(255, 255, 255, 0)')
|
|
|
ctx.setFillStyle('#FFFFFF')
|
|
@@ -186,6 +197,7 @@
|
|
|
//var filePath='../../static/timg/CS.png'
|
|
|
var times = new Date().getTime();
|
|
|
var codeimg = wx.env.USER_DATA_PATH + '/' + times + '.png';
|
|
|
+ var that=this;
|
|
|
fsm.writeFile({
|
|
|
filePath: codeimg, // 要写入的文件路径 (本地路径)
|
|
|
data: this.mpWxQr3, // 要写入的文本或二进制数据
|
|
@@ -193,9 +205,14 @@
|
|
|
success(e) {
|
|
|
console.log(e)
|
|
|
console.log(codeimg)
|
|
|
- var wxsx=uni.upx2px(68)
|
|
|
- var wxsy=uni.upx2px(649)
|
|
|
- var wxwidth=uni.upx2px(148)
|
|
|
+ var wxsx=uni.upx2px(48)
|
|
|
+ if(that.sellingPoint){
|
|
|
+ var wxsy=uni.upx2px(649)
|
|
|
+ }else{
|
|
|
+ var wxsy=uni.upx2px(549)
|
|
|
+ }
|
|
|
+
|
|
|
+ var wxwidth=uni.upx2px(158)
|
|
|
ctx.drawImage(codeimg, wxsx, wxsy, wxwidth,wxwidth)
|
|
|
},
|
|
|
fail(err) {
|
|
@@ -261,7 +278,12 @@
|
|
|
|
|
|
var wemtis1='名额有限 先到先得'
|
|
|
var wemtisx=uni.upx2px(240)
|
|
|
- var wemtisy=uni.upx2px(700)
|
|
|
+ if(this.sellingPoint){
|
|
|
+ var wemtisy=uni.upx2px(700)
|
|
|
+ }else{
|
|
|
+ var wemtisy=uni.upx2px(600)
|
|
|
+ }
|
|
|
+
|
|
|
ctx.setFillStyle('#999999')
|
|
|
const fz24 = uni.upx2px(24)
|
|
|
ctx.setFontSize(fz24)
|
|
@@ -358,7 +380,12 @@
|
|
|
ctx.clip()
|
|
|
// draw left border
|
|
|
ctx.fillStyle = '#EEEEEE'
|
|
|
- var y=uni.upx2px(619)
|
|
|
+ if(this.sellingPoint){
|
|
|
+ var y=uni.upx2px(619)
|
|
|
+ }else{
|
|
|
+ var y=uni.upx2px(519)
|
|
|
+ }
|
|
|
+
|
|
|
var bWidth=uni.upx2px(600)
|
|
|
ctx.fillRect(0, y, bWidth, 2)
|
|
|
ctx.restore()
|