Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
1429909d
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
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,发现更多精彩内容 >>
提交
1429909d
编写于
5月 19, 2020
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(v3): show.callback
上级
bdb8b7d2
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
28 addition
and
8 deletion
+28
-8
src/platforms/app-plus/page-factory.js
src/platforms/app-plus/page-factory.js
+2
-2
src/platforms/app-plus/service/api/route/util.js
src/platforms/app-plus/service/api/route/util.js
+24
-4
src/platforms/app-plus/service/framework/page.js
src/platforms/app-plus/service/framework/page.js
+2
-2
未找到文件。
src/platforms/app-plus/page-factory.js
浏览文件 @
1429909d
...
@@ -21,11 +21,11 @@ export function createPage (pagePath, pageId, pageQuery, pageInstance) {
...
@@ -21,11 +21,11 @@ export function createPage (pagePath, pageId, pageQuery, pageInstance) {
mpType
:
'
page
'
,
mpType
:
'
page
'
,
pageId
,
pageId
,
pagePath
,
pagePath
,
pageQuery
,
pageQuery
,
pageInstance
pageInstance
})
})
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
console
.
log
(
`new
${
pagePath
}
`
,
Date
.
now
()
-
startTime
)
console
.
log
(
`new
${
pagePath
}
[
${
pageId
}
]:time(
${
Date
.
now
()
-
startTime
}
)`
)
}
}
return
pageVm
return
pageVm
}
}
src/platforms/app-plus/service/api/route/util.js
浏览文件 @
1429909d
...
@@ -7,7 +7,7 @@ import {
...
@@ -7,7 +7,7 @@ import {
navigateFinish
navigateFinish
}
from
'
../../framework/navigator
'
}
from
'
../../framework/navigator
'
export
function
showWebview
(
webview
,
animationType
,
animationDuration
,
showCallback
,
delay
)
{
export
function
showWebview
(
webview
,
animationType
,
animationDuration
,
showCallback
,
delay
)
{
if
(
typeof
delay
===
'
undefined
'
)
{
if
(
typeof
delay
===
'
undefined
'
)
{
delay
=
webview
.
nvue
?
0
:
100
delay
=
webview
.
nvue
?
0
:
100
}
}
...
@@ -21,16 +21,36 @@ export function showWebview (webview, animationType, animationDuration, showCall
...
@@ -21,16 +21,36 @@ export function showWebview (webview, animationType, animationDuration, showCall
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
console
.
log
(
`[show][
${
Date
.
now
()}
]`
,
delay
)
console
.
log
(
`[show][
${
Date
.
now
()}
]`
,
delay
)
}
}
const
duration
=
animationDuration
||
ANI_DURATION
setTimeout
(()
=>
{
setTimeout
(()
=>
{
const
execShowCallback
=
function
()
{
if
(
execShowCallback
.
_called
)
{
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
console
.
log
(
'
execShowCallback.prevent
'
)
}
return
}
execShowCallback
.
_called
=
true
showCallback
&&
showCallback
()
navigateFinish
(
webview
)
}
const
timer
=
setTimeout
(()
=>
{
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
console
.
log
(
`[show.callback.timer][
${
Date
.
now
()}
]`
)
}
execShowCallback
()
},
duration
+
150
)
webview
.
show
(
webview
.
show
(
animationType
||
ANI_SHOW
,
animationType
||
ANI_SHOW
,
animationDuration
||
ANI_DURATION
,
duration
,
()
=>
{
()
=>
{
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
console
.
log
(
`[show.callback][
${
Date
.
now
()}
]`
)
console
.
log
(
`[show.callback][
${
Date
.
now
()}
]`
)
}
}
showCallback
&&
showCallback
()
if
(
!
execShowCallback
.
_called
)
{
navigateFinish
(
webview
)
clearTimeout
(
timer
)
}
execShowCallback
()
}
}
)
)
},
delay
)
},
delay
)
...
...
src/platforms/app-plus/service/framework/page.js
浏览文件 @
1429909d
...
@@ -93,7 +93,7 @@ export function registerPage ({
...
@@ -93,7 +93,7 @@ export function registerPage ({
}
}
pages
.
splice
(
index
,
1
)
pages
.
splice
(
index
,
1
)
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
console
.
log
(
'
[uni-app] removePage
'
,
path
,
webview
.
id
)
console
.
log
(
'
[uni-app] removePage
(
'
+
path
+
'
)[
'
+
webview
.
id
+
'
]
'
)
}
}
}
}
},
},
...
@@ -134,4 +134,4 @@ export function registerPage ({
...
@@ -134,4 +134,4 @@ export function registerPage ({
}
}
return
webview
return
webview
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录