HW 3 éve%!(EXTRA string=óta)
szülő
commit
eb34eafbc0

BIN
src/image/egressSelect.png


BIN
src/image/egressUnSelect.png


BIN
src/image/examineSelect.png


BIN
src/image/examineUnSelect.png


BIN
src/image/passed.png


BIN
src/image/punchClock.png


BIN
src/image/punchClockSelect.png


BIN
src/image/punchClockUnSelect.png


BIN
src/image/rejected.png


BIN
src/image/reviewed.png


BIN
src/image/switch.png


BIN
src/image/wx.png


+ 7 - 4
src/pages/applyDepart/index.jsx

@@ -44,7 +44,8 @@ class ApplyDepart extends Component {
       current:0,
       enterpriseInfor:{},
       selectArrderLocation:{},
-      resultState:0
+      resultState:0,
+      resultId:'',
     }
   }
 
@@ -58,7 +59,8 @@ class ApplyDepart extends Component {
     Taro.eventCenter.on('publicContent', (arg) => {
       this.setState({
         current:2,
-        resultState:arg
+        resultState:arg.code,
+        resultId:arg.id
       })
     })
     Taro.eventCenter.on('enterpriseBack', () => {
@@ -71,7 +73,8 @@ class ApplyDepart extends Component {
         current:0,
         enterpriseInfor:{},
         selectArrderLocation:{},
-        resultState:0
+        resultState:0,
+        resultId:''
       })
     })
     //获取地区选定数据
@@ -106,7 +109,7 @@ class ApplyDepart extends Component {
               <PublicContent enterpriseInfor={this.state.enterpriseInfor} selectArrderLocation={this.state.selectArrderLocation}/>
             </View>
             <View style={{display:this.state.current===2 ? 'block' : 'none'}}>
-              <Result resultState={this.state.resultState}/>
+              <Result resultState={this.state.resultState} resultId={this.state.resultId}/>
             </View>
           </View>
         </View>

+ 4 - 0
src/pages/applyDepart/index.less

@@ -47,6 +47,10 @@
     }
   }
   .resultOperation{
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: center;
+    justify-content: center;
     margin-top: auto;
     width: 60%;
   }

+ 9 - 2
src/pages/applyDepart/result.jsx

@@ -42,8 +42,15 @@ class Result extends Component{
           }
         </View>
         <View className='resultOperation'>
-          <AtButton type='primary' circle onClick={this.determine}>
-            确定
+          <AtButton circle onClick={this.determine}>
+            再次发起
+          </AtButton>
+          <AtButton type='primary' circle onClick={()=>{
+            Taro.navigateTo({
+              url:'/pages/egressDetails/index?id='+this.props.resultId
+            })
+          }}>
+            前往分享
           </AtButton>
         </View>
       </View>

+ 7 - 13
src/pages/egressDetails/enterprise.jsx

@@ -27,10 +27,6 @@ class Enterprise extends Component{
     this.onChange = this.onChange.bind(this);
   }
 
