Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
d2614ed4
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,发现更多精彩内容 >>
提交
d2614ed4
编写于
7月 18, 2022
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev' into alpha
上级
678bb38c
b6198711
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
22 addition
and
9 deletion
+22
-9
src/platforms/app-plus/service/api/device/get-app-authorize-setting.js
.../app-plus/service/api/device/get-app-authorize-setting.js
+7
-0
src/platforms/app-plus/service/api/plugin/push.js
src/platforms/app-plus/service/api/plugin/push.js
+0
-8
src/platforms/mp-weixin/helpers/get-app-authorize-setting.js
src/platforms/mp-weixin/helpers/get-app-authorize-setting.js
+12
-0
src/platforms/mp-weixin/runtime/api/protocols.js
src/platforms/mp-weixin/runtime/api/protocols.js
+3
-1
未找到文件。
src/platforms/app-plus/service/api/device/get-app-authorize-setting.js
浏览文件 @
d2614ed4
...
...
@@ -5,5 +5,12 @@ export function getAppAuthorizeSetting () {
if
(
typeof
appAuthorizeSetting
===
'
string
'
)
{
appAuthorizeSetting
=
JSON
.
parse
(
appAuthorizeSetting
)
}
}
catch
(
error
)
{
}
for
(
const
key
in
appAuthorizeSetting
)
{
if
(
Object
.
hasOwnProperty
.
call
(
appAuthorizeSetting
,
key
))
{
const
value
=
appAuthorizeSetting
[
key
]
if
(
value
===
'
undefined
'
)
appAuthorizeSetting
[
key
]
=
undefined
}
}
return
appAuthorizeSetting
}
src/platforms/app-plus/service/api/plugin/push.js
浏览文件 @
d2614ed4
import
{
hasOwn
}
from
'
uni-shared
'
import
{
invoke
,
publish
...
...
@@ -72,11 +69,6 @@ export function offPush (params) {
export
function
createPushMessage
(
params
,
callbackId
)
{
const
setting
=
getAppAuthorizeSetting
()
if
(
!
hasOwn
(
setting
,
'
notificationAuthorized
'
))
{
return
invoke
(
callbackId
,
{
errMsg
:
'
createPushMessage:fail missing push module
'
})
}
if
(
setting
.
notificationAuthorized
!==
'
authorized
'
)
{
return
invoke
(
callbackId
,
{
errMsg
:
'
createPushMessage:fail
'
+
setting
.
notificationAuthorized
...
...
src/platforms/mp-weixin/helpers/get-app-authorize-setting.js
0 → 100644
浏览文件 @
d2614ed4
export
default
{
returnValue
:
function
(
result
)
{
const
{
locationReducedAccuracy
}
=
result
result
.
locationAccuracy
=
'
unsupported
'
if
(
locationReducedAccuracy
===
true
)
{
result
.
locationAccuracy
=
'
reduced
'
}
else
if
(
locationReducedAccuracy
===
false
)
{
result
.
locationAccuracy
=
'
full
'
}
}
}
src/platforms/mp-weixin/runtime/api/protocols.js
浏览文件 @
d2614ed4
...
...
@@ -6,6 +6,7 @@ import showActionSheet from '../../helpers/show-action-sheet'
import
getAppBaseInfo
from
'
../../helpers/get-app-base-info
'
import
getDeviceInfo
from
'
../../helpers/get-device-info
'
import
getWindowInfo
from
'
../../helpers/get-window-info
'
import
getAppAuthorizeSetting
from
'
../../helpers/get-app-authorize-setting
'
export
const
protocols
=
{
redirectTo
,
...
...
@@ -16,7 +17,8 @@ export const protocols = {
showActionSheet
,
getAppBaseInfo
,
getDeviceInfo
,
getWindowInfo
getWindowInfo
,
getAppAuthorizeSetting
}
export
const
todos
=
[
'
vibrate
'
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录