index.jsx 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. import React, { Component } from "react";
  2. import PunchClocks from './punchClocks';
  3. import MessageNoticebar from "../../components/common/messageNoticebar";
  4. import { AtModal, } from "taro-ui"
  5. import Taro from "@tarojs/taro";
  6. import { updateLocation } from '../../utils/servers/servers';
  7. class PunchClock extends Component {
  8. constructor(props) {
  9. super(props);
  10. this.state = {
  11. data: {},
  12. isOpened: false,
  13. isHome: false,
  14. }
  15. this.onClose = this.onClose.bind(this);
  16. this.handleConfirm = this.handleConfirm.bind(this);
  17. }
  18. componentDidShow() {
  19. if (this.state.isHome) {
  20. Taro.eventCenter.trigger('punchClockComponentDidShow');
  21. //获取地区选定数据
  22. const chooseLocation = requirePlugin("chooseLocation");
  23. const location = chooseLocation.getLocation();
  24. if (location) {
  25. this.setState({
  26. data: location,
  27. isOpened: true
  28. })
  29. // 清除数据
  30. chooseLocation.setLocation(null);
  31. }
  32. }
  33. }
  34. onClose() {
  35. this.setState({
  36. data: {},
  37. isOpened: false,
  38. isHome: false,
  39. })
  40. }
  41. getId(id, uid) {
  42. this.setState({ id, uid })
  43. }
  44. // 判断是否是首页打卡切换位置
  45. getHome() {
  46. this.setState({ isHome: true })
  47. }
  48. handleConfirm() {
  49. const { id, uid, data } = this.state
  50. updateLocation({
  51. id,
  52. uid,
  53. longitude: data.longitude,
  54. latitude: data.latitude,
  55. districtName: data.name,
  56. }).then(v => {
  57. this.onClose()
  58. Taro.hideLoading()
  59. if (v.error.length === 0) {
  60. Taro.showToast({ title: '打卡位置已更新', icon: 'none' });
  61. } else {
  62. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  63. }
  64. }).catch(() => {
  65. this.onClose()
  66. Taro.hideLoading()
  67. Taro.showToast({
  68. title: '系统错误,请稍后再试',
  69. icon: 'none'
  70. })
  71. })
  72. }
  73. componentDidMount() {
  74. Taro.eventCenter.trigger('GoPuncsshIn', { data: 'unread' })
  75. }
  76. render() {
  77. return (
  78. <>
  79. <MessageNoticebar />
  80. {
  81. // 刷新打卡页
  82. !this.state.isOpened && <PunchClocks getId={this.getId.bind(this)} getHome={this.getHome.bind(this)} />
  83. }
  84. <AtModal
  85. isOpened={this.state.isOpened}
  86. title='提示'
  87. cancelText='取消'
  88. confirmText='确认'
  89. onClose={this.onClose}
  90. onCancel={this.onClose}
  91. onConfirm={this.handleConfirm}
  92. content='您确定是否切换位置?切换位置,将重新提交“公出审核”,如您的公出审核已通过,则需再次审核。'
  93. />
  94. </>
  95. )
  96. }
  97. }
  98. export default PunchClock;