Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
f4759747
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
726
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,发现更多精彩内容 >>
提交
f4759747
编写于
4月 20, 2019
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
build uni runtime(mp-baidu:[String,Number],default:false=>Boolean)
上级
28abd0a5
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
37 addition
and
51 deletion
+37
-51
packages/uni-app-plus/dist/index.js
packages/uni-app-plus/dist/index.js
+3
-3
packages/uni-app-plus/package.json
packages/uni-app-plus/package.json
+1
-1
packages/uni-mp-baidu/dist/index.js
packages/uni-mp-baidu/dist/index.js
+12
-19
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
+3
-3
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
+3
-3
packages/uni-mp-weixin/package.json
packages/uni-mp-weixin/package.json
+1
-1
src/core/runtime/wrapper/util.js
src/core/runtime/wrapper/util.js
+12
-19
未找到文件。
packages/uni-app-plus/dist/index.js
浏览文件 @
f4759747
...
...
@@ -393,7 +393,7 @@ function getBehaviors (vueExtends, vueMixins) {
return
behaviors
}
function
parsePropType
(
key
,
type
,
file
)
{
function
parsePropType
(
key
,
type
,
defaultValue
,
file
)
{
// [String]=>String
if
(
Array
.
isArray
(
type
)
&&
type
.
length
===
1
)
{
return
type
[
0
]
...
...
@@ -434,7 +434,7 @@ function getProperties (props, isBehavior = false, file = '') {
value
=
value
();
}
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
file
);
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
value
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
opts
.
type
)
!==
-
1
?
opts
.
type
:
null
,
...
...
@@ -442,7 +442,7 @@ function getProperties (props, isBehavior = false, file = '') {
observer
:
createObserver
(
key
)
};
}
else
{
// content:String
const
type
=
parsePropType
(
key
,
opts
,
file
);
const
type
=
parsePropType
(
key
,
opts
,
null
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
type
)
!==
-
1
?
type
:
null
,
observer
:
createObserver
(
key
)
...
...
packages/uni-app-plus/package.json
浏览文件 @
f4759747
{
"name"
:
"@dcloudio/uni-app-plus"
,
"version"
:
"0.0.22
4
"
,
"version"
:
"0.0.22
5
"
,
"description"
:
"uni-app app-plus"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
packages/uni-mp-baidu/dist/index.js
浏览文件 @
f4759747
...
...
@@ -528,32 +528,25 @@ function getBehaviors (vueExtends, vueMixins) {
return
behaviors
}
function
parsePropType
(
key
,
type
,
file
)
{
function
parsePropType
(
key
,
type
,
defaultValue
,
file
)
{
// [String]=>String
if
(
Array
.
isArray
(
type
)
&&
type
.
length
===
1
)
{
return
type
[
0
]
}
{
if
(
Array
.
isArray
(
type
)
&&
defaultValue
===
false
&&
Array
.
isArray
(
type
)
&&
type
.
length
===
2
&&
type
.
indexOf
(
String
)
!==
-
1
type
.
indexOf
(
String
)
!==
-
1
&&
type
.
indexOf
(
Boolean
)
!==
-
1
)
{
// [String,Boolean]=>Boolean
if
(
type
.
indexOf
(
Boolean
)
!==
-
1
)
{
if
(
file
)
{
console
.
warn
(
`props.
${
key
}
.type should use Boolean instead of [String,Boolean] . at
${
file
}
`
);
}
return
Boolean
}
else
if
(
type
.
indexOf
(
Number
)
!==
-
1
)
{
if
(
file
)
{
console
.
warn
(
`props.
${
key
}
.type should use String or Number instead of [String,Number]. at
${
file
}
`
);
}
return
String
if
(
file
)
{
console
.
warn
(
`props.
${
key
}
.type should use Boolean instead of [String,Boolean] at
${
file
}
`
);
}
return
Boolean
}
}
return
type
...
...
@@ -592,7 +585,7 @@ function getProperties (props, isBehavior = false, file = '') {
value
=
value
();
}
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
file
);
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
value
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
opts
.
type
)
!==
-
1
?
opts
.
type
:
null
,
...
...
@@ -600,7 +593,7 @@ function getProperties (props, isBehavior = false, file = '') {
observer
:
createObserver
(
key
)
};
}
else
{
// content:String
const
type
=
parsePropType
(
key
,
opts
,
file
);
const
type
=
parsePropType
(
key
,
opts
,
null
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
type
)
!==
-
1
?
type
:
null
,
observer
:
createObserver
(
key
)
...
...
packages/uni-mp-baidu/package.json
浏览文件 @
f4759747
{
"name"
:
"@dcloudio/uni-mp-baidu"
,
"version"
:
"0.0.82
0
"
,
"version"
:
"0.0.82
2
"
,
"description"
:
"uni-app mp-baidu"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
packages/uni-mp-toutiao/dist/index.js
浏览文件 @
f4759747
...
...
@@ -573,7 +573,7 @@ function getBehaviors (vueExtends, vueMixins) {
return
behaviors
}
function
parsePropType
(
key
,
type
,
file
)
{
function
parsePropType
(
key
,
type
,
defaultValue
,
file
)
{
// [String]=>String
if
(
Array
.
isArray
(
type
)
&&
type
.
length
===
1
)
{
return
type
[
0
]
...
...
@@ -614,7 +614,7 @@ function getProperties (props, isBehavior = false, file = '') {
value
=
value
();
}
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
file
);
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
value
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
opts
.
type
)
!==
-
1
?
opts
.
type
:
null
,
...
...
@@ -622,7 +622,7 @@ function getProperties (props, isBehavior = false, file = '') {
observer
:
createObserver
(
key
)
};
}
else
{
// content:String
const
type
=
parsePropType
(
key
,
opts
,
file
);
const
type
=
parsePropType
(
key
,
opts
,
null
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
type
)
!==
-
1
?
type
:
null
,
observer
:
createObserver
(
key
)
...
...
packages/uni-mp-toutiao/package.json
浏览文件 @
f4759747
{
"name"
:
"@dcloudio/uni-mp-toutiao"
,
"version"
:
"0.0.3
19
"
,
"version"
:
"0.0.3
20
"
,
"description"
:
"uni-app mp-toutiao"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
packages/uni-mp-weixin/dist/index.js
浏览文件 @
f4759747
...
...
@@ -420,7 +420,7 @@ function getBehaviors (vueExtends, vueMixins) {
return
behaviors
}
function
parsePropType
(
key
,
type
,
file
)
{
function
parsePropType
(
key
,
type
,
defaultValue
,
file
)
{
// [String]=>String
if
(
Array
.
isArray
(
type
)
&&
type
.
length
===
1
)
{
return
type
[
0
]
...
...
@@ -461,7 +461,7 @@ function getProperties (props, isBehavior = false, file = '') {
value
=
value
();
}
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
file
);
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
value
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
opts
.
type
)
!==
-
1
?
opts
.
type
:
null
,
...
...
@@ -469,7 +469,7 @@ function getProperties (props, isBehavior = false, file = '') {
observer
:
createObserver
(
key
)
};
}
else
{
// content:String
const
type
=
parsePropType
(
key
,
opts
,
file
);
const
type
=
parsePropType
(
key
,
opts
,
null
,
file
);
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
type
)
!==
-
1
?
type
:
null
,
observer
:
createObserver
(
key
)
...
...
packages/uni-mp-weixin/package.json
浏览文件 @
f4759747
{
"name"
:
"@dcloudio/uni-mp-weixin"
,
"version"
:
"0.0.94
3
"
,
"version"
:
"0.0.94
4
"
,
"description"
:
"uni-app mp-weixin"
,
"main"
:
"dist/index.js"
,
"scripts"
:
{
...
...
src/core/runtime/wrapper/util.js
浏览文件 @
f4759747
...
...
@@ -89,32 +89,25 @@ export function getBehaviors (vueExtends, vueMixins) {
return
behaviors
}
function
parsePropType
(
key
,
type
,
file
)
{
function
parsePropType
(
key
,
type
,
defaultValue
,
file
)
{
// [String]=>String
if
(
Array
.
isArray
(
type
)
&&
type
.
length
===
1
)
{
return
type
[
0
]
}
if
(
__PLATFORM__
===
'
mp-baidu
'
)
{
if
(
Array
.
isArray
(
type
)
&&
defaultValue
===
false
&&
Array
.
isArray
(
type
)
&&
type
.
length
===
2
&&
type
.
indexOf
(
String
)
!==
-
1
type
.
indexOf
(
String
)
!==
-
1
&&
type
.
indexOf
(
Boolean
)
!==
-
1
)
{
// [String,Boolean]=>Boolean
if
(
type
.
indexOf
(
Boolean
)
!==
-
1
)
{
if
(
file
)
{
console
.
warn
(
`props.
${
key
}
.type should use Boolean instead of [String,Boolean] . at
${
file
}
`
)
}
return
Boolean
}
else
if
(
type
.
indexOf
(
Number
)
!==
-
1
)
{
if
(
file
)
{
console
.
warn
(
`props.
${
key
}
.type should use String or Number instead of [String,Number]. at
${
file
}
`
)
}
return
String
if
(
file
)
{
console
.
warn
(
`props.
${
key
}
.type should use Boolean instead of [String,Boolean] at
${
file
}
`
)
}
return
Boolean
}
}
return
type
...
...
@@ -153,7 +146,7 @@ export function getProperties (props, isBehavior = false, file = '') {
value
=
value
()
}
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
file
)
opts
.
type
=
parsePropType
(
key
,
opts
.
type
,
value
,
file
)
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
opts
.
type
)
!==
-
1
?
opts
.
type
:
null
,
...
...
@@ -161,7 +154,7 @@ export function getProperties (props, isBehavior = false, file = '') {
observer
:
createObserver
(
key
)
}
}
else
{
// content:String
const
type
=
parsePropType
(
key
,
opts
,
file
)
const
type
=
parsePropType
(
key
,
opts
,
null
,
file
)
properties
[
key
]
=
{
type
:
PROP_TYPES
.
indexOf
(
type
)
!==
-
1
?
type
:
null
,
observer
:
createObserver
(
key
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录