Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
2c269700
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
2c269700
编写于
10月 10, 2020
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: App 端 uni.scanCode 支持配置 autoDecodeCharSet
上级
13f78be7
变更
7
展开全部
隐藏空白更改
内联
并排
Showing
7 changed file
with
30 addition
and
16 deletion
+30
-16
packages/uni-app-plus/template/common/__uniappscan.js
packages/uni-app-plus/template/common/__uniappscan.js
+1
-1
packages/uni-app-plus/template/weex/__uniappscan.html
packages/uni-app-plus/template/weex/__uniappscan.html
+4
-3
packages/uni-cli-shared/template/common/__uniappscan.js
packages/uni-cli-shared/template/common/__uniappscan.js
+1
-1
packages/uni-cli-shared/template/weex/__uniappscan.html
packages/uni-cli-shared/template/weex/__uniappscan.html
+4
-3
src/core/helpers/protocol/device/scan-code.js
src/core/helpers/protocol/device/scan-code.js
+11
-0
src/platforms/app-plus/service/api/device/scan-code-webview.js
...latforms/app-plus/service/api/device/scan-code-webview.js
+8
-5
src/platforms/app-plus/service/api/device/scan-code-weex.js
src/platforms/app-plus/service/api/device/scan-code-weex.js
+1
-3
未找到文件。
packages/uni-app-plus/template/common/__uniappscan.js
浏览文件 @
2c269700
此差异已折叠。
点击以展开。
packages/uni-app-plus/template/weex/__uniappscan.html
浏览文件 @
2c269700
...
@@ -114,11 +114,12 @@
...
@@ -114,11 +114,12 @@
scan
=
new
plus
.
barcode
.
Barcode
(
'
scan
'
,
webview
.
__uniapp_scan_type
,
{
scan
=
new
plus
.
barcode
.
Barcode
(
'
scan
'
,
webview
.
__uniapp_scan_type
,
{
frameColor
:
'
#118CE9
'
,
frameColor
:
'
#118CE9
'
,
scanbarColor
:
'
#118CE9
'
scanbarColor
:
'
#118CE9
'
});
}
,
webview
.
__uniapp_auto_decode_char_set
);
scan
.
onmarked
=
function
(
type
,
code
,
file
)
{
scan
.
onmarked
=
function
(
type
,
code
,
file
,
charSet
)
{
var
res
=
{
var
res
=
{
type
:
type
,
type
:
type
,
code
:
code
code
:
code
,
charSet
:
charSet
};
};
back
()
back
()
plus
.
webview
.
postMessageToUniNView
({
plus
.
webview
.
postMessageToUniNView
({
...
...
packages/uni-cli-shared/template/common/__uniappscan.js
浏览文件 @
2c269700
此差异已折叠。
点击以展开。
packages/uni-cli-shared/template/weex/__uniappscan.html
浏览文件 @
2c269700
...
@@ -114,11 +114,12 @@
...
@@ -114,11 +114,12 @@
scan
=
new
plus
.
barcode
.
Barcode
(
'
scan
'
,
webview
.
__uniapp_scan_type
,
{
scan
=
new
plus
.
barcode
.
Barcode
(
'
scan
'
,
webview
.
__uniapp_scan_type
,
{
frameColor
:
'
#118CE9
'
,
frameColor
:
'
#118CE9
'
,
scanbarColor
:
'
#118CE9
'
scanbarColor
:
'
#118CE9
'
});
}
,
webview
.
__uniapp_auto_decode_char_set
);
scan
.
onmarked
=
function
(
type
,
code
,
file
)
{
scan
.
onmarked
=
function
(
type
,
code
,
file
,
charSet
)
{
var
res
=
{
var
res
=
{
type
:
type
,
type
:
type
,
code
:
code
code
:
code
,
charSet
:
charSet
};
};
back
()
back
()
plus
.
webview
.
postMessageToUniNView
({
plus
.
webview
.
postMessageToUniNView
({
...
...
src/core/helpers/protocol/device/scan-code.js
0 → 100644
浏览文件 @
2c269700
export
const
scanCode
=
{
onlyFromCamera
:
{
type
:
Boolean
},
scanType
:
{
type
:
Array
},
autoDecodeCharSet
:
{
type
:
Boolean
}
}
src/platforms/app-plus/service/api/device/scan-code-webview.js
浏览文件 @
2c269700
...
@@ -23,7 +23,8 @@ const MESSAGE_TYPE = 'scanCode'
...
@@ -23,7 +23,8 @@ const MESSAGE_TYPE = 'scanCode'
export
function
scanCode
({
export
function
scanCode
({
onlyFromCamera
=
false
,
onlyFromCamera
=
false
,
scanType
scanType
,
autoDecodeCharSet
},
callbackId
)
{
},
callbackId
)
{
const
barcode
=
plus
.
barcode
const
barcode
=
plus
.
barcode
const
SCAN_TYPES
=
{
const
SCAN_TYPES
=
{
...
@@ -95,18 +96,19 @@ export function scanCode ({
...
@@ -95,18 +96,19 @@ export function scanCode ({
width
:
'
60px
'
,
width
:
'
60px
'
,
onclick
:
function
()
{
onclick
:
function
()
{
plus
.
gallery
.
pick
(
file
=>
{
plus
.
gallery
.
pick
(
file
=>
{
barcode
.
scan
(
file
,
(
type
,
code
)
=>
{
barcode
.
scan
(
file
,
(
type
,
code
,
path
,
charSet
)
=>
{
if
(
isDark
)
{
if
(
isDark
)
{
plus
.
navigator
.
setStatusBarStyle
(
'
isDark
'
)
plus
.
navigator
.
setStatusBarStyle
(
'
isDark
'
)
}
}
result
=
{
result
=
{
type
,
type
,
code
code
,
charSet
}
}
webview
.
close
(
'
auto
'
)
webview
.
close
(
'
auto
'
)
},
()
=>
{
},
()
=>
{
plus
.
nativeUI
.
toast
(
'
识别失败
'
)
plus
.
nativeUI
.
toast
(
'
识别失败
'
)
},
filters
)
},
filters
,
autoDecodeCharSet
)
},
err
=>
{
},
err
=>
{
if
(
err
.
code
!==
12
)
{
if
(
err
.
code
!==
12
)
{
plus
.
nativeUI
.
toast
(
'
选择失败
'
)
plus
.
nativeUI
.
toast
(
'
选择失败
'
)
...
@@ -135,6 +137,7 @@ export function scanCode ({
...
@@ -135,6 +137,7 @@ export function scanCode ({
__uniapp_type
:
'
scan
'
,
__uniapp_type
:
'
scan
'
,
__uniapp_dark
:
isDark
,
__uniapp_dark
:
isDark
,
__uniapp_scan_type
:
filters
,
__uniapp_scan_type
:
filters
,
__uniapp_auto_decode_char_set
:
autoDecodeCharSet
,
'
uni-app
'
:
'
none
'
'
uni-app
'
:
'
none
'
})
})
const
waiting
=
plus
.
nativeUI
.
showWaiting
()
const
waiting
=
plus
.
nativeUI
.
showWaiting
()
...
@@ -148,7 +151,7 @@ export function scanCode ({
...
@@ -148,7 +151,7 @@ export function scanCode ({
invoke
(
callbackId
,
{
invoke
(
callbackId
,
{
result
:
result
.
code
,
result
:
result
.
code
,
scanType
:
SCAN_MAPS
[
result
.
type
]
||
''
,
scanType
:
SCAN_MAPS
[
result
.
type
]
||
''
,
charSet
:
'
utf8
'
,
charSet
:
result
.
charSet
||
'
utf8
'
,
path
:
''
,
path
:
''
,
errMsg
:
'
scanCode:ok
'
errMsg
:
'
scanCode:ok
'
})
})
...
...
src/platforms/app-plus/service/api/device/scan-code-weex.js
浏览文件 @
2c269700
...
@@ -23,9 +23,7 @@ export function scanCode (options, callbackId) {
...
@@ -23,9 +23,7 @@ export function scanCode (options, callbackId) {
let
result
let
result
const
page
=
showPage
({
const
page
=
showPage
({
url
:
'
__uniappscan
'
,
url
:
'
__uniappscan
'
,
data
:
{
data
:
options
,
scanType
:
options
.
scanType
},
style
:
{
style
:
{
animationType
:
options
.
animationType
||
'
pop-in
'
,
animationType
:
options
.
animationType
||
'
pop-in
'
,
titleNView
:
{
titleNView
:
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录