|
@@ -1,16 +1,17 @@
|
|
|
import { Component } from 'react';
|
|
|
import Taro from '@tarojs/taro';
|
|
|
-import { View, Image, Video, Audio} from '@tarojs/components'
|
|
|
-import { AtProgress } from 'taro-ui'
|
|
|
+import {View, Image, Video, Button} from '@tarojs/components'
|
|
|
+import {AtProgress, AtSlider, message} from 'taro-ui'
|
|
|
|
|
|
import API from '../../utils/API';
|
|
|
-import { pay,payClose,getSelectProject } from '../../utils/servers/servers';
|
|
|
+import { pay,payClose,getSelectProject,wxQuery,login } from '../../utils/servers/servers';
|
|
|
import {resourceAddress} from '../../utils/config';
|
|
|
|
|
|
import './index.less'
|
|
|
import 'taro-ui/dist/style/components/tag.scss';
|
|
|
import "taro-ui/dist/style/components/progress.scss";
|
|
|
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';
|
|
@@ -31,6 +32,9 @@ class Details extends Component {
|
|
|
}
|
|
|
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);
|
|
|
}
|
|
|
|
|
|
componentDidMount() {
|
|
@@ -41,27 +45,52 @@ class Details extends Component {
|
|
|
this.getSelectProject();
|
|
|
}
|
|
|
|
|
|
+ componentWillUnmount(){
|
|
|
+ this.innerAudioContext.destroy();
|
|
|
+ }
|
|
|
+
|
|
|
pay(){
|
|
|
+ let token = Taro.getStorageSync('token');
|
|
|
+ if(!token){
|
|
|
+ Taro.getUserProfile({
|
|
|
+ desc: '用于用户注册',
|
|
|
+ success: async (res)=> {
|
|
|
+ let userInfo = res.userInfo
|
|
|
+ let nickName = userInfo.nickName
|
|
|
+ await this.login(nickName);
|
|
|
+ await this.getSelectProject();
|
|
|
+ },
|
|
|
+ fail: ()=>{
|
|
|
+ Taro.showToast({title:'请同意授权获取用户信息',icon:'none'});
|
|
|
+ }
|
|
|
+ })
|
|
|
+ return ;
|
|
|
+ }
|
|
|
Taro.showLoading({title:'加载中'})
|
|
|
pay({
|
|
|
id:this.inst.router.params.id,
|
|
|
}).then(v => {
|
|
|
Taro.hideLoading();
|
|
|
if(v.error.length === 0){
|
|
|
+ if(v.data.amount === "0"){
|
|
|
+ Taro.showToast({title:'购买成功'});
|
|
|
+ this.getSelectProject();
|
|
|
+ return ;
|
|
|
+ }
|
|
|
API.requestPayment({
|
|
|
timeStamp: v.data.timeStamp,
|
|
|
nonceStr: v.data.nonceStr,
|
|
|
package: v.data.package,
|
|
|
signType: 'MD5',
|
|
|
paySign: v.data.paySign,
|
|
|
- success: (res)=> {
|
|
|
- console.log(res,'success')
|
|
|
+ success: (_)=> {
|
|
|
Taro.showToast({title:'支付成功'});
|
|
|
+ this.wxQuery(v.data.out_trade_no);
|
|
|
this.getSelectProject();
|
|
|
},
|
|
|
fail: (err)=> {
|
|
|
- console.log(err,'fail')
|
|
|
- this.payClose(v.data.out_trade_no)
|
|
|
+ console.log(err,'fail');
|
|
|
+ this.payClose(v.data.out_trade_no);
|
|
|
},
|
|
|
})
|
|
|
}else{
|
|
@@ -74,12 +103,54 @@ class Details extends Component {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+ async login(nickname){
|
|
|
+ let token = Taro.getStorageSync('token');
|
|
|
+ if(!token){
|
|
|
+ let loginMsg = await Taro.login();
|
|
|
+ if (loginMsg.code) {
|
|
|
+ try{
|
|
|
+ let msg = await login({
|
|
|
+ code:loginMsg.code,
|
|
|
+ nickname
|
|
|
+ });
|
|
|
+ if(msg.error.length === 0){
|
|
|
+ Taro.setStorageSync('token', msg.token)
|
|
|
+ }else{
|
|
|
+ Taro.showToast({title:msg.error[0].message,icon:'none'})
|
|
|
+ }
|
|
|
+ }catch (err) {
|
|
|
+ Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
|
|
|
+ console.log(err)
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ Taro.showToast({title:loginMsg.errMsg,icon:'none'})
|
|
|
+ console.log('登录失败!' + loginMsg.errMsg)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
payClose(orderNo){
|
|
|
payClose({
|
|
|
orderNo,
|
|
|
}).then(v => {
|
|
|
if(v.error.length === 0){
|
|
|
- console.log(v);
|
|
|
+ // console.log(v);
|
|
|
+ }else{
|
|
|
+ Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
|
+ }
|
|
|
+ }).catch(err => {
|
|
|
+ Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
|
|
|
+ console.log(err)
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ wxQuery(orderNo){
|
|
|
+ wxQuery({
|
|
|
+ orderNo:orderNo,
|
|
|
+ }).then(v => {
|
|
|
+ if(v.error.length === 0){
|
|
|
+ // console.log(v);
|
|
|
+ this.getSelectProject();
|
|
|
}else{
|
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
|
}
|
|
@@ -89,6 +160,47 @@ 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,
|
|
@@ -97,42 +209,9 @@ class Details extends Component {
|
|
|
this.setState({
|
|
|
projectInfor: v.data
|
|
|
})
|
|
|
- this.innerAudioContext.src = resourceAddress + v.data.commodityUrl
|
|
|
- this.innerAudioContext.onPlay(() => {
|
|
|
- this.setState({
|
|
|
- audioPlay: true
|
|
|
- })
|
|
|
- })
|
|
|
- this.innerAudioContext.onPause(() => {
|
|
|
- this.setState({
|
|
|
- audioPlay: false
|
|
|
- })
|
|
|
- })
|
|
|
- //播放结束
|
|
|
- this.innerAudioContext.onEnded(() => {
|
|
|
- console.log('播放结束')
|
|
|
- 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)
|
|
|
- })
|
|
|
- this.innerAudioContext.onTimeUpdate(() => {
|
|
|
- this.setState({
|
|
|
- audioPercent: parseInt(this.innerAudioContext.currentTime / this.innerAudioContext.duration * 100)
|
|
|
- })
|
|
|
- console.log('进度更新了总进度为:' + this.innerAudioContext.duration + '当前进度为:' + this.innerAudioContext.currentTime);
|
|
|
- })
|
|
|
+ if(v.data.commodityType === 2 && v.data.buy === 1){
|
|
|
+ this.createAudio(v.data.commodityUrl);
|
|
|
+ }
|
|
|
}else{
|
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
|
}
|
|
@@ -152,7 +231,15 @@ class Details extends Component {
|
|
|
<View className='imgContent'>
|
|
|
{
|
|
|
projectInfor.buy === 0 ?
|
|
|
- <Image objectFit='contain' src={resourceAddress + projectInfor.thumbnailUrl} className='img'/> :
|
|
|
+ <Image onClick={()=>{
|
|
|
+ Taro.previewMedia({
|
|
|
+ sources: [
|
|
|
+ {
|
|
|
+ url: resourceAddress + projectInfor.thumbnailUrl + ''
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ });
|
|
|
+ }} objectFit='contain' src={resourceAddress + projectInfor.thumbnailUrl} className='img'/> :
|
|
|
projectInfor.commodityType === 1 ?
|
|
|
<Video
|
|
|
src={resourceAddress + projectInfor.commodityUrl}
|
|
@@ -182,7 +269,23 @@ class Details extends Component {
|
|
|
}}
|
|
|
/>}
|
|
|
<View className='atProgress'>
|
|
|
- <AtProgress percent={this.state.audioPercent}/>
|
|
|
+ {/*<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>
|
|
|
</View>
|
|
|
</View> : <Image objectFit='contain' src={resourceAddress + projectInfor.thumbnailUrl} className='img'/>
|
|
@@ -192,7 +295,11 @@ class Details extends Component {
|
|
|
<View className='infor'>
|
|
|
<View className='title'>{projectInfor.name}</View>
|
|
|
<View className='introduceItem'>
|
|
|
- <View className='introduceContent'>申报即可享受国家奖金补贴,当年到款...</View>
|
|
|
+ <View className='introduceContent'>
|
|
|
+ {
|
|
|
+ projectInfor.summary
|
|
|
+ }
|
|
|
+ </View>
|
|
|
<View className='user'>
|
|
|
<View className='typeName'>
|
|
|
{projectInfor.typeName}
|
|
@@ -212,7 +319,7 @@ class Details extends Component {
|
|
|
}
|
|
|
</View>
|
|
|
{projectInfor.buy === 0 ? <View className='shop' style={{bottom:Taro.getEnv() === 'WEB' ? '50px' : '0'}}>
|
|
|
- <View className='singlePurchase' onClick={this.pay}>购买: ${projectInfor.amount}</View>
|
|
|
+ <View className='singlePurchase' onClick={this.pay}>购买: ¥{projectInfor.amount}</View>
|
|
|
</View> : null}
|
|
|
</View>
|
|
|
)
|