punchClocks.jsx 25 KB

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