Browse Source

初始化

HW 4 years ago
parent
commit
3f3d5e29c6

+ 2 - 0
src/app.config.js

@@ -24,4 +24,6 @@ export default {
       badge: '444'
     }]
   },
+  // debug:true,
+  // networkTimeout:1000
 }

BIN
src/assets/images/background.png


+ 2 - 2
src/components/common/listBottomStart/index.jsx

@@ -19,8 +19,8 @@ class ListBottomStart extends Component{
       <View className='listBottomStartComponent'>
         {
           state === 'NO_MORE_DATA' ?
-            <View style={{width:'100%'}}>
-              <AtDivider content='没有更多了' fontColor='#999999' lineColor='#999999' />
+            <View className='noMoreData'>
+              没有更多了
             </View>:
           state === 'RELOAD' ?
             <View className='reload'>

+ 6 - 0
src/components/common/listBottomStart/index.less

@@ -2,6 +2,11 @@
   display: flex;
   justify-content: center;
   padding: 10px 0 10px 0;
+  .noMoreData{
+    text-align: center;
+    color: #969696;
+    font-size: 13px;
+  }
   .reload{
     display: flex;
     flex-flow: row nowrap;
@@ -16,6 +21,7 @@
     align-items: center;
     justify-content: center;
     flex-flow: column nowrap;
+    padding-top: 100px;
     .noDataImg{
       width: 200px;
       height: 200px;

BIN
src/custom-tab-bar/image/selectHome.png


BIN
src/custom-tab-bar/image/selectUser.png


+ 4 - 2
src/custom-tab-bar/index.jsx

@@ -5,6 +5,8 @@ import './index.less'
 
 import icon_home from './image/home.png';
 import icon_user from './image/user.png';
+import icon_selectUser from './image/selectUser.png';
+import icon_selectHome from './image/selectHome.png';
 import {connect} from "react-redux";
 import {add, asyncAdd, minus} from "../actions/counter";
 
@@ -31,7 +33,7 @@ class CustomTabBar extends Component{
         {
           pagePath: "/pages/index/index",
           iconPath: icon_home,
-          selectedIconPath: icon_home,
+          selectedIconPath: icon_selectHome,
           text: "首页"
         },
         // {
@@ -43,7 +45,7 @@ class CustomTabBar extends Component{
         {
           pagePath: "/pages/user/index",
           iconPath: icon_user,
-          selectedIconPath: icon_user,
+          selectedIconPath: icon_selectUser,
           text: "我的"
         },
       ]

+ 2 - 2
src/pages/details/index.config.js

@@ -1,8 +1,8 @@
 export default {
   navigationBarTitleText: '产品详情',
   enablePullDownRefresh: true,
-  backgroundColor: '#76D3FF',
-  navigationBarBackgroundColor:'#77D4FF',
+  backgroundColor: '#7ac7ff',
+  navigationBarBackgroundColor:'#7ac7ff',
   navigationBarTextStyle:'white',
   usingComponents: {
     "mp-html": "../../components/common/mp-weixin/index",

+ 155 - 48
src/pages/details/index.jsx

@@ -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>
     )

+ 6 - 4
src/pages/details/index.less

@@ -9,7 +9,7 @@
     top: -18px;
     z-index: -1;
     width: 100%;
-    height: 300px;
+    height: 318px;
   }
   .introduce{
     margin: 18px 26px 42px 0;
@@ -17,7 +17,7 @@
     border-top-right-radius: 33px;
     border-bottom-right-radius: 33px;
     overflow: hidden;
-    box-shadow: #393483 -1px 1px 21px 0;
+    box-shadow: -10px 11px 25px #393483;
     .imgContent{
       width: 100%;
       .img{
@@ -69,7 +69,7 @@
       background: #393484;
       .title{
         color: #FFFFFF;
-        font-size: 22px;
+        font-size: 28px;
       }
       .introduceItem{
         display: flex;
@@ -79,12 +79,14 @@
         padding-top: 19px;
         .introduceContent{
           color: #999999;
-          font-size: 13px;
+          font-size: 22px;
         }
         .user{
           display: flex;
           flex-flow: row nowrap;
+          padding-left: 10px;
           .typeName{
+            white-space: nowrap;
             display: inline-block;
             background: #EFF3FF;
             border-radius: 2px;

+ 2 - 2
src/pages/index/index.config.js

@@ -2,9 +2,9 @@ export default {
   navigationBarTitleText: '首页',
   enablePullDownRefresh: true,
   navigationStyle: 'custom',
-  navigationBarBackgroundColor:'#77D4FF',
+  navigationBarBackgroundColor:'#7ac7ff',
   navigationBarTextStyle:'white',
-  backgroundColor: '#76D3FF',
+  backgroundColor: '#7ac7ff',
   onReachBottomDistance: 50,
   usingComponents: {
     "mp-html": "../../components/common/mp-weixin/index",

+ 10 - 4
src/pages/index/index.jsx

@@ -41,7 +41,7 @@ class Index extends Component {
   }
 
   async componentDidMount() {
-    await this.login();
+    // await this.login();
     await this.getProjecList();
   }
 
@@ -59,7 +59,9 @@ class Index extends Component {
       let loginMsg = await Taro.login();
       if (loginMsg.code) {
         try{
-          let msg = await login({code:loginMsg.code});
+          let msg = await login({
+            code:loginMsg.code
+          });
           if(msg.error.length === 0){
             Taro.setStorageSync('token', msg.token)
           }else{
@@ -85,7 +87,11 @@ class Index extends Component {
       pageSize: 10,
     });
     if(msg.error.length === 0){
-      if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
+      if(msg.data.totalCount === 0){
+        this.setState({
+          listState: 'NO_DATA'
+        })
+      }else if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
         Taro.showToast({title:'没有更多数据了',icon:'none'});
         this.setState({
           listState: 'NO_MORE_DATA'
@@ -117,7 +123,7 @@ class Index extends Component {
         <NavBar
           extClass='NavBar'
           title='课程'
-          background='#76D3FF'
+          background='#7ac7ff'
           onHome={()=>{}}
         />
         <Image src={background} className='background'/>

+ 2 - 2
src/pages/user/index.config.js

@@ -2,8 +2,8 @@ export default {
   navigationBarTitleText: '我的',
   enablePullDownRefresh: true,
   navigationBarTextStyle:'white',
-  backgroundColor: '#76D3FF',
-  navigationBarBackgroundColor:'#77D4FF',
+  backgroundColor: '#7ac7ff',
+  navigationBarBackgroundColor:'#7ac7ff',
   onReachBottomDistance: 310,
   navigationStyle: 'custom',
 }

+ 48 - 10
src/pages/user/index.jsx

@@ -1,5 +1,5 @@
 import { Component } from 'react';
-import Taro from '@tarojs/taro';
+import Taro,{getCurrentPages} from '@tarojs/taro';
 import { connect } from 'react-redux'
 import { View, Image,OpenData } from '@tarojs/components'
 
@@ -12,6 +12,8 @@ import './index.less'
 import background from "../../assets/images/background.png";
 import NavBar from "../../components/NavBar";
 
+import user from '../../custom-tab-bar/image/user.png';
+
 @connect(({ counter }) => ({
   counter
 }), (dispatch) => ({
@@ -32,12 +34,16 @@ class Index extends Component {
     }
   }
 
-  componentDidShow() {
+  async componentDidShow() {
     this.props.set(1);
+    if(!Taro.getStorageSync('token')){
+      this.setState({
+        list: []
+      })
+    }
   }
 
   async componentDidMount() {
-    await this.login();
     await this.getUserOrderList();
   }
 
@@ -49,15 +55,19 @@ class Index extends Component {
     this.getUserOrderList(this.state.pageNo+1);
   }
 
-  async login(){
+  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});
+          let msg = await login({
+            code:loginMsg.code,
+            nickname
+          });
           if(msg.error.length === 0){
-            Taro.setStorageSync('token', msg.token)
+            Taro.setStorageSync('token', msg.token);
+            this.getUserOrderList();
           }else{
             Taro.showToast({title:msg.error[0].message,icon:'none'})
           }
@@ -79,9 +89,14 @@ class Index extends Component {
     let msg = await getUserOrderList({
       pageNo: pageNo,
       pageSize: 5,
+      payStatus: 1,
     });
     if(msg.error.length === 0){
-      if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
+      if(msg.data.totalCount === 0){
+        this.setState({
+          listState: 'NO_DATA'
+        })
+      }else if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
         Taro.showToast({title:'没有更多数据了',icon:'none'});
         this.setState({
           listState: 'NO_MORE_DATA'
@@ -114,16 +129,39 @@ class Index extends Component {
         <NavBar
           extClass='NavBar'
           title='我的'
-          background='#76D3FF'
+          background='#7ac7ff'
           onHome={()=>{}}
         />
         <Image src={background} className='background'/>
         <View className='userInfor'>
           <View className='avatar'>
-            <OpenData type='userAvatarUrl'/>
+            {
+              Taro.getStorageSync('token') ?
+                <OpenData type='userAvatarUrl'/> :
+                <Image className='noLogin' src={user}/>
+            }
+
           </View>
           <View className='nickName'>
-            <OpenData type='userNickName'/>
+            {
+              Taro.getStorageSync('token') ?
+                <OpenData type='userNickName'/> :
+                <View onClick={()=>{
+                  Taro.getUserProfile({
+                    desc: '用于用户注册',
+                    success: async (res)=> {
+                      let userInfo = res.userInfo
+                      let nickName = userInfo.nickName
+                      await this.login(nickName);
+                      await this.getUserOrderList();
+                      getCurrentPages()[getCurrentPages().length - 1].onLoad()
+                    },
+                    fail: ()=>{
+                      Taro.showToast({title:'请同意授权获取用户信息',icon:'none'});
+                    }
+                  })
+                }}>点击登录</View>
+            }
           </View>
         </View>
         <View className='list'>

+ 9 - 0
src/pages/user/index.less

@@ -35,6 +35,14 @@
       height: 104px;
       border-radius: 104px;
       overflow: hidden;
+      display:flex;
+      align-items: center;
+      justify-content: center;
+      background: #989595;
+      .noLogin{
+        width: 68px;
+        height: 68px;
+      }
     }
     .nickName{
       padding-left: 19px;
@@ -53,6 +61,7 @@
       align-items: center;
       margin-bottom: 64px;
       .block{
+        display: inline-table;
         width: 29px;
         height: 28px;
         .top{

+ 2 - 2
src/utils/config.js

@@ -1,3 +1,3 @@
-export const resourceAddress = 'http://172.16.0.188:3000/upload/'
-// export const resourceAddress = 'http://kedejs.jishutao.com//upload/'
+// export const resourceAddress = 'http://172.16.0.188:3000/upload'
+export const resourceAddress = 'http://kedejs.jishutao.com/upload'
 

+ 18 - 1
src/utils/servers/interceptors.js

@@ -10,7 +10,24 @@ const customInterceptor = (chain) => {
     console.log(res,'proceed')
     // 只要请求成功,不管返回什么状态码,都走这个回调
     if (res.statusCode === HTTP_STATUS.NOT_FOUND) {
-      return Promise.reject("请求资源不存在")
+      return {
+        error: [
+          {
+            message:'请求资源不存在,请重试',
+            start: 404
+          }
+        ]
+      }
+
+    } else if (res.statusCode === HTTP_STATUS.SERVER_ERROR) {
+      return {
+        error: [
+          {
+            message:'系统错误,请稍后再试',
+            start: 500
+          }
+        ]
+      }
 
     } else if (res.statusCode === HTTP_STATUS.BAD_GATEWAY) {
       return Promise.reject("服务端出现了问题")

+ 5 - 0
src/utils/servers/servers.js

@@ -32,6 +32,11 @@ export const getSelectProject = (postData) => {
   return HTTPREQUEST.get('/open/selectProject', postData)
 }
 
+//微信订单查询
+export const wxQuery = (postData) => {
+  return HTTPREQUEST.get('/api/user/wxQuery', postData)
+}
+
 //测试
 export const test = (postData) => {
   return HTTPREQUEST.get('/open/test', postData)

+ 30 - 27
src/utils/servers/utils.js

@@ -11,31 +11,34 @@ export const getCurrentPageUrl = () => {
 };
 
 export const pageToLogin = async () => {
-  let path = getCurrentPageUrl()
-  if (!path.includes('login')) {
-    setTimeout(async ()=>{
-      Taro.showLoading({title: '重新登录中...',})
-      setTimeout(async ()=>{
-        let loginMsg = await Taro.login();
-        if (loginMsg.code) {
-          try{
-            let msg = await login({code:loginMsg.code});
-            if(msg.error.length === 0){
-              Taro.setStorageSync('token', msg.token);
-              Taro.showToast({title:'登录成功',icon:'success'});
-              Taro.startPullDownRefresh();
-            }else{
-              Taro.showToast({title:msg.error[0].message,icon:'none'})
-            }
-          }catch (err) {
-            Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
-          }
-        } else {
-          Taro.showToast({title:loginMsg.errMsg,icon:'none'})
-        }
-        Taro.hideLoading();
-      },800)
-    },800)
-
-  }
+  // let path = getCurrentPageUrl()
+  Taro.switchTab({
+    url: '/pages/user/index'
+  })
+  // if (!path.includes('login')) {
+  //   setTimeout(async ()=>{
+  //     Taro.showLoading({title: '重新登录中...',})
+  //     setTimeout(async ()=>{
+  //       let loginMsg = await Taro.login();
+  //       if (loginMsg.code) {
+  //         try{
+  //           let msg = await login({code:loginMsg.code});
+  //           if(msg.error.length === 0){
+  //             Taro.setStorageSync('token', msg.token);
+  //             Taro.showToast({title:'登录成功',icon:'success'});
+  //             Taro.startPullDownRefresh();
+  //           }else{
+  //             Taro.showToast({title:msg.error[0].message,icon:'none'})
+  //           }
+  //         }catch (err) {
+  //           Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
+  //         }
+  //       } else {
+  //         Taro.showToast({title:loginMsg.errMsg,icon:'none'})
+  //       }
+  //       Taro.hideLoading();
+  //     },800)
+  //   },800)
+  //
+  // }
 }