punchClocks.jsx 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. import React, { Component } from 'react'
  2. import { connect } from 'react-redux'
  3. import { Map, OpenData, View, Image, Text, Button } from '@tarojs/components'
  4. import Taro from '@tarojs/taro';
  5. import { AtIcon, AtModal, AtModalContent, AtModalAction, AtTextarea } from "taro-ui";
  6. import dayjs from 'dayjs';
  7. import Skeleton from 'taro-skeleton'
  8. import HistoricalClock from '../../components/historicalClock';
  9. import ImagePicker from '../../components/common/imagePicker';
  10. import { add, minus, asyncAdd } from '../../actions/counter'
  11. import { getPublicReleaseList, publicReleaseClockIn, getPunchClockInfo } from '../../utils/servers/servers';
  12. import './index.less'
  13. import switchIocn from '../../image/switch.png';
  14. import Location from '../../image/location.png';
  15. import PunchRange from '../../image/punchRange.png';
  16. import 'taro-ui/dist/style/components/noticebar.scss';
  17. import 'taro-ui/dist/style/components/icon.scss';
  18. import 'taro-ui/dist/style/components/list.scss';
  19. import { getClockState } from "../../utils/tools";
  20. const QQMapWX = require('../../components/common/mapSDK/qqmap-wx-jssdk.min.js');
  21. @connect(({ counter }) => ({
  22. counter
  23. }), (dispatch) => ({
  24. add() {
  25. dispatch(add())
  26. },
  27. dec() {
  28. dispatch(minus())
  29. },
  30. asyncAdd() {
  31. dispatch(asyncAdd())
  32. }
  33. }))
  34. class PunchClocks extends Component {
  35. constructor(props) {
  36. super(props);
  37. this.state = {
  38. imgs: [],
  39. nowTime: '00:00:00',
  40. newArrder: {},
  41. addressLatitude: '',
  42. addressLongitude: '',
  43. distance: '',
  44. dtails: {},
  45. loading: true,
  46. isAbnormalOpen: false,
  47. clockInRemarks: "",//打卡说明
  48. }
  49. this.onChange = this.onChange.bind(this);
  50. this.getSpacing = this.getSpacing.bind(this);
  51. this.getData = this.getData.bind(this);
  52. this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
  53. this.abnormalClockIn = this.abnormalClockIn.bind(this);
  54. this.refresh = this.refresh.bind(this);
  55. this.getDtails = this.getDtails.bind(this);
  56. }
  57. nowTime = null;
  58. wxConfig = null;
  59. mapCtx = Taro.createMapContext('map');
  60. qqmapsdk = new QQMapWX({
  61. key: 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'
  62. });
  63. componentDidMount() {
  64. this.getDtails();
  65. }
  66. getDtails() {
  67. this.getData(() => {
  68. Taro.startLocationUpdate({
  69. success: () => {
  70. Taro.onLocationChange((v) => {
  71. this.getSpacing(v.latitude, v.longitude)
  72. })
  73. },
  74. fail: (err) => {
  75. Taro.getSetting({
  76. success: (res) => {
  77. if (!res.authSetting['scope.userLocation']) {
  78. Taro.authorize({
  79. scope: 'scope.userLocation',
  80. success: () => {
  81. },
  82. fail: () => {
  83. this.setState({
  84. isOpened: true
  85. })
  86. }
  87. })
  88. }
  89. }
  90. })
  91. this.setState({
  92. loading: false
  93. })
  94. }
  95. })
  96. });
  97. }
  98. componentWillMount() {
  99. this.wxConfig = Taro.getStorageSync('wxConfig');
  100. //获得当前位置
  101. Taro.getLocation({
  102. type: 'gcj02',
  103. isHighAccuracy: true,
  104. success: (res) => {
  105. const latitude = res.latitude
  106. const longitude = res.longitude
  107. this.setState({
  108. newArrder: {
  109. latitude,
  110. longitude
  111. },
  112. })
  113. }
  114. })
  115. this.nowTime = setInterval(() => {
  116. this.setState({
  117. nowTime: dayjs().format('HH:mm:ss')
  118. })
  119. }, 1000)
  120. Taro.eventCenter.on('punchClockComponentDidShow', () => {
  121. if (Object.keys(this.state.dtails).length === 0) {
  122. this.getDtails();
  123. }
  124. })
  125. Taro.eventCenter.on('GoPunchIn', (arg) => {
  126. this.setState({
  127. dtails: arg,
  128. addressLatitude: parseFloat(arg.latitude),
  129. addressLongitude: parseFloat(arg.longitude),
  130. }, () => {
  131. Taro.showToast({ title: '切换成功' });
  132. Taro.startLocationUpdate({
  133. success: () => {
  134. Taro.onLocationChange((v) => {
  135. this.getSpacing(v.latitude, v.longitude)
  136. })
  137. },
  138. fail: () => {
  139. this.setState({
  140. loading: false
  141. })
  142. }
  143. })
  144. })
  145. })
  146. }
  147. componentDidHide() {
  148. Taro.offLocationChange();
  149. this.nowTime && this.nowTime.clearTimeout();
  150. }
  151. // 正常打卡
  152. publicReleaseClockIn() {
  153. if (this.state.dtails.status === 3) {
  154. Taro.hideLoading()
  155. Taro.showToast({ title: '申请已撤销,无法打卡', icon: 'none' });
  156. return;
  157. }
  158. if (Object.keys(this.state.dtails).length === 0) {
  159. Taro.hideLoading()
  160. Taro.showToast({ title: '暂无公出申请,无法打卡', icon: 'none' });
  161. return;
  162. }
  163. if (isNaN(parseInt(this.state.distance))) {
  164. Taro.hideLoading()
  165. Taro.showToast({ title: '定位错误,请联系管理员', icon: 'none' })
  166. return;
  167. }
  168. if (dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) {
  169. Taro.hideLoading()
  170. Taro.showToast({ title: '当前时间不在打卡时间范围内,无法打卡', icon: 'none' })
  171. return;
  172. }
  173. if (!(this.state.distance <= this.wxConfig.clockInRange && this.state.distance >= 0)) {
  174. Taro.hideLoading()
  175. Taro.showToast({ title: '当前位置未处于可打卡范围,无法打卡', icon: 'none' })
  176. return;
  177. }
  178. if (this.state.imgs.length === 0) {
  179. Taro.hideLoading()
  180. Taro.showToast({ title: '请上传打卡照片', icon: 'none' })
  181. return;
  182. }
  183. publicReleaseClockIn({
  184. id: this.state.dtails.id,
  185. photoUrl: this.state.imgs.join(','),
  186. clockIn: 1,
  187. }).then(v => {
  188. Taro.hideLoading()
  189. if (v.error.length === 0) {
  190. Taro.showToast({ title: '打卡成功', icon: 'none' });
  191. this.imagePicker.clear();
  192. this.state.dtails.clockIn = 1;
  193. this.setState({
  194. dtails: this.state.dtails,
  195. imgs: []
  196. })
  197. } else {
  198. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  199. }
  200. }).catch(() => {
  201. Taro.hideLoading()
  202. Taro.showToast({
  203. title: '系统错误,请稍后再试',
  204. icon: 'none'
  205. })
  206. })
  207. }
  208. // 异常打卡
  209. abnormalClockIn() {
  210. if (!this.state.clockInRemarks) {
  211. Taro.showToast({ title: '请填写异常打卡原因!', icon: 'none' })
  212. return;
  213. }
  214. Taro.showLoading({ title: '正在提交...' });
  215. publicReleaseClockIn({
  216. id: this.state.dtails.id,
  217. photoUrl: this.state.imgs.join(','),
  218. clockInRemarks: this.state.clockInRemarks,
  219. clockIn: 2,
  220. }).then(v => {
  221. Taro.hideLoading()
  222. if (v.error.length === 0) {
  223. Taro.showToast({ title: '打卡成功', icon: 'none' });
  224. this.imagePicker.clear();
  225. this.state.dtails.clockIn = 2;
  226. this.setState({
  227. dtails: this.state.dtails,
  228. imgs: [],
  229. clockInRemarks: "",
  230. isAbnormalOpen: false,
  231. })
  232. } else {
  233. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  234. }
  235. }).catch(() => {
  236. Taro.hideLoading()
  237. Taro.showToast({
  238. title: '系统错误,请稍后再试',
  239. icon: 'none'
  240. })
  241. })
  242. }
  243. getData(fn) {
  244. this.setState({
  245. loading: true
  246. })
  247. getPunchClockInfo().then(v => {
  248. if (v.error.length === 0) {
  249. this.setState({
  250. loading: false
  251. })
  252. if (v.data) {
  253. this.setState({
  254. dtails: v.data,
  255. addressLatitude: v.data.latitude,
  256. addressLongitude: v.data.longitude,
  257. }, () => {
  258. fn();
  259. })
  260. } else {
  261. this.setState({
  262. dtails: {},
  263. })
  264. }
  265. } else {
  266. this.setState({
  267. loading: false
  268. })
  269. Taro.showToast({
  270. title: v.error[0].message,
  271. icon: 'none'
  272. })
  273. }
  274. })
  275. }
  276. getSpacing(latitude, longitude) {
  277. let _this = this;
  278. this.qqmapsdk.calculateDistance({
  279. mode: 'straight',
  280. from: {
  281. latitude: this.state.addressLatitude,
  282. longitude: this.state.addressLongitude,
  283. },
  284. to: [
  285. {
  286. latitude,
  287. longitude,
  288. }
  289. ],
  290. success: function (res) {//成功后的回调
  291. _this.setState({
  292. distance: res.result.elements[0].distance,
  293. loading: false
  294. })
  295. },
  296. fail: function (error) {
  297. _this.setState({
  298. loading: false
  299. })
  300. console.error(error);
  301. },
  302. complete: function (res) {
  303. }
  304. });
  305. }
  306. onChange(value, type) {
  307. let arr = this.state.imgs.concat([]);
  308. if (type === 'add') {
  309. arr.push(value)
  310. } else if (type === 'remove') {
  311. arr.splice(value, 1)
  312. }
  313. this.setState({
  314. imgs: arr,
  315. })
  316. }
  317. refresh() {
  318. this.getData(() => {
  319. Taro.startLocationUpdate({
  320. success: () => {
  321. Taro.onLocationChange((v) => {
  322. this.getSpacing(v.latitude, v.longitude)
  323. })
  324. }
  325. })
  326. });
  327. }
  328. render() {
  329. const { dtails } = this.state;
  330. return (
  331. <View className='punchClock'>
  332. <View className='header'>
  333. <Skeleton
  334. title
  335. avatar
  336. row={2}
  337. animateName='elastic'
  338. avatarShape='square'
  339. loading={this.state.loading}
  340. >
  341. <View className='headerContent'>
  342. <View className='userAvatarUrl'>
  343. <OpenData type='userAvatarUrl' />
  344. </View>
  345. <View className='infor'>
  346. <View className='name'>
  347. {
  348. Object.keys(this.state.dtails).length <= 0 ?
  349. Taro.getStorageSync('userInfor').name :
  350. dtails.aname
  351. }
  352. </View>
  353. <View className='address'>
  354. 公出企业:
  355. <View className='nickname'>
  356. {
  357. Object.keys(this.state.dtails).length <= 0 ?
  358. '无' :
  359. dtails.nickname
  360. }
  361. </View>
  362. </View>
  363. <View className='types'
  364. style={{ color: ["#1D4FEA", "#1E90FF", "#FF5500", "red"][dtails.type] }}
  365. >
  366. {["业务公出", "技术公出", "行政公出", "技术协单"][dtails.type]}
  367. </View>
  368. </View>
  369. {
  370. Object.keys(this.state.dtails).length <= 0 ?
  371. <View onClick={this.refresh} className='state' style={{
  372. alignSelf: 'center',
  373. textAlign: 'center',
  374. color: '#b6b5b5',
  375. fontSize: '11px'
  376. }}>
  377. <AtIcon value='reload' size='20' />
  378. <View>刷新</View>
  379. </View> :
  380. <View className='state' style={{
  381. color: getClockState(dtails.status).color
  382. }}>
  383. <View style={{ textAlign: 'right' }}>
  384. {
  385. getClockState(dtails.status).title
  386. }
  387. </View>
  388. <View className='switchContent' onClick={() => {
  389. Taro.switchTab({
  390. url: '/pages/mybusiness/index',
  391. })
  392. }}>
  393. <View className='switchTitle'>切换打卡</View>
  394. <Image src={switchIocn} className='switchItem' />
  395. </View>
  396. </View>
  397. }
  398. </View>
  399. </Skeleton>
  400. </View>
  401. {
  402. Object.keys(this.state.dtails).length <= 0 ?
  403. <View className='content'>
  404. <View className='punchClockContent'
  405. onClick={this.publicReleaseClockIn}
  406. style={{
  407. boxShadow: '1px 1px 15px 1px #acb8ad',
  408. background: '#828e83',
  409. marginTop: '85px',
  410. }}>
  411. <View className='punchClockTitle'>公出打卡</View>
  412. <View className='punchClockTime'>{this.state.nowTime}</View>
  413. </View>
  414. <View className='noData'>
  415. <View className='tipsNoData'>
  416. 暂无公出申请
  417. </View>
  418. <View className='goOut' onClick={() => {
  419. Taro.switchTab({
  420. url: '/pages/applyDepart/index',
  421. })
  422. }}>
  423. 点击前往申请公出
  424. </View>
  425. </View>
  426. </View> :
  427. <View>
  428. <View className='content'>
  429. <View className='timeContent'>
  430. <View className='timeItem'>
  431. <View className='timeTitle'>公出开始时间</View>
  432. <View className='timeValue'>{dtails.releaseStarts}</View>
  433. </View>
  434. <View className='timeItem'>
  435. <View className='timeTitle'>公出结束时间</View>
  436. <View className='timeValue'>{dtails.releaseEnds}</View>
  437. </View>
  438. </View>
  439. <View className='photographContent'>
  440. <View className='photographTitle'>打卡拍照<Text className='tips'>〔可以上传多张〕</Text></View>
  441. <AtIcon onClick={() => {
  442. Taro.chooseImage({
  443. count: 1,
  444. sizeType: ['compressed'],
  445. sourceType: ['camera'],
  446. success: (res) => {
  447. // tempFilePath可以作为img标签的src属性显示图片
  448. const tempFilePaths = res.tempFilePaths
  449. this.imagePicker.onImgChange([{ url: tempFilePaths[0] }], 'add', 0, 'camera')
  450. }
  451. })
  452. }} value='camera' size='25' color='#4395ff' />
  453. </View>
  454. <View style={{ alignSelf: 'flex-start', width: '100%' }}>
  455. <ImagePicker ref={ref => this.imagePicker = ref} url='/api/admin/release/upload' showAddBtn={false} onChange={this.onChange} />
  456. </View>
  457. {/* 异常打卡 */}
  458. {
  459. // dtails.type == 3 &&
  460. false &&
  461. <View
  462. className="photographUnusual"
  463. style={{ background: dtails.clockIn === 1 ? "#f69c9f" : "red" }}
  464. onClick={() => {
  465. if (this.state.imgs.length === 0) {
  466. Taro.hideLoading()
  467. Taro.showToast({ title: '请上传打卡照片', icon: 'none' })
  468. return;
  469. }
  470. this.setState({
  471. isAbnormalOpen: true
  472. })
  473. }}
  474. >{(dtails.clockIn === 1 || dtails.clockIn === 2) ? "刷新打卡" : "异常打卡"}</View>
  475. }
  476. <View className='punchClockContent'
  477. onClick={() => {
  478. let _this = this;
  479. Taro.showLoading({ title: '加载中...' })
  480. Taro.getSetting({
  481. success: (res) => {
  482. if (!res.authSetting['scope.userLocation']) {
  483. Taro.authorize({
  484. scope: 'scope.userLocation',
  485. success: () => {
  486. _this.publicReleaseClockIn();
  487. },
  488. fail: () => {
  489. Taro.hideLoading()
  490. this.setState({
  491. isOpened: true
  492. })
  493. }
  494. })
  495. } else {
  496. _this.publicReleaseClockIn();
  497. }
  498. }
  499. })
  500. }}
  501. style={{
  502. boxShadow:
  503. (!isNaN(parseInt(this.state.distance)))
  504. && this.state.distance <= this.wxConfig.clockInRange && this.state.distance >= 0 &&
  505. !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) &&
  506. dtails.status !== 3
  507. ? ((dtails.clockIn === 1 && dtails.clockIn === 2) ? '1px 1px 15px 1px #3f82e8' : '1px 1px 15px 1px #659268') : '1px 1px 15px 1px #828e83',
  508. background: (!isNaN(parseInt(this.state.distance)))
  509. &&
  510. this.state.distance <= this.wxConfig.clockInRange &&
  511. this.state.distance >= 0 &&
  512. !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) &&
  513. dtails.status !== 3
  514. ? ((dtails.clockIn === 1 && dtails.clockIn === 2) ? '#3f82e8' : '#72cb78') : '#828e83'
  515. }}>
  516. <View className='punchClockTitle'>
  517. {
  518. (dtails.clockIn === 1 || dtails.clockIn === 2) ?
  519. '刷新打卡' : '公出打卡'
  520. }
  521. </View>
  522. <View className='punchClockTime'>{this.state.nowTime}</View>
  523. </View>
  524. <View className='map'>
  525. <View className='locationContent'>
  526. <View className='location' onClick={() => {
  527. this.mapCtx.moveToLocation();
  528. }}>
  529. <Image src={Location} className='locationIcon' />
  530. </View>
  531. <View className='punchRange'
  532. onClick={() => {
  533. this.mapCtx.moveToLocation({
  534. latitude: this.state.addressLatitude,
  535. longitude: this.state.addressLongitude,
  536. });
  537. }}>
  538. <Image src={PunchRange} className='punchRangeIcon' />
  539. </View>
  540. </View>
  541. <Map
  542. id='map'
  543. {...this.state.newArrder}
  544. circles={[
  545. {
  546. latitude: this.state.addressLatitude,
  547. longitude: this.state.addressLongitude,
  548. color: '#c92ddc82',
  549. fillColor: '#c92ddc82',
  550. radius: this.wxConfig.clockInRange,
  551. strokeWidth: 1
  552. }
  553. ]}
  554. showLocation
  555. />
  556. </View>
  557. <View className='tips'>紫色区域为可打卡区域</View>
  558. </View>
  559. <View className='content' onClick={() => {
  560. this.setState({
  561. historicalIsOpened: true
  562. })
  563. }}>
  564. <View className='history'>
  565. <View>查看公出申请日志</View>
  566. <AtIcon value='chevron-right' size='20' color='#767272' />
  567. </View>
  568. </View>
  569. </View>
  570. }
  571. <AtModal
  572. isOpened={this.state.isOpened}
  573. title='提醒'
  574. cancelText='取消'
  575. confirmText='确认'
  576. onClose={() => {
  577. this.setState({
  578. isOpened: false,
  579. })
  580. }}
  581. onCancel={() => {
  582. this.setState({
  583. isOpened: false,
  584. })
  585. }}
  586. onConfirm={() => {
  587. this.setState({
  588. isOpened: false,
  589. }, () => {
  590. Taro.openSetting({
  591. success: (value) => {
  592. if (value.authSetting['scope.userLocation']) {
  593. Taro.getLocation({
  594. type: 'gcj02',
  595. isHighAccuracy: true,
  596. success: (res) => {
  597. const latitude = res.latitude
  598. const longitude = res.longitude
  599. this.setState({
  600. newArrder: {
  601. latitude,
  602. longitude
  603. },
  604. })
  605. }
  606. })
  607. this.getDtails();
  608. }
  609. }
  610. })
  611. })
  612. }}
  613. content='您拒绝了定位权限,请先前往设置打开定位权限'
  614. />
  615. {/* 异常打卡原因 */}
  616. {
  617. this.state.isAbnormalOpen &&
  618. <AtModal isOpened={this.state.isAbnormalOpen}>
  619. <AtModalContent>
  620. <AtTextarea
  621. value={this.state.clockInRemarks}
  622. onChange={e => { this.setState({ clockInRemarks: e }) }}
  623. maxLength={200}
  624. placeholder='请填写异常打卡原因~'
  625. />
  626. </AtModalContent>
  627. <AtModalAction>
  628. <Button type='secondary' onClick={() => { this.setState({ isAbnormalOpen: false }) }}>取消</Button>
  629. <Button type='primary' onClick={this.abnormalClockIn}>提交</Button>
  630. </AtModalAction>
  631. </AtModal>
  632. }
  633. {this.state.historicalIsOpened &&
  634. <HistoricalClock
  635. id={dtails.id}
  636. isOpened={this.state.historicalIsOpened}
  637. onClose={() => {
  638. this.setState({
  639. historicalIsOpened: false
  640. })
  641. }}
  642. />}
  643. </View>
  644. )
  645. }
  646. }
  647. export default PunchClocks