scanner: Enable skip_angle_check
This commit is contained in:
parent
771545e716
commit
e23ff73c89
@ -346,10 +346,10 @@ Page({
|
|||||||
});
|
});
|
||||||
const ctx = wx.createCameraContext();
|
const ctx = wx.createCameraContext();
|
||||||
this.log(`camera set initial zoom to ${initial_zoom}x, will zoom in to ${rule.zoom}x when qr is found`);
|
this.log(`camera set initial zoom to ${initial_zoom}x, will zoom in to ${rule.zoom}x when qr is found`);
|
||||||
ctx.setZoom({ zoom: 2 });
|
ctx.setZoom({ zoom: initial_zoom });
|
||||||
this.on_qr_found = () => {
|
this.on_qr_found = () => {
|
||||||
this.log(`qr found, zoom to ${rule.zoom}x`);
|
this.log(`qr found, zoom to ${rule.zoom}x`);
|
||||||
ctx.setZoom({ zoom: 6 });
|
ctx.setZoom({ zoom: rule.zoom });
|
||||||
this.setData({
|
this.setData({
|
||||||
zoom: rule.zoom,
|
zoom: rule.zoom,
|
||||||
qrmarkers_class: "",
|
qrmarkers_class: "",
|
||||||
|
|||||||
@ -15,6 +15,7 @@ function make_query(zoom, ai_chat_mode) {
|
|||||||
ret += "&nick_name=" + encodeURIComponent(ui.nickName || "");
|
ret += "&nick_name=" + encodeURIComponent(ui.nickName || "");
|
||||||
ret += "&tenant=" + (gd.tenant_id || "");
|
ret += "&tenant=" + (gd.tenant_id || "");
|
||||||
ret += "&tk=" + Date.now();
|
ret += "&tk=" + Date.now();
|
||||||
|
ret += "&skip_angle_check=1";
|
||||||
if (ai_chat_mode) {
|
if (ai_chat_mode) {
|
||||||
ret += "&ai_chat_mode=" + ai_chat_mode;
|
ret += "&ai_chat_mode=" + ai_chat_mode;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -41,10 +41,11 @@ function do_upload(image_data_url, success, fail, log) {
|
|||||||
nick_name: ui.nickName,
|
nick_name: ui.nickName,
|
||||||
realip: gd.real_ip,
|
realip: gd.real_ip,
|
||||||
qrcode: gd.qr_code,
|
qrcode: gd.qr_code,
|
||||||
angle: gd.angle,
|
angle: 0,
|
||||||
phonemodel: gd.phone_model,
|
phonemodel: gd.phone_model,
|
||||||
image_data_url,
|
image_data_url,
|
||||||
use_roi_verify: 1,
|
use_roi_verify: 1,
|
||||||
|
skip_angle_check: 1,
|
||||||
log,
|
log,
|
||||||
};
|
};
|
||||||
var ci = gd.caller_info;
|
var ci = gd.caller_info;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user