import React, { Component } from 'react' import { connect } from 'react-redux' import { Input, View, Text, Picker, Button, Image } from '@tarojs/components' import Taro from '@tarojs/taro'; import { AtButton, AtModal, AtModalContent, AtModalAction, AtTextarea } from "taro-ui"; import dayjs from 'dayjs'; import Skeleton from 'taro-skeleton' import ImagePicker from '../../components/common/imagePicker'; import { add, minus, asyncAdd } from '../../actions/counter' import { recordAdd, myDuration, getInfo, myDurationMonth } from '../../utils/servers/servers'; import Select from "../../image/dui.png"; import { stageList } from '../../utils/tools/config'; import './index.less'; import 'taro-ui/dist/style/components/noticebar.scss'; import 'taro-ui/dist/style/components/icon.scss'; import 'taro-ui/dist/style/components/list.scss'; import "taro-ui/dist/style/components/radio.scss"; import "taro-ui/dist/style/components/icon.scss"; @connect(({ counter }) => ({ counter }), (dispatch) => ({ add() { dispatch(add()) }, dec() { dispatch(minus()) }, asyncAdd() { dispatch(asyncAdd()) } })) class PunchClocks extends Component { constructor(props) { super(props); this.state = { imgs: [], nowTime: '00:00:00', loading: false, selector: stageList, dateSel: dayjs().format('YYYY-MM-DD'), duration: "", hours: 0, selectorChecked: {}, remark: "", data: {}, isOpened: false, clockId: "", dateList: [], isCalendar: true, year: new Date().getFullYear(), month: new Date().getMonth() + 1, day: new Date().getDate(), } this.onChange = this.onChange.bind(this); this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this); this.onClose = this.onClose.bind(this); this.onMyDurationMonth = this.onMyDurationMonth.bind(this); this.onmyDuration = this.onmyDuration.bind(this); } nowTime = null; componentDidMount() { this.props.onRef && this.props.onRef(this); this.imagePickerRef && this.imagePickerRef.clear(); this.getInfo() } getInfo() { getInfo().then(v => { }) } componentWillMount() { const { year, month } = this.state this.nowTime = setInterval(() => { this.setState({ nowTime: dayjs().format('HH:mm:ss') }) }, 1000) Taro.eventCenter.on('GoPunchIn', (arg) => { this.setState({ data: arg, isCalendar: false, }, () => { this.onmyDuration() !!arg.id && this.onMyDurationMonth({ id: arg.id }, { year, month }) }) }) } // 剩余打卡时间 onmyDuration() { if (!this.state.data.id) { return } myDuration({ id: this.state.data.id, recordTime: this.state.dateSel, }).then(v => { if (v.code === 200) { this.setState({ hours: v.data, }) } else { Taro.showToast({ title: v.msg, icon: 'none' }) } }).catch(() => { Taro.showToast({ title: '系统错误,请稍后再试', icon: 'none' }) }) } onMyDurationMonth(val, time) { Taro.showLoading({ title: '加载中...' }); myDurationMonth({ id: val.id, year: time.year, month: time.month, }).then(v => { Taro.hideLoading() if (v.code === 200) { this.setState({ dateList: v.data, isCalendar: true, }) } else { Taro.showToast({ title: v.msg, icon: 'none' }) } }).catch(() => { Taro.hideLoading() Taro.showToast({ title: '系统错误,请稍后再试', icon: 'none' }) }) } onChange(value, type) { let arr = this.state.imgs.concat([]); if (type === "add") { arr.push(value); } else if (type === "remove") { arr.splice(value, 1); } this.setState({ imgs: arr, }); } publicReleaseClockIn() { if (!this.state.dateSel) { Taro.showToast({ title: '请选择研发时间!', icon: 'none' }); return } if (!this.state.duration) { Taro.showToast({ title: '请填写研发工时!', icon: 'none' }); return } if (Object.keys(this.state.selectorChecked).length == 0) { Taro.showToast({ title: '请选择研发阶段!', icon: 'none' }); return } Taro.showLoading({ title: '打卡中...' }); recordAdd({ pid: this.state.data.id, projectStatus: this.state.selectorChecked.value, duration: this.state.duration, content: this.state.remark, annexUrl: this.state.imgs.join(','), processStatus: 1, recordTime: this.state.dateSel, }).then(v => { Taro.hideLoading() if (v.code === 200) { Taro.showToast({ title: '打卡成功', icon: 'none' }); this.setState({ clockId: v.data.id, isOpened: true, isCalendar: false, }) } else { Taro.showToast({ title: v.msg, icon: 'none' }) } }).catch(() => { Taro.hideLoading() Taro.showToast({ title: '系统错误,请稍后再试', icon: 'none' }) }) } onClose() { const { clockId } = this.state this.imagePickerRef && this.imagePickerRef.clear(); this.setState({ dateSel: dayjs().format('YYYY-MM-DD'), year: new Date().getFullYear(), month: new Date().getMonth() + 1, day: new Date().getDate(), duration: "", selectorChecked: {}, remark: "", imgs: [], isOpened: false, isCalendar: true, }) if (!!clockId) { Taro.navigateTo({ url: `/pages/detail/index?id=${clockId}&type=0` }) } } onSelectDate(val) { let data = val.detail; let date = dayjs(data) this.setState({ dateSel: data, year: date.year(), month: date.month() + 1, day: date.date(), }, () => { this.onmyDuration() }) } onChangeDate(val) { let data = val.detail; this.onMyDurationMonth(this.state.data, data) } render() { const { data, dateList, year, month, day } = this.state; return ( { !data.id ? 研发打卡 {this.state.nowTime} {/* 暂无打卡项目 */} { Taro.switchTab({ url: '/pages/project/index', }) }}> 点击前往选择项目 : {data.name} { Taro.switchTab({ url: "/pages/project/index", }); }}>切换 *研发时间: {this.state.dateSel} { this.state.isCalendar && { this.onSelectDate(v) }} onchangedate={(v) => { this.onChangeDate(v) }} /> } *研发工时: { this.setState({ duration: e.detail.value }) }} /> 小时  剩余打卡({this.state.hours}h) *研发阶段: { this.setState({ selectorChecked: this.state.selector[e.detail.value] }) }}> {!!this.state.selectorChecked.lable ? this.state.selectorChecked.lable : "请选择"} 研发记录: { this.setState({ remark: value, }); }} maxLength={500} placeholder="请填写研发过程记录" /> {/*