提交 4d0d0677 编写于 作者: fxy060608's avatar fxy060608

chore: 将 image、textarea、video 的条件编译调整为平台文字说明

上级 9a53eb54
......@@ -47,13 +47,11 @@
src: logo,
description: 'import方式'
},
// #ifdef APP-ANDROID
{
src: 'file:///storage/emulated/0/Android/data/io.dcloud.uniappx/apps/__UNI__3584C99/www/static/test-image/logo.png',
// TODO iOS发版时还需再补路径
description: '本地绝对路径file://方式(需注意打包后包名appid匹配)'
description: '本地绝对路径file://方式(仅限Android平台,需注意打包后包名appid匹配)'
},
// #endif
{
src: 'testerror.jpg',
description: '错误的本地路径'
......
......@@ -78,25 +78,21 @@ export default {
/>
</view>
<view class="content">
<!-- #ifndef WEB -->
<boolean-data
:defaultValue="false"
title="键盘弹起时,是否自动上推页面"
title="键盘弹起时,是否自动上推页面(仅限非 Web 平台)"
@change="change_adjust_position_boolean"
></boolean-data>
<!-- #endif -->
<!-- #ifdef MP -->
<boolean-data
:defaultValue="false"
title="是否显示键盘上方带有“完成”按钮那一栏"
title="是否显示键盘上方带有“完成”按钮那一栏(仅限小程序平台)"
@change="change_show_confirm_bar_boolean"
></boolean-data>
<boolean-data
:defaultValue="false"
title="如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true"
title="如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true(仅限小程序平台)"
@change="change_fixed_boolean"
></boolean-data>
<!-- #endif -->
<boolean-data
:defaultValue="false"
title="是否自动增高,设置auto-height时,style.height不生效"
......@@ -122,13 +118,11 @@ export default {
title="改变光标颜色为透明"
@change="change_cursor_color_boolean"
></boolean-data>
<!-- #ifdef WEB -->
<enum-data
:items="inputmode_enum"
title="是一个枚举属性,它提供了用户在编辑元素或其内容时可能输入的数据类型的提示。在符合条件的高版本webview里,uni-app的 web 和 app-vue 平台中可使用本属性。"
title="是一个枚举属性,它提供了用户在编辑元素或其内容时可能输入的数据类型的提示。(仅限 Web 平台符合条件的高版本浏览器或webview)。"
@change="radio_change_inputmode_enum"
></enum-data>
<!-- #endif -->
</view>
</scroll-view>
</template>
......
......@@ -103,37 +103,33 @@
<view class="uni-btn-v">
<button type="primary" @click="setPoster(_poster)">设置视频封面</button>
</view>
<!-- #ifndef WEB -->
<view class="uni-btn-v">
<button type="primary" @click="setShowMuteBtn()">设置是否显示静音按钮</button>
<button type="primary" @click="setShowMuteBtn()">设置是否显示静音按钮(仅限非 Web 平台)</button>
</view>
<view class="uni-btn-v">
<button type="primary" @click="setTitle(_title)">设置视频标题</button>
<button type="primary" @click="setTitle(_title)">设置视频标题(仅限非 Web 平台)</button>
</view>
<view class="uni-btn-v">
<button type="primary" @click="setEnablePlayGesture()">设置是否开启播放手势</button>
<button type="primary" @click="setEnablePlayGesture()">设置是否开启播放手势(仅限非 Web 平台)</button>
</view>
<view class="uni-btn-v">
<button type="primary" @click="setVslideGesture()">非全屏模式下,设置是否开启亮度与音量调节手势</button>
<button type="primary" @click="setVslideGesture()">非全屏模式下,设置是否开启亮度与音量调节手势(仅限非 Web 平台)</button>
</view>
<view class="uni-btn-v">
<button type="primary" @click="setVslideGestureInFullscreen()">全屏模式下,设置是否开启亮度与音量调节手势</button>
<button type="primary" @click="setVslideGestureInFullscreen()">全屏模式下,设置是否开启亮度与音量调节手势(仅限非 Web 平台)</button>
</view>
<!-- #endif -->
<!-- #ifdef APP -->
<view class="uni-btn-v">
<button type="primary" @click="setCodec(_codec)">设置解码器(未播放时设置有效)</button>
<button type="primary" @click="setCodec(_codec)">设置解码器(仅 App 平台,未播放时设置有效)</button>
</view>
<view class="uni-btn-v">
<button type="primary" @click="setHttpCache()">设置是否对http、https视频源开启本地缓存(未播放时设置有效)</button>
<button type="primary" @click="setHttpCache()">设置是否对http、https视频源开启本地缓存(仅 App 平台,未播放时设置有效)</button>
</view>
<view class="uni-btn-v">
<button type="primary" @click="setPlayStrategy(_playStrategy)">设置播放策略(未播放时设置有效)</button>
<button type="primary" @click="setPlayStrategy(_playStrategy)">设置播放策略(仅 App 平台,未播放时设置有效)</button>
</view>
<view class="uni-btn-v">
<button type="primary" @click="setHeader(_header)">设置header</button>
</view>
<!-- #endif -->
</scroll-view>
</view>
</template>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册