Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
0f3bb2fe
U
uni-app
项目概览
DCloud
/
uni-app
6 个月 前同步成功
通知
751
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
0f3bb2fe
编写于
5月 17, 2019
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
build uni runtime(mp), app-plus(subNVue)
上级
d9d838a1
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
61 addition
and
69 deletion
+61
-69
packages/uni-app-plus/dist/index.js
packages/uni-app-plus/dist/index.js
+23
-26
packages/uni-app-plus/package.json
packages/uni-app-plus/package.json
+1
-1
packages/uni-mp-alipay/dist/index.js
packages/uni-mp-alipay/dist/index.js
+1
-1
packages/uni-mp-alipay/package.json
packages/uni-mp-alipay/package.json
+1
-1
packages/uni-mp-baidu/dist/index.js
packages/uni-mp-baidu/dist/index.js
+12
-12
packages/uni-mp-baidu/package.json
packages/uni-mp-baidu/package.json
+1
-1
packages/uni-mp-toutiao/dist/index.js
packages/uni-mp-toutiao/dist/index.js
+12
-12
packages/uni-mp-toutiao/package.json
packages/uni-mp-toutiao/package.json
+1
-1
packages/uni-mp-weixin/dist/index.js
packages/uni-mp-weixin/dist/index.js
+1
-1
packages/uni-mp-weixin/package.json
packages/uni-mp-weixin/package.json
+1
-1
src/core/helpers/promise.js
src/core/helpers/promise.js
+1
-1
src/platforms/app-plus/service/api/sub-nvue.js
src/platforms/app-plus/service/api/sub-nvue.js
+6
-11
未找到文件。
packages/uni-app-plus/dist/index.js
浏览文件 @
0f3bb2fe
...
...
@@ -40,7 +40,7 @@ const camelize = cached((str) => {
return
str
.
replace
(
camelizeRE
,
(
_
,
c
)
=>
c
?
c
.
toUpperCase
()
:
''
)
});
const
SYNC_API_RE
=
/
subNVue
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
;
const
SYNC_API_RE
=
/
getSubNVueById
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
;
const
CONTEXT_API_RE
=
/^create|Manager$/
;
...
...
@@ -254,6 +254,21 @@ TODOS.forEach(function (name) {
function
wrapper$1
(
webview
)
{
webview
.
$processed
=
true
;
webview
.
postMessage
=
function
(
data
)
{
plus
.
webview
.
postMessageToUniNView
({
type
:
'
UniAppSubNVue
'
,
data
},
webview
.
id
);
};
let
callbacks
=
[];
webview
.
onMessage
=
function
(
callback
)
{
callbacks
.
push
(
callback
);
};
webview
.
$consumeMessage
=
function
(
e
)
{
callbacks
.
forEach
(
callback
=>
callback
(
e
));
};
if
(
!
webview
.
__uniapp_mask_id
)
{
return
}
...
...
@@ -286,33 +301,15 @@ function wrapper$1 (webview) {
callbacks
=
[];
return
oldClose
.
apply
(
webview
,
args
)
};
webview
.
postMessage
=
function
(
data
)
{
plus
.
webview
.
postMessageToUniNView
({
type
:
'
UniAppSubNVue
'
,
data
,
options
:
{
id
:
webview
.
id
}
},
webview
.
id
);
};
let
callbacks
=
[];
webview
.
onMessage
=
function
(
callback
)
{
callbacks
.
push
(
callback
);
};
webview
.
$consumeMessage
=
function
(
e
)
{
callbacks
.
forEach
(
callback
=>
callback
(
e
));
};
}
const
subNVue
=
{
getSubNVueById
(
id
)
{
const
webview
=
plus
.
webview
.
getWebviewById
(
id
);
if
(
webview
&&
!
webview
.
$processed
)
{
wrapper$1
(
webview
);
}
return
webview
function
getSubNVueById
(
id
)
{
const
webview
=
plus
.
webview
.
getWebviewById
(
id
);
if
(
webview
&&
!
webview
.
$processed
)
{
wrapper$1
(
webview
);
}
};
return
webview
}
function
requireNativePlugin
(
pluginName
)
{
/* eslint-disable no-undef */
...
...
@@ -325,7 +322,7 @@ function requireNativePlugin (pluginName) {
var
api
=
/*#__PURE__*/
Object
.
freeze
({
requireNativePlugin
:
requireNativePlugin
,
subNVue
:
subNVue
getSubNVueById
:
getSubNVueById
});
const
MPPage
=
Page
;
...
...
packages/uni-app-plus/package.json
浏览文件 @
0f3bb2fe
{
"name"
:
"@dcloudio/uni-app-plus"
,
"version"
:
"0.0.23
2
"
,
"version"
:
"0.0.23
3
"
,
"description"
:
"uni-app app-plus"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
packages/uni-mp-alipay/dist/index.js
浏览文件 @
0f3bb2fe
...
...
@@ -40,7 +40,7 @@ const camelize = cached((str) => {
return
str
.
replace
(
camelizeRE
,
(
_
,
c
)
=>
c
?
c
.
toUpperCase
()
:
''
)
});
const
SYNC_API_RE
=
/
subNVue
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
;
const
SYNC_API_RE
=
/
getSubNVueById
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
;
const
CONTEXT_API_RE
=
/^create|Manager$/
;
...
...
packages/uni-mp-alipay/package.json
浏览文件 @
0f3bb2fe
{
"name"
:
"@dcloudio/uni-mp-alipay"
,
"version"
:
"0.0.80
3
"
,
"version"
:
"0.0.80
4
"
,
"description"
:
"uni-app mp-alipay"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
packages/uni-mp-baidu/dist/index.js
浏览文件 @
0f3bb2fe
...
...
@@ -40,7 +40,7 @@ const camelize = cached((str) => {
return
str
.
replace
(
camelizeRE
,
(
_
,
c
)
=>
c
?
c
.
toUpperCase
()
:
''
)
});
const
SYNC_API_RE
=
/
subNVue|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$
/
;
const
SYNC_API_RE
=
/
getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64
/
;
const
CONTEXT_API_RE
=
/^create|Manager$/
;
...
...
@@ -88,17 +88,17 @@ function promisify (name, api) {
success
:
resolve
,
fail
:
reject
}),
...
params
);
/* eslint-disable no-extend-native */
if
(
!
Promise
.
prototype
.
finally
)
{
Promise
.
prototype
.
finally
=
function
(
callback
)
{
const
promise
=
this
.
constructor
;
return
this
.
then
(
value
=>
promise
.
resolve
(
callback
()).
then
(()
=>
value
),
reason
=>
promise
.
resolve
(
callback
()).
then
(()
=>
{
throw
reason
})
)
};
/* eslint-disable no-extend-native */
if
(
!
Promise
.
prototype
.
finally
)
{
Promise
.
prototype
.
finally
=
function
(
callback
)
{
const
promise
=
this
.
constructor
;
return
this
.
then
(
value
=>
promise
.
resolve
(
callback
()).
then
(()
=>
value
),
reason
=>
promise
.
resolve
(
callback
()).
then
(()
=>
{
throw
reason
})
)
};
}
}))
}
...
...
packages/uni-mp-baidu/package.json
浏览文件 @
0f3bb2fe
{
"name"
:
"@dcloudio/uni-mp-baidu"
,
"version"
:
"0.0.83
0
"
,
"version"
:
"0.0.83
1
"
,
"description"
:
"uni-app mp-baidu"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
packages/uni-mp-toutiao/dist/index.js
浏览文件 @
0f3bb2fe
...
...
@@ -40,7 +40,7 @@ const camelize = cached((str) => {
return
str
.
replace
(
camelizeRE
,
(
_
,
c
)
=>
c
?
c
.
toUpperCase
()
:
''
)
});
const
SYNC_API_RE
=
/
subNVue|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$
/
;
const
SYNC_API_RE
=
/
getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64
/
;
const
CONTEXT_API_RE
=
/^create|Manager$/
;
...
...
@@ -88,17 +88,17 @@ function promisify (name, api) {
success
:
resolve
,
fail
:
reject
}),
...
params
);
/* eslint-disable no-extend-native */
if
(
!
Promise
.
prototype
.
finally
)
{
Promise
.
prototype
.
finally
=
function
(
callback
)
{
const
promise
=
this
.
constructor
;
return
this
.
then
(
value
=>
promise
.
resolve
(
callback
()).
then
(()
=>
value
),
reason
=>
promise
.
resolve
(
callback
()).
then
(()
=>
{
throw
reason
})
)
};
/* eslint-disable no-extend-native */
if
(
!
Promise
.
prototype
.
finally
)
{
Promise
.
prototype
.
finally
=
function
(
callback
)
{
const
promise
=
this
.
constructor
;
return
this
.
then
(
value
=>
promise
.
resolve
(
callback
()).
then
(()
=>
value
),
reason
=>
promise
.
resolve
(
callback
()).
then
(()
=>
{
throw
reason
})
)
};
}
}))
}
...
...
packages/uni-mp-toutiao/package.json
浏览文件 @
0f3bb2fe
{
"name"
:
"@dcloudio/uni-mp-toutiao"
,
"version"
:
"0.0.32
8
"
,
"version"
:
"0.0.32
9
"
,
"description"
:
"uni-app mp-toutiao"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
packages/uni-mp-weixin/dist/index.js
浏览文件 @
0f3bb2fe
...
...
@@ -40,7 +40,7 @@ const camelize = cached((str) => {
return
str
.
replace
(
camelizeRE
,
(
_
,
c
)
=>
c
?
c
.
toUpperCase
()
:
''
)
});
const
SYNC_API_RE
=
/
subNVue
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
;
const
SYNC_API_RE
=
/
getSubNVueById
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
;
const
CONTEXT_API_RE
=
/^create|Manager$/
;
...
...
packages/uni-mp-weixin/package.json
浏览文件 @
0f3bb2fe
{
"name"
:
"@dcloudio/uni-mp-weixin"
,
"version"
:
"0.0.95
2
"
,
"version"
:
"0.0.95
3
"
,
"description"
:
"uni-app mp-weixin"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
src/core/helpers/promise.js
浏览文件 @
0f3bb2fe
...
...
@@ -2,7 +2,7 @@ import {
isFn
}
from
'
uni-shared
'
const
SYNC_API_RE
=
/
subNVue
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
const
SYNC_API_RE
=
/
getSubNVueById
|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64/
const
CONTEXT_API_RE
=
/^create|Manager$/
...
...
src/platforms/app-plus/service/api/sub-nvue.js
浏览文件 @
0f3bb2fe
...
...
@@ -4,10 +4,7 @@ function wrapper (webview) {
webview
.
postMessage
=
function
(
data
)
{
plus
.
webview
.
postMessageToUniNView
({
type
:
'
UniAppSubNVue
'
,
data
,
options
:
{
id
:
webview
.
id
}
data
},
webview
.
id
)
}
let
callbacks
=
[]
...
...
@@ -52,12 +49,10 @@ function wrapper (webview) {
}
}
export
const
subNVue
=
{
getSubNVueById
(
id
)
{
const
webview
=
plus
.
webview
.
getWebviewById
(
id
)
if
(
webview
&&
!
webview
.
$processed
)
{
wrapper
(
webview
)
}
return
webview
export
function
getSubNVueById
(
id
)
{
const
webview
=
plus
.
webview
.
getWebviewById
(
id
)
if
(
webview
&&
!
webview
.
$processed
)
{
wrapper
(
webview
)
}
return
webview
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录