fix: 二维码扫描接口联调问题修复。

This commit is contained in:
tianyongbao
2026-01-20 22:08:04 +08:00
parent 80ddb2c3a8
commit 978ba766b3
2 changed files with 2 additions and 2 deletions

View File

@@ -323,7 +323,7 @@ function goScan() {
Taro.scanCode({
success: (res) => {
const result = res.result;
deviceScan({ qrcode: result }).then((v) => {
deviceScan({ qrCode: result }).then((v) => {
if (v.code == 200) {
params.devType = String(v.data.deviceType);
params.devNum = v.data.serialNum;

View File

@@ -1149,7 +1149,7 @@ function goScan() {
Taro.scanCode({
success: (res) => {
const result = res.result;
deviceScan({ qrcode: result }).then((v) => {
deviceScan({ qrCode: result }).then((v) => {
if (v.code == 200) {
params.devType = String(v.data.deviceType);
params.devNum = v.data.serialNum;