|
@@ -1,7 +1,7 @@
|
|
|
import { Component } from 'react';
|
|
|
import Taro from '@tarojs/taro';
|
|
|
-import {View, Image, Video, Button} from '@tarojs/components'
|
|
|
-import {AtProgress, AtSlider, message} from 'taro-ui'
|
|
|
+import {View, Image, Video} from '@tarojs/components'
|
|
|
+import AudioPlayer from '../../components/audio';
|
|
|
|
|
|
import API from '../../utils/API';
|
|
|
import { pay,payClose,getSelectProject,wxQuery,login } from '../../utils/servers/servers';
|
|
@@ -14,25 +14,18 @@ import "taro-ui/dist/style/components/icon.scss";
|
|
|
import "taro-ui/dist/style/components/slider.scss";
|
|
|
|
|
|
import background from '../../assets/images/background.png';
|
|
|
-import audioPlay from '../../assets/images/audioPlay.png';
|
|
|
-import autioSuspend from '../../assets/images/autioSuspend.png';
|
|
|
|
|
|
class Details extends Component {
|
|
|
|
|
|
inst = Taro.getCurrentInstance()
|
|
|
|
|
|
- innerAudioContext = Taro.createInnerAudioContext()
|
|
|
-
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
|
this.state={
|
|
|
projectInfor: {},
|
|
|
- audioPlay: false,
|
|
|
- audioPercent: 0,
|
|
|
}
|
|
|
this.pay= this.pay.bind(this);
|
|
|
this.payClose= this.payClose.bind(this);
|
|
|
- this.createAudio= this.createAudio.bind(this);
|
|
|
this.wxQuery= this.wxQuery.bind(this);
|
|
|
this.login= this.login.bind(this);
|
|
|
}
|
|
@@ -45,10 +38,6 @@ class Details extends Component {
|
|
|
this.getSelectProject();
|
|
|
}
|
|
|
|
|
|
- componentWillUnmount(){
|
|
|
- this.innerAudioContext.destroy();
|
|
|
- }
|
|
|
-
|
|
|
pay(){
|
|
|
let token = Taro.getStorageSync('token');
|
|
|
if(!token){
|
|
@@ -135,7 +124,7 @@ class Details extends Component {
|
|
|
orderNo,
|
|
|
}).then(v => {
|
|
|
if(v.error.length === 0){
|
|
|
- // console.log(v);
|
|
|
+ Taro.showToast({title:'已取消支付',icon:'none'});
|
|
|
}else{
|
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
|
}
|
|
@@ -150,7 +139,6 @@ class Details extends Component {
|
|
|
orderNo:orderNo,
|
|
|
}).then(v => {
|
|
|
if(v.error.length === 0){
|
|
|
- // console.log(v);
|
|
|
this.getSelectProject();
|
|
|
}else{
|
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
@@ -161,47 +149,6 @@ class Details extends Component {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- createAudio(commodityUrl){
|
|
|
- this.innerAudioContext.src = resourceAddress + commodityUrl;
|
|
|
- // this.innerAudioContext.autoplay = true
|
|
|
- this.innerAudioContext.onPlay(() => {
|
|
|
- this.setState({
|
|
|
- audioPlay: true
|
|
|
- })
|
|
|
- })
|
|
|
- this.innerAudioContext.onPause(() => {
|
|
|
- this.setState({
|
|
|
- audioPlay: false
|
|
|
- })
|
|
|
- })
|
|
|
- //播放结束
|
|
|
- this.innerAudioContext.onEnded(() => {
|
|
|
- this.innerAudioContext.stop();
|
|
|
- this.setState({
|
|
|
- audioPlay: false,
|
|
|
- audioPercent: 100
|
|
|
- },()=>{
|
|
|
- setTimeout(()=>{
|
|
|
- this.setState({
|
|
|
- audioPercent: 0
|
|
|
- })
|
|
|
- },800)
|
|
|
- })
|
|
|
- })
|
|
|
- this.innerAudioContext.onError((res) => {
|
|
|
- console.log(res.errMsg)
|
|
|
- console.log(res.errCode)
|
|
|
- Taro.showToast({title:'语音文件错误,请下拉页面刷新后重试',icon:'none'});
|
|
|
-
|
|
|
- })
|
|
|
- this.innerAudioContext.onTimeUpdate(() => {
|
|
|
- this.setState({
|
|
|
- audioPercent: parseInt(this.innerAudioContext.currentTime/this.innerAudioContext.duration*100),
|
|
|
- // duration: this.innerAudioContext.duration
|
|
|
- })
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
getSelectProject(){
|
|
|
getSelectProject({
|
|
|
id:this.inst.router.params.id,
|
|
@@ -210,9 +157,6 @@ class Details extends Component {
|
|
|
this.setState({
|
|
|
projectInfor: v.data
|
|
|
})
|
|
|
- if(v.data.commodityType === 2 && v.data.buy === 1){
|
|
|
- this.createAudio(v.data.commodityUrl);
|
|
|
- }
|
|
|
}else{
|
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
|
}
|
|
@@ -255,43 +199,10 @@ class Details extends Component {
|
|
|
<View className='audio'>
|
|
|
<Image objectFit='contain' src={resourceAddress + projectInfor.thumbnailUrl} className='audioImg'/>
|
|
|
<View className='operation'>
|
|
|
- {this.state.audioPlay ?
|
|
|
- <Image
|
|
|
- src={autioSuspend}
|
|
|
- className='suspend'
|
|
|
- onClick={()=>{
|
|
|
- this.innerAudioContext.pause()
|
|
|
- }}/> :
|
|
|
- <Image
|
|
|
- src={audioPlay}
|
|
|
- className='play'
|
|
|
- onClick={()=>{
|
|
|
- this.innerAudioContext.play()
|
|
|
- }}
|
|
|
- />}
|
|
|
- <View className='atProgress'>
|
|
|
- {/*<AtSlider*/}
|
|
|
- {/* min={0}*/}
|
|
|
- {/* max={this.state.duration}*/}
|
|
|
- {/* step={0.1}*/}
|
|
|
- {/* value={this.state.audioPercent}*/}
|
|
|
- {/* onChange={(value)=>{*/}
|
|
|
- {/* this.setState({*/}
|
|
|
- {/* audioPercent: value*/}
|
|
|
- {/* })*/}
|
|
|
- {/* this.innerAudioContext.seek(value);*/}
|
|
|
- {/* this.innerAudioContext.pause();*/}
|
|
|
- {/* }}*/}
|
|
|
- {/* onChanging={()=>{*/}
|
|
|
- {/* this.innerAudioContext.pause();*/}
|
|
|
- {/* }}*/}
|
|
|
- {/*/>*/}
|
|
|
- <AtProgress percent={this.state.audioPercent} />
|
|
|
- </View>
|
|
|
+ <AudioPlayer audioFile={resourceAddress + projectInfor.commodityUrl}/>
|
|
|
</View>
|
|
|
- </View> : <Image objectFit='contain' src={resourceAddress + projectInfor.thumbnailUrl} className='img'/>
|
|
|
+ </View> : <Image objectFit='contain' src={resourceAddress + projectInfor.commodityUrl} className='img'/>
|
|
|
}
|
|
|
-
|
|
|
</View>
|
|
|
<View className='infor'>
|
|
|
<View className='title'>{projectInfor.name}</View>
|
|
@@ -305,8 +216,6 @@ class Details extends Component {
|
|
|
<View className='typeName'>
|
|
|
{projectInfor.typeName}
|
|
|
</View>
|
|
|
- {/*<Image className='avater' src={resourceAddress + projectInfor.thumbnailUrl}/>*/}
|
|
|
- {/*<View className='name'>黄老师</View>*/}
|
|
|
</View>
|
|
|
</View>
|
|
|
</View>
|