Commit dbdc1c5d authored by qipeng's avatar qipeng

增加亮度

parent a2ea0cf0
...@@ -418,8 +418,6 @@ ...@@ -418,8 +418,6 @@
codeStart:'',//开始时间 codeStart:'',//开始时间
codes:[],//我二维码数组 codes:[],//我二维码数组
percentage:0,//进度条百分比 percentage:0,//进度条百分比
percentpage:0,
percentType:true,
orderExtendList:[],//订单拓展信息 orderExtendList:[],//订单拓展信息
touristInfo:[],//游客信息 touristInfo:[],//游客信息
orderTypeNum:1,//订单是否展开 orderTypeNum:1,//订单是否展开
...@@ -655,25 +653,29 @@ ...@@ -655,25 +653,29 @@
let now = new Date().getTime() let now = new Date().getTime()
let nowTime = (now - this.codeStart)/1000 let nowTime = (now - this.codeStart)/1000
let code = null let code = null
// // 寻找到当前时间的二维码 // 寻找到当前时间的二维码
// for(let i = 0 ; i < codes.length ; i++ ){ for(let i = 0 ; i < codes.length ; i++ ){
// let item = codes[i] let item = codes[i]
// nowTime -= item.timeout nowTime -= item.timeout
// if(nowTime <= 0 ){ if(nowTime <= 0 ){
// code = item code = item
// break break
// } }
// } }
// 全部遍历完成后,需要重新获取新的二维码 // 全部遍历完成后,需要重新获取新的二维码
if(this.percentType==true){ if(code == null){
if(this.percentpage>=codes.length){ this.dynamicCode()
this.percentpage = 0 } else if( code.code!=this.codeNo ){
code = null
this.dynamicCode();
}else{
code = codes[this.percentpage]
this.codeNo = code.code this.codeNo = code.code
this.percentType=false // if(document.querySelector('#qrcode img')){//移除子元素
// document.querySelector('#qrcode img').remove()
// document.querySelector('#qrcode canvas').remove()
// }
// let qrcode = new QRCode('qrcode',{//进入先获取二维码
// width: 180,
// height: 180,
// text:this.codeNo
// })
uQRCode.make({ uQRCode.make({
canvasId: 'qrcode', canvasId: 'qrcode',
componentInstance: this, componentInstance: this,
...@@ -686,37 +688,9 @@ ...@@ -686,37 +688,9 @@
errorCorrectLevel: uQRCode.errorCorrectLevel.H errorCorrectLevel: uQRCode.errorCorrectLevel.H
}) })
} }
}
// if(code == null){
// this.dynamicCode()
// } else if( code.code!=this.codeNo ){
// this.codeNo = code.code
// // if(document.querySelector('#qrcode img')){//移除子元素
// // document.querySelector('#qrcode img').remove()
// // document.querySelector('#qrcode canvas').remove()
// // }
// // let qrcode = new QRCode('qrcode',{//进入先获取二维码
// // width: 180,
// // height: 180,
// // text:this.codeNo
// // })
// uQRCode.make({
// canvasId: 'qrcode',
// componentInstance: this,
// text: this.codeNo,
// size: 180,
// margin: 10,
// backgroundColor: '#ffffff',
// foregroundColor: '#000000',
// fileType: 'jpg',
// errorCorrectLevel: uQRCode.errorCorrectLevel.H
// })
// }
this.percentage+=1 this.percentage+=1
if(this.percentage>=100){ if(this.percentage>=100){
this.percentage=0 this.percentage=0
this.percentpage++
this.percentType=true
} }
}, },
dynamicCode(){//动态码 dynamicCode(){//动态码
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment