Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
9c54c53f
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,发现更多精彩内容 >>
提交
9c54c53f
编写于
10月 20, 2020
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev' into alpha
上级
e3101ab3
6d36cdf7
变更
6
展开全部
隐藏空白更改
内联
并排
Showing
6 changed file
with
56 addition
and
12 deletion
+56
-12
packages/vue-cli-plugin-uni/packages/uni-cloud/dist/index.js
packages/vue-cli-plugin-uni/packages/uni-cloud/dist/index.js
+1
-1
src/core/view/components/input/index.vue
src/core/view/components/input/index.vue
+21
-2
src/core/view/components/textarea/index.vue
src/core/view/components/textarea/index.vue
+23
-6
src/platforms/app-plus/service/api/media/get-image-info.js
src/platforms/app-plus/service/api/media/get-image-info.js
+7
-1
src/platforms/app-plus/view/components/web-view/index.vue
src/platforms/app-plus/view/components/web-view/index.vue
+2
-1
src/platforms/h5/components/app/layout.vue
src/platforms/h5/components/app/layout.vue
+2
-1
未找到文件。
packages/vue-cli-plugin-uni/packages/uni-cloud/dist/index.js
浏览文件 @
9c54c53f
此差异已折叠。
点击以展开。
src/core/view/components/input/index.vue
浏览文件 @
9c54c53f
...
...
@@ -16,6 +16,7 @@
v-text=
"placeholder"
/>
<input
v-if=
"!disabled || !fixColor"
ref=
"input"
v-model=
"valueSync"
v-keyboard
...
...
@@ -33,6 +34,17 @@
@
compositionend=
"_onComposition"
@
keyup.stop=
"_onKeyup"
>
<input
v-if=
"disabled && fixColor"
ref=
"input"
:value=
"valueSync"
tabindex=
"-1"
:readonly=
"disabled"
:type=
"inputType"
:maxlength=
"maxlength"
:step=
"step"
class=
"uni-input-input"
>
</div>
</uni-input>
</
template
>
...
...
@@ -91,7 +103,9 @@ export default {
return
{
composing
:
false
,
wrapperHeight
:
0
,
cachedValue
:
''
cachedValue
:
''
,
// Safari 14 以上修正禁用状态颜色
fixColor
:
String
(
navigator
.
vendor
).
indexOf
(
'
Apple
'
)
===
0
&&
CSS
.
supports
(
'
image-orientation:from-image
'
)
}
},
computed
:
{
...
...
@@ -285,12 +299,12 @@ uni-input[hidden] {
}
.uni-input-input
{
position
:
relative
;
display
:
block
;
height
:
100%
;
background
:
none
;
color
:
inherit
;
opacity
:
1
;
-webkit-text-fill-color
:
currentcolor
;
font
:
inherit
;
line-height
:
inherit
;
letter-spacing
:
inherit
;
...
...
@@ -313,4 +327,9 @@ uni-input[hidden] {
.uni-input-input
[
type
=
"number"
]
{
-moz-appearance
:
textfield
;
}
.uni-input-input
:disabled
{
/* 用于重置iOS14以下禁用状态文字颜色 */
-webkit-text-fill-color
:
currentcolor
;
}
</
style
>
src/core/view/components/textarea/index.vue
浏览文件 @
9c54c53f
...
...
@@ -5,7 +5,7 @@
>
<div
class=
"uni-textarea-wrapper"
>
<div
v-show=
"!(composition
||
valueSync.length)"
v-show=
"!(composition
||
valueSync.length)"
ref=
"placeholder"
:style=
"placeholderStyle"
:class=
"placeholderClass"
...
...
@@ -19,7 +19,7 @@
/>
<div
class=
"uni-textarea-compute"
>
<div
v-for=
"(item,index) in valueCompute"
v-for=
"(item,
index) in valueCompute"
:key=
"index"
v-text=
"item.trim() ? item : '.'"
/>
...
...
@@ -29,14 +29,15 @@
/>
</div>
<textarea
v-if=
"!disabled || !fixColor"
ref=
"textarea"
v-model=
"valueSync"
v-keyboard
:disabled=
"disabled"
:maxlength=
"maxlengthNumber"
:autofocus=
"autoFocus || focus"
:class=
"
{
'uni-textarea-textarea-fix-margin': fixMargin
}"
:style="{
'overflow-y': autoHeight? 'hidden':'auto'
}"
:class=
"
{
'uni-textarea-textarea-fix-margin': fixMargin
}"
:style="{
'overflow-y': autoHeight ? 'hidden' : 'auto'
}"
class="uni-textarea-textarea"
@compositionstart="_compositionstart"
@compositionend="_compositionend"
...
...
@@ -45,6 +46,17 @@
@blur="_blur"
@touchstart.passive="_touchstart"
/>
<textarea
v-if=
"disabled && fixColor"
ref=
"textarea"
:value=
"valueSync"
tabindex=
"-1"
:readonly=
"disabled"
:maxlength=
"maxlengthNumber"
:class=
"
{ 'uni-textarea-textarea-fix-margin': fixMargin }"
:style="{ 'overflow-y': autoHeight ? 'hidden' : 'auto' }"
class="uni-textarea-textarea"
/>
</div>
</uni-textarea>
</
template
>
...
...
@@ -114,7 +126,9 @@ export default {
height
:
0
,
focusChangeSource
:
''
,
// iOS 13 以下版本需要修正边距
fixMargin
:
String
(
navigator
.
platform
).
indexOf
(
'
iP
'
)
===
0
&&
String
(
navigator
.
vendor
).
indexOf
(
'
Apple
'
)
===
0
&&
window
.
matchMedia
(
DARK_TEST_STRING
).
media
!==
DARK_TEST_STRING
fixMargin
:
String
(
navigator
.
platform
).
indexOf
(
'
iP
'
)
===
0
&&
String
(
navigator
.
vendor
).
indexOf
(
'
Apple
'
)
===
0
&&
window
.
matchMedia
(
DARK_TEST_STRING
).
media
!==
DARK_TEST_STRING
,
// Safari 14 以上修正禁用状态颜色
fixColor
:
String
(
navigator
.
vendor
).
indexOf
(
'
Apple
'
)
===
0
&&
CSS
.
supports
(
'
image-orientation:from-image
'
)
}
},
computed
:
{
...
...
@@ -340,7 +354,6 @@ uni-textarea[hidden] {
background
:
none
;
color
:
inherit
;
opacity
:
1
;
-webkit-text-fill-color
:
currentcolor
;
font
:
inherit
;
line-height
:
inherit
;
letter-spacing
:
inherit
;
...
...
@@ -355,4 +368,8 @@ uni-textarea[hidden] {
right
:
0
;
margin
:
0
-3px
;
}
.uni-textarea-textarea
:disabled
{
/* 用于重置iOS14以下禁用状态文字颜色 */
-webkit-text-fill-color
:
currentcolor
;
}
</
style
>
src/platforms/app-plus/service/api/media/get-image-info.js
浏览文件 @
9c54c53f
import
{
warpPlusMethod
}
from
'
../util
'
import
{
TEMP_PATH
}
from
'
../constants
'
export
const
getImageInfo
=
warpPlusMethod
(
'
io
'
,
'
getImageInfo
'
)
export
const
getImageInfo
=
warpPlusMethod
(
'
io
'
,
'
getImageInfo
'
,
options
=>
{
options
.
savePath
=
options
.
filename
=
TEMP_PATH
+
'
/download/
'
return
options
})
src/platforms/app-plus/view/components/web-view/index.vue
浏览文件 @
9c54c53f
...
...
@@ -34,7 +34,8 @@ const insertHTMLWebView = ({
const
title
=
webview
.
getTitle
()
parentWebview
.
setStyle
({
titleNView
:
{
titleText
:
(
!
title
||
title
===
'
null
'
)
?
''
:
title
// iOS titleText 为空字符串时 按钮会隐藏
titleText
:
(
!
title
||
title
===
'
null
'
)
?
'
'
:
title
}
})
})
...
...
src/platforms/h5/components/app/layout.vue
浏览文件 @
9c54c53f
...
...
@@ -330,7 +330,8 @@ export default {
}
uni-main
{
flex
:
1
;
flex
:
1
;
width
:
100%
;
}
uni-top-window
+
uni-content
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录