React封装多个时间段组件--BatchTime组件

本文档介绍了如何在React中封装一个用于处理多个时间段的BatchTime组件,详细阐述了需求背景、组件的具体封装步骤,并提供了组件代码示例,最后展示了如何在项目中调用该组件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、需求

在这里插入图片描述

二、组件封装

BatchTime.js

import React, {
    PureComponent, Fragment } from 'react';
import moment from 'moment';
import {
    Form, Row, Col, TimePicker, Icon, Button, message } from 'antd';
import styles from './index.less';

const FormItem = Form.Item;

// 判断时间段是否有重叠
const isAcrossMethod = (startTimeList, endTimeList) => {
   
  const begin = startTimeList.sort();
  const over = endTimeList.sort();
  for (let i = 1; i < begin.length; i++) {
   
    if (begin[i] <= over[i - 1]) {
   
      return true;
    }
  }
  return false;
};

// 时间段组件

@Form.create()
export default class extends PureComponent {
   
  constructor(props) {
   
    super(props);
    this.state = {
   };
  }

  //时间段,变化
  onTimePickerChange = (id, key, time) => {
   
    const {
    dispatch, timeBar, name, dispatchType } = this.props;
    let nextTimeBar = [];

    if (key == `time_start_${
     id}_${
     name}`) {
   
      nextTimeBar = timeBar.map(item => {
   
        return item.id != id
          ? item
          : {
   
              ...item,
              time_start: time ? moment(time).format('HH:mm') : '',
            };
      });
    } else if (key == `time_end_${
     id}_${
     name
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值