HW пре 3 година
родитељ
комит
45a4469805

+ 6 - 3
src/pages/applyDepart/index.jsx

@@ -46,6 +46,7 @@ class ApplyDepart extends Component {
       selectArrderLocation:{},
       resultState:0,
       resultId:'',
+      punchClockInfor:{}
     }
   }
 
@@ -60,7 +61,8 @@ class ApplyDepart extends Component {
       this.setState({
         current:2,
         resultState:arg.code,
-        resultId:arg.id
+        resultId:arg.data.id,
+        punchClockInfor:arg.data,
       })
     })
     Taro.eventCenter.on('enterpriseBack', () => {
@@ -74,7 +76,8 @@ class ApplyDepart extends Component {
         enterpriseInfor:{},
         selectArrderLocation:{},
         resultState:0,
-        resultId:''
+        resultId:'',
+        punchClockInfor:{}
       })
     })
     //获取地区选定数据
@@ -115,7 +118,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} resultId={this.state.resultId}/>
+              <Result resultState={this.state.resultState} resultId={this.state.resultId} punchClockInfor={this.state.punchClockInfor}/>
             </View>
           </View>
         </View>

+ 2 - 2
src/pages/applyDepart/index.less

@@ -50,8 +50,8 @@
     display: flex;
     flex-flow: row nowrap;
     align-items: center;
-    justify-content: center;
+    justify-content: space-between;
     margin-top: auto;
-    width: 60%;
+    width: 100%;
   }
 }

+ 34 - 21
src/pages/applyDepart/result.jsx

@@ -8,44 +8,57 @@ class Result extends Component{
   constructor(props) {
     super(props);
     this.determine= this.determine.bind(this);
+    this.punchClock= this.punchClock.bind(this);
   }
 
   determine(){
     Taro.eventCenter.trigger('result')
   }
 
+  punchClock(e){
+    e.stopPropagation();
+    Taro.eventCenter.trigger('GoPunchIn',this.props.punchClockInfor)
+    Taro.switchTab({
+      url: '/pages/punchClock/index',
+    })
+
+  }
+
   render() {
     return(
       <View className='result'>
         <View className='resultIcon'>
-          {
-            this.props.resultState === 0 ?
-              <Icon size='80' type='success' /> :
-              this.props.resultState === 43101 ?
-                <Icon size='80' type='info' /> :
-                <Icon size='80' type='warn' />
-          }
+          {/*{*/}
+          {/*  this.props.resultState === 0 ?*/}
+          {/*    <Icon size='80' type='success' /> :*/}
+          {/*    this.props.resultState === 43101 ?*/}
+          {/*      <Icon size='80' type='info' /> :*/}
+          {/*      <Icon size='80' type='warn' />*/}
+          {/*}*/}
+          <Icon size='80' type='success' />
         </View>
         <View className='resultTitle'>
-          {
-            this.props.resultState === 0 ?
-              '申请成功,已通知上级审核' :
-              this.props.resultState === 43101 || this.props.resultState === 2 || this.props.resultState === 40003 ?
-                '申请成功,上级未打开消息通知,请联系您的上级' :
-                this.props.resultState === 41030 || this.props.resultState === 47003 || this.props.resultState === 40037 ?
-                  '申请成功,消息发送失败,请联系管理员':
-                    '申请成功,消息发送失败'
-          }
-          {
-            this.props.resultState !== 0 && this.props.resultState !== 43101 && this.props.resultState !== 2 && this.props.resultState !== 40003 ?
-              <View className='resultError'>错误编码:{this.props.resultState}</View>:null
-          }
+          <View>申请成功,可以打卡了!</View>
+          <View className='resultError'>
+            {
+              this.props.resultState === 0 ?
+                '' :
+                this.props.resultState === 43101 || this.props.resultState === 2 || this.props.resultState === 40003 ?
+                  ('您可以联系上级审核' + '(' +this.props.resultState + ')') :
+                  this.props.resultState === 41030 || this.props.resultState === 47003 || this.props.resultState === 40037 ?
+                    ('您可以联系上级审核' + '(' +this.props.resultState + ')'):
+                    ('您可以联系上级审核' + '(' +this.props.resultState + ')')
+            }
+          </View>
         </View>
         <View className='resultOperation'>
           <AtButton circle onClick={this.determine}>
             再次发起
           </AtButton>
-          <AtButton type='primary' circle onClick={()=>{
+          <AtButton circle type='primary' onClick={this.punchClock}>
+            前往打卡
+          </AtButton>
+          <AtButton type='secondary' circle onClick={()=>{
             Taro.navigateTo({
               url:'/pages/egressDetails/index?id='+this.props.resultId
             })

+ 1 - 0
src/pages/egressDetails/enterprise.jsx

@@ -103,6 +103,7 @@ class Enterprise extends Component{
         <AtSearchBar
           showActionButton
           value={this.state.value}
+          placeholder='请输入公出企业名称'
           onChange={this.onChange}
           onActionClick={()=>{this.onChange(this.state.value,false)}}
           onConfirm={()=>{this.onChange(this.state.value,false)}}

+ 2 - 1
src/utils/config.js

@@ -1,3 +1,4 @@
-// export const resourceAddress = 'http://172.16.0.255:3000/upload'
+// export const resourceAddress = 'http://172.16.0.255:3000/upload;'
 export const resourceAddress = 'https://s.jishutao.com/upload';
+// export const resourceAddress = 'https://static.jishutao.com/upload';
 

+ 4 - 0
src/utils/servers/baseUrl.js

@@ -2,9 +2,13 @@ const getBaseUrl = (url) => {
   let BASE_URL = '';
   if (process.env.NODE_ENV === 'development') {
     //开发环境 - 根据请求不同返回不同的BASE_URL
+    // BASE_URL = 'http://172.16.0.255:8080'
+    // BASE_URL = 'https://uat.jishutao.com'
     BASE_URL = 'https://bm.jishutao.com'
   } else {
     // 生产环境
+    // BASE_URL = 'http://172.16.0.255:8080'
+    // BASE_URL = 'https://uat.jishutao.com'
     BASE_URL = 'https://bm.jishutao.com'
   }
   return BASE_URL