Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
d3b45222
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,发现更多精彩内容 >>
提交
d3b45222
编写于
6月 17, 2022
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev' into alpha
上级
2f49f760
0ac8a7d1
变更
14
隐藏空白更改
内联
并排
Showing
14 changed file
with
32 addition
and
31 deletion
+32
-31
src/core/helpers/api.js
src/core/helpers/api.js
+2
-2
src/core/service/api/plugin/push.js
src/core/service/api/plugin/push.js
+4
-4
src/core/view/components/image/index.vue
src/core/view/components/image/index.vue
+4
-4
src/core/view/components/navigator/index.vue
src/core/view/components/navigator/index.vue
+2
-1
src/platforms/mp-alipay/runtime/api/index.js
src/platforms/mp-alipay/runtime/api/index.js
+2
-2
src/platforms/mp-baidu/runtime/api/index.js
src/platforms/mp-baidu/runtime/api/index.js
+2
-2
src/platforms/mp-jd/runtime/api/index.js
src/platforms/mp-jd/runtime/api/index.js
+2
-2
src/platforms/mp-kuaishou/runtime/api/index.js
src/platforms/mp-kuaishou/runtime/api/index.js
+2
-2
src/platforms/mp-lark/runtime/api/index.js
src/platforms/mp-lark/runtime/api/index.js
+2
-2
src/platforms/mp-qq/runtime/api/index.js
src/platforms/mp-qq/runtime/api/index.js
+2
-2
src/platforms/mp-toutiao/runtime/api/index.js
src/platforms/mp-toutiao/runtime/api/index.js
+2
-2
src/platforms/mp-weixin/runtime/api/index.js
src/platforms/mp-weixin/runtime/api/index.js
+2
-2
src/platforms/mp-xhs/runtime/api/index.js
src/platforms/mp-xhs/runtime/api/index.js
+2
-2
src/platforms/quickapp-webview/runtime/api/index.js
src/platforms/quickapp-webview/runtime/api/index.js
+2
-2
未找到文件。
src/core/helpers/api.js
浏览文件 @
d3b45222
...
...
@@ -286,7 +286,7 @@ function wrapperExtras (name, extras) {
}
}
// 部分 API 直接实现
const
unwrappers
=
[
'
getPushClient
i
d
'
,
'
onPushMessage
'
,
'
offPushMessage
'
]
const
unwrappers
=
[
'
getPushClient
I
d
'
,
'
onPushMessage
'
,
'
offPushMessage
'
]
export
function
wrapper
(
name
,
invokeMethod
,
extras
=
{})
{
if
(
unwrappers
.
indexOf
(
name
)
>
-
1
||
!
isFn
(
invokeMethod
))
{
...
...
@@ -329,4 +329,4 @@ export function wrapper (name, invokeMethod, extras = {}) {
}
}
}
}
}
src/core/service/api/plugin/push.js
浏览文件 @
d3b45222
...
...
@@ -49,7 +49,7 @@ function invokeGetPushCidCallbacks (cid, errMsg) {
getPushCidCallbacks
.
length
=
0
}
export
function
getPushClient
i
d
(
args
)
{
export
function
getPushClient
I
d
(
args
)
{
if
(
!
isPlainObject
(
args
))
{
args
=
{}
}
...
...
@@ -65,13 +65,13 @@ export function getPushClientid (args) {
let
res
if
(
cid
)
{
res
=
{
errMsg
:
'
getPushClient
i
d:ok
'
,
errMsg
:
'
getPushClient
I
d:ok
'
,
cid
}
hasSuccess
&&
success
(
res
)
}
else
{
res
=
{
errMsg
:
'
getPushClient
i
d:fail
'
+
(
errMsg
?
'
'
+
errMsg
:
''
)
errMsg
:
'
getPushClient
I
d:fail
'
+
(
errMsg
?
'
'
+
errMsg
:
''
)
}
hasFail
&&
fail
(
res
)
}
...
...
@@ -99,4 +99,4 @@ export const offPushMessage = (fn) => {
onPushMessageCallbacks
.
splice
(
index
,
1
)
}
}
}
}
src/core/view/components/image/index.vue
浏览文件 @
d3b45222
...
...
@@ -172,8 +172,8 @@ export default {
const
img
=
this
.
_img
=
this
.
_img
||
new
Image
()
img
.
onload
=
$event
=>
{
this
.
_img
=
null
this
.
originalWidth
=
img
.
width
this
.
originalHeight
=
img
.
height
const
width
=
this
.
originalWidth
=
img
.
width
const
height
=
this
.
originalHeight
=
img
.
height
this
.
_fixSize
()
...
...
@@ -186,8 +186,8 @@ export default {
this
.
$el
.
appendChild
(
img
)
this
.
$trigger
(
'
load
'
,
$event
,
{
width
:
img
.
width
,
height
:
img
.
height
width
,
height
})
}
img
.
onerror
=
$event
=>
{
...
...
src/core/view/components/navigator/index.vue
浏览文件 @
d3b45222
...
...
@@ -92,7 +92,8 @@ export default {
type
:
String
,
validator
(
value
)
{
return
!
value
||
~
ANIMATION_TYPE_IN
.
concat
(
ANIMATION_TYPE_OUT
).
indexOf
(
value
)
}
},
default
:
''
},
animationDuration
:
{
type
:
[
String
,
Number
],
...
...
src/platforms/mp-alipay/runtime/api/index.js
浏览文件 @
d3b45222
...
...
@@ -11,7 +11,7 @@ export {
}
from
'
../../helpers/storage
'
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
...
...
@@ -106,4 +106,4 @@ export function createIntersectionObserver (component, options) {
export
{
createMediaQueryObserver
}
}
src/platforms/mp-baidu/runtime/api/index.js
浏览文件 @
d3b45222
import
createMediaQueryObserver
from
'
../../../mp-weixin/helpers/create-media-query-observer
'
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
...
...
@@ -26,4 +26,4 @@ export function requestPayment (params) {
export
{
createMediaQueryObserver
}
}
src/platforms/mp-jd/runtime/api/index.js
浏览文件 @
d3b45222
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
src/platforms/mp-kuaishou/runtime/api/index.js
浏览文件 @
d3b45222
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
src/platforms/mp-lark/runtime/api/index.js
浏览文件 @
d3b45222
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
src/platforms/mp-qq/runtime/api/index.js
浏览文件 @
d3b45222
...
...
@@ -4,9 +4,9 @@ export {
createMediaQueryObserver
}
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
src/platforms/mp-toutiao/runtime/api/index.js
浏览文件 @
d3b45222
...
...
@@ -4,9 +4,9 @@ export {
createMediaQueryObserver
}
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
src/platforms/mp-weixin/runtime/api/index.js
浏览文件 @
d3b45222
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
src/platforms/mp-xhs/runtime/api/index.js
浏览文件 @
d3b45222
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
src/platforms/quickapp-webview/runtime/api/index.js
浏览文件 @
d3b45222
export
{
getPushClient
i
d
,
getPushClient
I
d
,
onPushMessage
,
offPushMessage
,
invokePushCallback
}
from
'
uni-core/service/api/plugin/push
'
from
'
uni-core/service/api/plugin/push
'
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录