-  componentDidMount() {
-
-  }
-
   onChange (value) {
     this.setState({
       value,
@@ -71,15 +67,13 @@ class Enterprise extends Component{
     })
   }
 
-  componentWillReceiveProps(props){
-    if(!props.isOpened){
-      this.setState({
-        value:'',
-        data:[],
-        listState:'NO_DATA',
-        selectId:0
-      })
-    }
+  componentWillUnmount() {
+    this.setState({
+      value:'',
+      data:[],
+      listState:'NO_DATA',
+      selectId:0
+    })
   }
 
   render() {

+ 61 - 43
src/pages/egressDetails/index.jsx

@@ -18,6 +18,7 @@ import 'taro-ui/dist/style/components/calendar.scss';
 import Rejected from '../../image/rejected.png';
 import Passed from '../../image/passed.png';
 import Reviewed from '../../image/reviewed.png';
+import Wx from '../../image/wx.png';
 import ImagePicker from "../../components/common/imagePicker";
 
 import switchIocn from '../../image/switch.png';
@@ -64,21 +65,34 @@ class EgressDetails extends Component{
       id:this.$instance.router.params.id
     }).then(v=>{
       if(v.error.length === 0){
-        let list = [];
-        for(let i of v.data.annexUrl.split(',')){
-          if(i){
-            list.push({'url':resourceAddress + i})
+        if(v.data){
+          let list = [];
+          for(let i of v.data.annexUrl.split(',')){
+            if(i){
+              list.push({'url':resourceAddress + i})
+            }
           }
+          v.data.annexUrl = list;
+          this.setState({
+            dtails:v.data,
+            selectArrderLocation:{
+              longitude:parseFloat(v.data.longitude),
+              latitude:parseFloat(v.data.latitude),
+              name:v.data.userName
+            }
+          })
+        }else{
+          setTimeout(()=>{
+            Taro.switchTab({
+              url: '/pages/punchClock/index',
+            })
+          },1800)
+          Taro.showToast({
+            title:'您没有权限查看此公出详情',
+            icon:'none',
+            duration:1800,
+          })
         }
-        v.data.annexUrl = list;
-        this.setState({
-          dtails:v.data,
-          selectArrderLocation:{
-            longitude:parseFloat(v.data.longitude),
-            latitude:parseFloat(v.data.latitude),
-            name:v.data.userName
-          }
-        })
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
@@ -105,8 +119,8 @@ class EgressDetails extends Component{
           dtails:this.state.dtails
         })
         Taro.eventCenter.trigger('listOperation',{
-          type:this.$instance.router.params.type,
-          index:this.$instance.router.params.type,
+          type:this.state.dtails.permission,
+          index:this.$instance.router.params.index,
         })
 
       }else{
@@ -148,6 +162,13 @@ class EgressDetails extends Component{
     })
   }
 
+  onShareAppMessage(){
+    return {
+      title: this.state.dtails.aname+ '将要去' + this.state.dtails.userName,
+      path: 'pages/egressDetails/index?id='+this.$instance.router.params.id
+    }
+  }
+
   render() {
     const {dtails} = this.state;
     return (
@@ -156,14 +177,7 @@ class EgressDetails extends Component{
         <View className='titleContent'>
           <View className='title'>{dtails.aname}提交的公出申请</View>
           <View className='address'>
-            {/*<AtIcon value='map-pin' size='15' color='#767272'/>*/}
-            公出企业: {dtails.nickname}
-            {this.$instance.router.params.type === '0' && dtails.status === 0 ? <Image src={switchIocn} className='switchItem' onClick={()=>{
-              this.setState({
-                isModifyOpened:true,
-                modifyType:1,
-              })
-            }}/> : null}
+            申请时间: {dtails.createTimes}
           </View>
           <View className='state' style={{
             color:dtails.status === 0 ? '#f31212' :
@@ -182,22 +196,10 @@ class EgressDetails extends Component{
                 dtails.status === 2 ? Passed : ''} className='startIcon'/>
         </View>
         <View className='valueContent'>
-          {/*<View className='item'>*/}
-          {/*  <View className='title'>公出编号</View>*/}
-          {/*  <View className='value'>20212584646465495462</View>*/}
-          {/*</View>*/}
-          {/*<View className='item'>*/}
-          {/*  <View className='title'>企业类型</View>*/}
-          {/*  <View className='value'>稀有企业</View>*/}
-          {/*</View>*/}
-          {/*<View className='item'>*/}
-          {/*  <View className='title'>审核人</View>*/}
-          {/*  <View className='value'>营销经理</View>*/}
-          {/*</View>*/}
           <View className='item'>
             <View className='title'>
               公出地点:
-              {this.$instance.router.params.type === '0' && dtails.status === 0 ?
+              {dtails.permission === 0 && dtails.status === 0 ?
                 <View className='edit' onClick={()=>{
                   this.setState({
                     isModifyOpened:true,
@@ -253,9 +255,17 @@ class EgressDetails extends Component{
           </AtModal>
           <View className='item'>
             <View className='title'>
-              申请时间
+              公出企业
+              {dtails.permission === 0 && dtails.status === 0 ? <Image src={switchIocn} className='switchItem' onClick={()=>{
+                this.setState({
+                  isModifyOpened:true,
+                  modifyType:1,
+                })
+              }}/> : null}
+            </View>
+            <View className='value'>
+              {dtails.nickname}
             </View>
-            <View className='value'>{dtails.createTimes}</View>
           </View>
           <View className='item'>
             <View className='title'>公出原因</View>
@@ -272,7 +282,7 @@ class EgressDetails extends Component{
             </View>
           </View> : null}
           {
-            this.$instance.router.params.type === '1' && dtails.status === 1 ?
+            dtails.permission === 1 && dtails.status === 1 ?
               <View className='item'>
                 <View className='title'>填写审批意见</View>
                 <AtTextarea
@@ -288,7 +298,7 @@ class EgressDetails extends Component{
               </View> : null
           }
           {
-            this.$instance.router.params.type === '1' && dtails.status === 1 ?
+            dtails.permission === 1 && dtails.status === 1 ?
               <View className='operation'>
                 <AtButton type='secondary' circle loading={this.state.loading} onClick={()=>{
                   this.examinePublicRelease(0);
@@ -310,6 +320,14 @@ class EgressDetails extends Component{
           查看TA的历史记录
           <AtIcon value='chevron-right' size='20' color='#767272'/>
         </View>
+        <View className='valueContent history'>
+          <View className='shareContent'>
+            <Button open-type='share' className='share'>
+              <Image src={Wx} className='shareIcon'/>
+            </Button>
+            <View className='shareTitle'>微信分享</View>
+          </View>
+        </View>
         <AtModal onClose={()=>{
           this.setState({
             isOpened:false
@@ -329,8 +347,8 @@ class EgressDetails extends Component{
             }}>确定</Button>
           </AtModalAction>
         </AtModal>
-        <Modify
-          type={this.$instance.router.params.type}
+        {this.state.isModifyOpened ? <Modify
+          permission={dtails.permission}
           index={this.$instance.router.params.index}
           dtails={dtails}
           locationInfor={this.state.selectArrderLocation}
@@ -349,7 +367,7 @@ class EgressDetails extends Component{
           },()=>{
             this.getReleasetDails();
           })
-        }}/>
+        }}/> : null}
       </View>
     )
   }

+ 32 - 5
src/pages/egressDetails/index.less

@@ -18,11 +18,6 @@
       display: flex;
       flex-flow: row;
       align-items: center;
-      .switchItem{
-        width: 40px;
-        height: 40px;
-        margin-left: 20px;
-      }
     }
     .state{
       font-size: 30px;
@@ -57,6 +52,11 @@
           right: -30px;
           padding: 30px;
         }
+        .switchItem{
+          width: 40px;
+          height: 40px;
+          margin-left: 20px;
+        }
       }
       .value{
         color: #000000;
@@ -112,6 +112,30 @@
         }
       }
     }
+    .shareContent{
+      display: flex;
+      flex-flow: column nowrap;
+      justify-content: center;
+      align-items: center;
+      width: 100%;
+      .share{
+        overflow: visible;
+        width: 100px;
+        height: 100px;
+        padding: 0;
+        border-radius: 161px;
+        background: #0000;
+        .shareIcon{
+          width: 100px;
+          height: 100px;
+        }
+      }
+      .shareTitle{
+        padding-top: 15px;
+        font-size: 19px;
+        color: #767272;
+      }
+    }
   }
   .history{
     display: flex;
@@ -155,4 +179,7 @@
   .at-modal__container{
     width: 718px;
   }
+  button::after{
+    border: 0px !important;
+  }
 }

+ 6 - 8
src/pages/egressDetails/modify.jsx

@@ -31,7 +31,7 @@ class Modify extends Component{
       if(v.error.length === 0){
         Taro.showToast({title:'修改成功'});
         Taro.eventCenter.trigger('listOperation',{
-          type:this.props.type,
+          type:this.props.permission,
           status: 1,
           index:this.props.index
         })
@@ -46,12 +46,10 @@ class Modify extends Component{
 
   }
 
-  componentWillReceiveProps(props){
-    if(!props.isOpened){
-      this.setState({
-        data:{}
-      })
-    }
+  componentWillUnmount() {
+    this.setState({
+      data:{}
+    })
   }
 
   onChange(value){
@@ -68,7 +66,7 @@ class Modify extends Component{
             this.props.modifyType === 1 ?
               <Enterprise isOpened={this.props.isOpened} onChange={this.onChange}/> :
               <PublicContent
-                type={this.props.type}
+                permission={this.props.permission}
                 index={this.props.index}
                 onClose={()=>{
                   this.props.onClose();

+ 32 - 37
src/pages/egressDetails/publicContent.jsx

@@ -40,45 +40,40 @@ class PublicContent extends Component{
     this.onChange = this.onChange.bind(this);
   }
 
-  componentWillReceiveProps(props){
-    if(props.isOpened){
-      this.rangeStartRef.setInitialState({current:props.dtails.releaseStarts})
-      this.rangeEndRef.setInitialState({current:props.dtails.releaseEnds});
-      let arr = [];
-      console.log(props.dtails.annexUrl,'props.dtails.annexUrl')
-      for(let i of props.dtails.annexUrl){
-        arr.push(i.url.split(resourceAddress).join(""))
-      }
-      this.setState({
-        imgs:arr,
-        totalDuration:props.dtails.duration,
-        reason:props.dtails.remarks,
-        validDates:JSON.parse(props.dtails.validDate),
-        rangeEndVal:dayjs(props.dtails.releaseEnds).format('YYYY-MM-DD'),
-        rangeEndMinuteVal: dayjs(props.dtails.releaseEnds).format('YYYY-MM-DD HH:mm:ss'),
-        rangeStartVal:dayjs(props.dtails.releaseStarts).format('YYYY-MM-DD'),
-        rangeStartMinuteVal: dayjs(props.dtails.releaseStarts).format('YYYY-MM-DD HH:mm:ss'),
-      })
-    }else{
-      this.rangeEndRef && this.rangeEndRef.clear();
-      this.rangeStartRef && this.rangeStartRef.clear();
-      this.imagePickerRef && this.imagePickerRef.clear();
-      this.setState({
-        rangeStartVal:'',
-        rangeEndVal:'',
-        rangeEndMinuteVal:'',
-        rangeStartMinuteVal:'',
-        reason:'',
-        imgs:[],
-        validDates:[],
-        totalDuration:0,
-        loading:false,
-      })
+  componentDidMount() {
+    this.rangeStartRef.setInitialState({current:this.props.dtails.releaseStarts})
+    this.rangeEndRef.setInitialState({current:this.props.dtails.releaseEnds});
+    let arr = [];
+    for(let i of this.props.dtails.annexUrl){
+      arr.push(i.url.split(resourceAddress).join(""))
     }
+    this.setState({
+      imgs:arr,
+      totalDuration:this.props.dtails.duration,
+      reason:this.props.dtails.remarks,
+      validDates:JSON.parse(this.props.dtails.validDate),
+      rangeEndVal:dayjs(this.props.dtails.releaseEnds).format('YYYY-MM-DD'),
+      rangeEndMinuteVal: dayjs(this.props.dtails.releaseEnds).format('YYYY-MM-DD HH:mm:ss'),
+      rangeStartVal:dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD'),
+      rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD HH:mm:ss'),
+    })
   }
 
-  componentDidMount() {
-
+  componentWillUnmount() {
+    this.rangeEndRef && this.rangeEndRef.clear();
+    this.rangeStartRef && this.rangeStartRef.clear();
+    this.imagePickerRef && this.imagePickerRef.clear();
+    this.setState({
+      rangeStartVal:'',
+      rangeEndVal:'',
+      rangeEndMinuteVal:'',
+      rangeStartMinuteVal:'',
+      reason:'',
+      imgs:[],
+      validDates:[],
+      totalDuration:0,
+      loading:false,
+    })
   }
 
   getHours(startTime,endTime){
@@ -165,7 +160,7 @@ class PublicContent extends Component{
           title:'修改成功',
         })
         Taro.eventCenter.trigger('listOperation',{
-          type:this.props.type,
+          type:this.props.permission,
           index:this.props.index,
           status: 1,
           userName: this.props.locationInfor.name,

+ 2 - 5
src/pages/examine/index.jsx

@@ -33,21 +33,18 @@ class Examine extends Component {
 
   componentDidShow(){
     Taro.eventCenter.on('listOperation',(data)=>{
-      console.log(data,'data');
-      if(data.type === '1'){
+      if(data.type === 1 && (!isNaN(parseInt(data.index)))){
         let arr = this.state.examinelist.concat([]);
         arr.splice(data.index,1);
         this.setState({
           examinelist:arr
         })
-      }else if(data.type === '0'){
+      }else if(data.type === 0 && (!isNaN(parseInt(data.index)))){
         let arr = this.state.list.concat([]);
         arr[data.index] = {
           ...arr[data.index],
           ...data
         }
-        console.log(arr[data.index],'arr[data.index]')
-        console.log(arr,'this.state.list')
         this.setState({
           list:arr
         })

+ 1 - 3
src/pages/examine/myList.jsx

@@ -5,8 +5,6 @@ import Skeleton from 'taro-skeleton'
 
 import ListBottomStart  from '../../components/common/listBottomStart';
 
-import PunchClock from '../../image/punchClock.png';
-
 import './index.less';
 
 class MyList extends Component {
@@ -36,7 +34,7 @@ class MyList extends Component {
             this.props.list.map((v,k)=>(
               <View key={k} className='item' onClick={()=>{
                 Taro.navigateTo({
-                  url:'/pages/egressDetails/index?type='+this.props.type+'&id='+v.id+'&index='+k
+                  url:'/pages/egressDetails/index?id='+v.id+'&index='+k
                 })
               }}>
                 <View className='infor'>