提交 f38140a8 编写于 作者: M mahaifeng

修改share布局与音频bug

上级 9de35860
...@@ -130,7 +130,7 @@ ...@@ -130,7 +130,7 @@
this.onEnded() this.onEnded()
}, },
onUnload() { onUnload() {
if (this._audioContext != null && this.isPlaying) { if (this._audioContext != null) {
if (this.isPlaying) { if (this.isPlaying) {
this.stop(); this.stop();
} }
...@@ -151,8 +151,9 @@ ...@@ -151,8 +151,9 @@
this._isChanging = true; this._isChanging = true;
}, },
onchange(e : UniSliderChangeEvent) { onchange(e : UniSliderChangeEvent) {
console.log(e, 'e');
let pos = e.detail.value; let pos = e.detail.value;
console.log('pos', pos);
this._audioContext!.seek(pos); this._audioContext!.seek(pos);
this.onSeeking() this.onSeeking()
this.onSeeked() this.onSeeked()
...@@ -164,7 +165,7 @@ ...@@ -164,7 +165,7 @@
this.onSeeked() this.onSeeked()
this._isChanging = false; this._isChanging = false;
}, },
startTimeInput(e : InputEvent) { startTimeInput(e : UniInputEvent) {
let startTimeValue = parseInt(e.detail.value) let startTimeValue = parseInt(e.detail.value)
this._audioContext!.startTime = startTimeValue; this._audioContext!.startTime = startTimeValue;
this.onchangeValue(startTimeValue) this.onchangeValue(startTimeValue)
......
<template> <template>
<!-- #ifdef APP --> <!-- #ifdef APP -->
<scroll-view direction="vertical" style="flex:1; margin-bottom: 50px;"> <scroll-view direction="vertical" style="flex:1;">
<!-- #endif --> <!-- #endif -->
<view id="viewshot"> <view id="viewshot">
<button class="button" @click="shareText()">分享文本</button> <button class="button" @click="shareText()">分享文本</button>
...@@ -14,16 +14,17 @@ ...@@ -14,16 +14,17 @@
<button class="button" @click="sharePrivateAudios()">分享Audio文件(多个)</button> <button class="button" @click="sharePrivateAudios()">分享Audio文件(多个)</button>
<button class="button" @click="sharePrivateFile()">分享文件(单个)</button> <button class="button" @click="sharePrivateFile()">分享文件(单个)</button>
<button class="button" @click="sharePrivateFiles()">分享文件(多个)</button> <button class="button" @click="sharePrivateFiles()">分享文件(多个)</button>
<button class="button" @click="sharePubImg()">选择图片并分享</button>
<button class="button" @click="sharePubMedias()">选择video并分享</button>
<button class="button" @click="shareSnapShot()">指定view截图并分享</button>
<button class="button" type="warn" @click="sharePrivateErrorImg()">分享单个本地图片(错误路径)</button>
<button class="button" type="warn" @click="sharePrivateErrorImgs()">分享多个本地图片(含有错误路径)</button>
<button class="button" type="warn" @click="sharePrivateErrorVideos()">分享Video文件(错误路径)</button>
<button class="button" type="warn" @click="sharePrivateErrorAudios()">分享Audio文件(错误路径)</button>
<button class="button" type="warn" @click="sharePrivateErrorFiles()">分享文件(错误路径)</button>
<button class="button" type="primary" @click="sharePrivateErrorImg()">分享单个本地图片(错误路径)</button>
<button class="button" type="primary" @click="sharePrivateErrorImgs()">分享多个本地图片(含有错误路径)</button>
<button class="button" type="primary" @click="sharePrivateErrorVideos()">分享Video文件(错误路径)</button>
<button class="button" type="primary" @click="sharePrivateErrorAudios()">分享Audio文件(错误路径)</button>
<button class="button" type="primary" @click="sharePrivateErrorFiles()">分享文件(错误路径)</button>
<button class="button" type="warn" @click="sharePubImg()">选择图片并分享</button>
<button class="button" type="warn" @click="sharePubMedias()">选择video并分享</button>
<button class="button" type="warn" @click="shareSnapShot()">指定view截图并分享</button>
</view> </view>
</scroll-view> </scroll-view>
</template> </template>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册