result.jsx 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import React, { Component } from "react";
  2. import { View, Icon } from '@tarojs/components'
  3. import { AtButton } from "taro-ui";
  4. import './index.less';
  5. import Taro from "@tarojs/taro";
  6. class Result extends Component {
  7. constructor(props) {
  8. super(props);
  9. this.determine = this.determine.bind(this);
  10. this.punchClock = this.punchClock.bind(this);
  11. }
  12. determine() {
  13. Taro.eventCenter.trigger('result')
  14. }
  15. punchClock(e) {
  16. e.stopPropagation();
  17. Taro.eventCenter.trigger('GoPunchIn', this.props.punchClockInfor)
  18. Taro.switchTab({
  19. url: '/pages/punchClock/index',
  20. })
  21. }
  22. render() {
  23. return (
  24. <View className='result'>
  25. <View className='resultIcon'>
  26. {
  27. this.props.isShow
  28. ? <Icon size='80' type='warn' color='#ff9900' />
  29. : <Icon size='80' type='success' />
  30. }
  31. </View>
  32. <View className='resultTitle'>
  33. <View>申请成功{!this.props.isShow && ",可以打卡了!"}</View>
  34. {
  35. !this.props.isShow &&
  36. <View className='resultError'>
  37. {
  38. this.props.resultState === 0 ?
  39. '' :
  40. this.props.resultState === 43101 || this.props.resultState === 2 || this.props.resultState === 40003 ?
  41. ('您可以联系上级审核' + '(' + this.props.resultState + ')') :
  42. this.props.resultState === 41030 || this.props.resultState === 47003 || this.props.resultState === 40037 ?
  43. ('您可以联系上级审核' + '(' + this.props.resultState + ')') :
  44. ('您可以联系上级审核' + '(' + this.props.resultState + ')')
  45. }
  46. </View>
  47. }
  48. </View>
  49. {
  50. this.props.isShow && this.props.type != 1 &&
  51. <View className="resultTips">公出他人企业,需跟单人员“
  52. {this.props.tipList.toString()}
  53. ”审核同意,才可以打卡!!!</View>
  54. }
  55. {/* {
  56. this.props.isShow && this.props.type == 1 &&
  57. <View className="resultTips">已发出公出申请!待“
  58. {this.props.tipList.toString()}
  59. ”审核通过,方可打卡!</View>
  60. } */}
  61. <View className='resultOperation'>
  62. <AtButton circle onClick={this.determine}>
  63. 再次发起
  64. </AtButton>
  65. {
  66. (!this.props.isShow || this.props.type == 1) &&
  67. <AtButton circle type='primary' onClick={this.punchClock}>
  68. 前往打卡
  69. </AtButton>
  70. }
  71. <AtButton type='secondary' circle onClick={() => {
  72. Taro.navigateTo({
  73. url: '/pages/egressDetails/index?id=' + this.props.resultId
  74. })
  75. }}>
  76. 前往分享
  77. </AtButton>
  78. </View>
  79. </View>
  80. )
  81. }
  82. }
  83. export default Result;