123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- import React, { Component } from 'react'
- import { connect } from 'react-redux'
- import { Input, Textarea, View, Text, Picker, Button } from '@tarojs/components'
- import { AtTextarea } from "taro-ui";
- import Taro, { getCurrentInstance } from '@tarojs/taro';
- import dayjs from 'dayjs';
- import Skeleton from 'taro-skeleton'
- import ImagePicker from '../../components/common/imagePicker';
- import { updateRecord, recordDetails, myDuration, myDurationMonth } from '../../utils/servers/servers';
- import { resourceAddress } from "../../utils/config";
- import { stageList } from '../../utils/tools/config';
- import './index.less';
- // import '../punchClock/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";
- class ReClockin extends Component {
- $instance = getCurrentInstance();
- constructor(props) {
- super(props);
- this.state = {
- imgs: [],
- loading: false,
- selector: stageList,
- dateSel: "",
- duration: "",
- hours: 0,
- selectorChecked: {},
- content: "",
- data: {},
- isOpened: false,
- dateList: [],
- year: 2000,
- month: 1,
- date: 1,
- }
- this.onChange = this.onChange.bind(this);
- this.updateRecordClockIn = this.updateRecordClockIn.bind(this);
- this.onSelectDate = this.onSelectDate.bind(this);
- this.onChangeDate = this.onChangeDate.bind(this);
- this.onMyDurationMonth = this.onMyDurationMonth.bind(this);
- this.onmyDuration = this.onmyDuration.bind(this);
- }
- componentDidMount() {
- this.getReleasetDails();
- }
- componentWillMount() {
- }
- componentDidHide() {
- }
- // 剩余打卡时间
- onmyDuration(id, recordTime) {
- myDuration({
- id,
- recordTime
- }).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(id, time) {
- myDurationMonth({
- id,
- year: time.year,
- month: time.month,
- }).then(v => {
- if (v.code === 200) {
- this.setState({
- dateList: v.data,
- })
- } else {
- Taro.showToast({ title: v.msg, icon: 'none' })
- }
- }).catch(() => {
- Taro.showToast({
- title: '系统错误,请稍后再试',
- icon: 'none'
- })
- })
- }
- // 项目详情
- getReleasetDails() {
- recordDetails({
- id: this.$instance.router.params.id,
- }).then((v) => {
- if (v.code === 200) {
- if (v.data) {
- let list = [];
- for (let i of (v.data.annexUrl || '').split(',')) {
- if (i) {
- list.push({ 'url': resourceAddress + i })
- }
- }
- this.onmyDuration(v.data.pid, v.data.recordTime)
- let date = dayjs(v.data.recordTime)
- this.onMyDurationMonth(v.data.pid, { year: date.year(), month: date.month() + 1 })
- this.setState({
- year: date.year(),
- month: date.month() + 1,
- date: date.date(),
- data: v.data,
- pid: v.data.pid,
- imgs: list,
- dateSel: v.data.recordTime,
- selectorChecked: this.state.selector[v.data.projectStatus],
- duration: v.data.duration,
- content: v.data.content,
- processStatus: v.data.processStatus,
- recordTime: v.data.recordTime,
- isOpened: true,
- }, () => {
- })
- }
- } else {
- Taro.showToast({ title: v.msg, icon: "none" });
- }
- }).catch((err) => {
- 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,
- });
- }
- updateRecordClockIn() {
- let arr = []
- for (let i of this.state.imgs) {
- if (!!i.url) {
- arr.push(i.url.split(resourceAddress).join(""));
- } else {
- arr.push(i)
- }
- }
- if (!this.state.dateSel) {
- Taro.showToast({ title: '请选择研发时间!', icon: 'none' });
- return
- }
- if (!this.state.duration) {
- Taro.showToast({ title: '请填写工时!', icon: 'none' });
- return
- }
- if (!this.state.selectorChecked) {
- Taro.showToast({ title: '请选择研发阶段!', icon: 'none' });
- return
- }
- Taro.showLoading({ title: '打卡中...' });
- updateRecord({
- id: this.$instance.router.params.id,
- pid: this.state.data.pid,
- projectStatus: this.state.selectorChecked.value,
- duration: this.state.duration,
- content: this.state.content,
- annexUrl: arr.join(','),
- processStatus: 1,
- recordTime: this.state.dateSel,
- }).then(v => {
- Taro.hideLoading()
- if (v.code === 200) {
- Taro.showToast({ title: '打卡成功', icon: 'none' });
- Taro.navigateBack({ delta: 1 });
- } else {
- Taro.showToast({ title: v.msg, icon: 'none' })
- }
- }).catch(() => {
- Taro.hideLoading()
- Taro.showToast({
- title: '系统错误,请稍后再试',
- icon: 'none'
- })
- })
- }
- onSelectDate(val) {
- let data = val.detail;
- this.setState({
- dateSel: data
- }, () => {
- this.onmyDuration(this.state.pid, data)
- })
- }
- onChangeDate(val) {
- let data = val.detail;
- !!this.state.pid && this.onMyDurationMonth(this.state.pid, data)
- }
- render() {
- const { data, dateList } = this.state;
- return (
- <View className='punchClock'>
- <View className='header'>
- <Skeleton
- title
- avatar
- row={2}
- animateName='elastic'
- avatarShape='square'
- loading={this.state.loading}
- >
- <View className='headerContent'>
- <View className='item' style={{ width: "100%", display: "flex", flexDirection: "row", JustifyContent: "space-between" }}>
- <View className="item_name">{data.name}</View>
- {/* <AtButton type="primary" size="small"
- onClick={() => {
- Taro.switchTab({
- url: "/pages/project/index",
- });
- }}>切换</AtButton> */}
- </View>
- <View className='item'>
- <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发时间:
- {/* <Picker mode='date'
- onChange={e => {
- this.setState({
- dateSel: e.detail.value
- })
- }}>
- <View className='picker'>
- {!!this.state.dateSel ? this.state.dateSel : "请选择"}
- </View>
- </Picker> */}
- <View className='picker'>
- {this.state.dateSel}
- </View>
- </View>
- </View>
- {
- this.state.isOpened &&
- <calendar
- use_date_arr={dateList}
- year={this.state.year}
- month={this.state.month}
- nowYear={this.state.year}
- nowMonth={this.state.month}
- nowDay={this.state.date}
- onselectdate={(v) => {
- this.onSelectDate(v)
- }}
- onchangedate={(v) => {
- this.onChangeDate(v)
- }}
- />
- }
- <View className='items'>
- <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发工时:
- <Input value={this.state.duration} type='digit' className='input' placeholder='请输入'
- style={{ textAlign: "center", background: "#F5F5F5", borderRadius: "15px", padding: "3px 5px" }}
- onInput={e => {
- this.setState({
- duration: e.detail.value
- })
- }}
- /> 小时
- <Text style={{ color: "red", fontSize: "15px" }}>剩余打卡({this.state.hours}h)</Text>
- </View>
- </View>
- <View className='item'>
- <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发阶段:
- <Picker mode='selector' range={this.state.selector} rangeKey="lable"
- value={this.state.selectorChecked.value}
- onChange={e => {
- this.setState({
- selectorChecked: this.state.selector[e.detail.value]
- })
- }}>
- <View className='picker'>
- {!!this.state.selectorChecked ? this.state.selectorChecked.lable : "请选择"}
- </View>
- </Picker>
- </View>
- </View>
- <View className='items'>
- <View className='ititles'><Text style={{ width: "7px" }}></Text>研发记录:
- <AtTextarea
- value={this.state.content}
- onChange={value => {
- this.setState({
- content: value,
- });
- }}
- maxLength={500}
- placeholder="请填写研发过程记录"
- />
- {/* <Textarea
- value={this.state.content}
- style='background:#D7D7D7;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px;border-radius: 10px' autoHeight
- onInput={e => {
- this.setState({
- content: e.detail.value
- })
- }}
- /> */}
- </View>
- </View>
- <View className='items'>
- <View className='ititles'><Text style={{ width: "7px" }}></Text>上传附件:</View>
- {this.state.isOpened &&
- <ImagePicker
- showAddBtn
- files={this.state.imgs}
- ref={(ref) => (this.imagePickerRef = ref)}
- url="/api/project/upload"
- onChange={this.onChange}
- />}
- <View>
- <Text className='text'>注:包括研发日志、实验报告、实验记录、检测报告、会议纪要、会议照片等</Text>
- </View>
- </View>
- <View className='content'>
- <View className='punchClockContent'
- onClick={this.updateRecordClockIn}
- style={{
- boxShadow: '1px 1px 15px 1px #acb8ad',
- background: '#009DD9',
- }}>
- <View className='punchClockTitle'>重新打卡</View>
- </View>
- </View>
- </View>
- </Skeleton>
- </View>
- </View>
- )
- }
- }
- export default ReClockin
|