HW 3 years ago
parent
commit
b5e9d1bba7
50 changed files with 4671 additions and 13 deletions
  1. 28 4
      src/app.config.js
  2. 48 0
      src/components/common/listBottomStart/index.jsx
  3. 34 0
      src/components/common/listBottomStart/index.less
  4. 30 0
      src/components/common/userFloatingLayer/index.jsx
  5. 33 0
      src/components/common/userFloatingLayer/index.less
  6. 1 0
      src/components/common/wPicker/areadata/areadata.js
  7. 904 0
      src/components/common/wPicker/datePicker/index.js
  8. 26 0
      src/components/common/wPicker/datePicker/index.scss
  9. 398 0
      src/components/common/wPicker/halfPicker/index.js
  10. 26 0
      src/components/common/wPicker/halfPicker/index.scss
  11. 263 0
      src/components/common/wPicker/index.js
  12. 69 0
      src/components/common/wPicker/index.less
  13. 313 0
      src/components/common/wPicker/linkagePicker/index.js
  14. 26 0
      src/components/common/wPicker/linkagePicker/index.scss
  15. 422 0
      src/components/common/wPicker/rangePicker/index.js
  16. 26 0
      src/components/common/wPicker/rangePicker/index.scss
  17. 234 0
      src/components/common/wPicker/regionPicker/index.js
  18. 26 0
      src/components/common/wPicker/regionPicker/index.scss
  19. 157 0
      src/components/common/wPicker/selectorPicker/index.js
  20. 26 0
      src/components/common/wPicker/selectorPicker/index.scss
  21. 299 0
      src/components/common/wPicker/shorttermPicker/index.js
  22. 26 0
      src/components/common/wPicker/shorttermPicker/index.scss
  23. 264 0
      src/components/common/wPicker/timePicker/index.js
  24. 26 0
      src/components/common/wPicker/timePicker/index.scss
  25. BIN
      src/image/egressSelect.png
  26. BIN
      src/image/egressUnSelect.png
  27. BIN
      src/image/examineSelect.png
  28. BIN
      src/image/examineUnSelect.png
  29. BIN
      src/image/noData.png
  30. BIN
      src/image/punchClockSelect.png
  31. BIN
      src/image/punchClockUnSelect.png
  32. 109 0
      src/pages/applyDepart/enterprise.jsx
  33. 3 0
      src/pages/applyDepart/index.config.js
  34. 92 0
      src/pages/applyDepart/index.jsx
  35. 8 0
      src/pages/applyDepart/index.less
  36. 108 0
      src/pages/applyDepart/publicContent.jsx
  37. 21 0
      src/pages/applyDepart/publicContent.less
  38. 3 0
      src/pages/examine/index.config.js
  39. 49 0
      src/pages/examine/index.jsx
  40. 0 0
      src/pages/examine/index.less
  41. 0 0
      src/pages/list/index.config.js
  42. 0 0
      src/pages/list/index.jsx
  43. 0 0
      src/pages/list/index.less
  44. 3 3
      src/pages/login/index.jsx
  45. 3 0
      src/pages/punchClock/index.config.js
  46. 49 0
      src/pages/punchClock/index.jsx
  47. 0 0
      src/pages/punchClock/index.less
  48. 2 2
      src/utils/servers/baseUrl.js
  49. 5 0
      src/utils/servers/servers.js
  50. 511 4
      yarn.lock

+ 28 - 4
src/app.config.js

@@ -1,10 +1,34 @@
 export default {
   pages: [
-    'pages/index/index',
-    'pages/login/index',
-    'pages/staffDistribution/index',//员工分布
-    'pages/outdoorActivities/index'//出差申报
+    'pages/applyDepart/index',//申请外出
+    'pages/examine/index',//审核
+    'pages/punchClock/index',//打卡
+    'pages/login/index',//登录
+    // 'pages/staffDistribution/index',//员工分布
+    // 'pages/outdoorActivities/index'//出差申报
   ],
+  tabBar: {
+    list: [{
+      iconPath: './image/punchClockUnSelect.png',
+      selectedIconPath: './image/punchClockSelect.png',
+      pagePath: 'pages/punchClock/index',
+      text: '打卡'
+    }, {
+      iconPath: './image/examineUnSelect.png',
+      selectedIconPath: './image/examineSelect.png',
+      pagePath: 'pages/examine/index',
+      text: '审核'
+    }, {
+      iconPath: './image/egressUnSelect.png',
+      selectedIconPath: './image/egressSelect.png',
+      pagePath: 'pages/applyDepart/index',
+      text: '申请外出'
+    }],
+    'color': '#515151',
+    'selectedColor': '#56abe4',
+    'backgroundColor': '#fff',
+    'borderStyle': 'white'
+  },
   window: {
     backgroundTextStyle: 'light',
     navigationBarBackgroundColor: '#fff',

+ 48 - 0
src/components/common/listBottomStart/index.jsx

@@ -0,0 +1,48 @@
+import React,{Component} from 'react';
+import {Image, View} from '@tarojs/components';
+import { AtActivityIndicator  } from 'taro-ui';
+import 'taro-ui/dist/style/components/icon.scss';
+import 'taro-ui/dist/style/components/divider.scss';
+import 'taro-ui/dist/style/components/icon.scss';
+import './index.less';
+
+import noData from '../../../image/noData.png';
+
+class ListBottomStart extends Component{
+  constructor(props) {
+    super(props);
+  }
+
+  render() {
+    const { state } = this.props;
+    return (
+      <View className='listBottomStartComponent'>
+        {
+          state === 'NO_MORE_DATA' ?
+            <View className='noMoreData'>
+              没有更多了
+            </View>:
+          state === 'RELOAD' ?
+            <View className='reload'>
+              <View>加载失败</View>
+              <View className='operation' onClick={()=>{
+                this.props.reload && this.props.reload();
+              }}>点击重新加载</View>
+            </View>:
+            state === 'LOADING' ?
+              <View>
+                <AtActivityIndicator content='加载中...'/>
+              </View>:
+              state === 'NO_DATA' ?
+                <View className='noData'>
+                  <Image src={noData} className='noDataImg'/>
+                  <View className='noDataTitle'>暂时没有数据</View>
+                </View>
+            : null
+        }
+      </View>
+    )
+  }
+}
+
+export default ListBottomStart;

+ 34 - 0
src/components/common/listBottomStart/index.less

@@ -0,0 +1,34 @@
+.listBottomStartComponent{
+  display: flex;
+  justify-content: center;
+  padding: 10px 0 10px 0;
+  .noMoreData{
+    text-align: center;
+    color: #969696;
+    font-size: 13px;
+  }
+  .reload{
+    display: flex;
+    flex-flow: row nowrap;
+    color: #999999;
+    .operation{
+      padding-left: 15px;
+      color: #4564DC;
+    }
+  }
+  .noData{
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    flex-flow: column nowrap;
+    padding-top: 100px;
+    .noDataImg{
+      width: 200px;
+      height: 200px;
+    }
+    .noDataTitle{
+      color: #969696;
+      padding-top: 20px;
+    }
+  }
+}

+ 30 - 0
src/components/common/userFloatingLayer/index.jsx

@@ -0,0 +1,30 @@
+import React,{Component} from 'react';
+import {Button, View,OpenData} from '@tarojs/components'
+import Taro from '@tarojs/taro';
+import { AtIcon } from 'taro-ui'
+
+import 'taro-ui/dist/style/components/icon.scss';
+
+import './index.less';
+
+class UserFloatingLayer extends Component{
+  constructor(props) {
+    super(props);
+  }
+
+  render() {
+    return(
+      <View className='userFloatingLayer'>
+        <View className='userAvatarUrl'>
+          <OpenData type='userAvatarUrl'/>
+        </View>
+        <View className='userNickName'>
+          <View className='welcome'>欢迎您</View>
+          <OpenData type='userNickName'/>
+        </View>
+      </View>
+    );
+  }
+}
+
+export default UserFloatingLayer;

+ 33 - 0
src/components/common/userFloatingLayer/index.less

@@ -0,0 +1,33 @@
+.userFloatingLayer{
+  position: relative;
+  margin-left: 20px;
+  margin-top: 20px;
+  height: 100px;
+  font-size: 25px;
+  .userAvatarUrl{
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 80px;
+    height: 80px;
+    border-radius: 100px;
+    overflow: hidden;
+    border: 1px #FFFFFF solid;
+  }
+  .userNickName{
+    position: absolute;
+    z-index: -1;
+    top: 0;
+    left: 20px;
+    padding: 20px 30px 20px 80px;
+    height: 40px;
+    background: #56abe4;
+    border-radius: 115px;
+    color: #FFFFFF;
+    display: flex;
+    align-items: center;
+    .welcome{
+      padding-right: 15px;
+    }
+  }
+}

File diff suppressed because it is too large
+ 1 - 0
src/components/common/wPicker/areadata/areadata.js


+ 904 - 0
src/components/common/wPicker/datePicker/index.js

@@ -0,0 +1,904 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, Text,PickerView,PickerViewColumn } from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+export default class DatePicker extends Component {
+    constructor(props) {
+        super(props);
+        this.state = {
+            pickVal: [],
+            range: {
+                years: [],
+                months: [],
+                days: [],
+                hours: [],
+                minutes: [],
+                seconds: []
+            },
+            checkObj: {},
+            values:this.props.value,
+            fields2:this.props.fields,          
+        }
+    }
+    
+    componentWillMount() {
+        this.initData();
+    }
+
+    componentDidMount() { 
+    }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    componentDidUpdate(prevProps, prevState) {
+        if (prevProps.value !== this.state.values) {
+            // this.initData();
+            this.setState({
+                values: prevProps.value,
+            }, () => {
+                this.initData();
+            })
+        }
+        if (prevProps.fields !== this.state.fields2) {
+            // this.initData();
+            this.setState({
+                fields2: prevProps.fields,
+            }, () => {
+                this.initData();
+            })
+        }
+    }
+
+    formatNum = (n) => {
+        return (Number(n) < 10 ? '0' + Number(n) : Number(n) + '');
+    }
+
+    checkValue = (value) => {
+        let strReg, example
+        switch (this.props.fields) {
+            case "year":
+                strReg = /^\d{4}$/;
+                example = "2019";
+                break;
+            case "month":
+                strReg = /^\d{4}-\d{2}$/;
+                example = "2019-02";
+                break;
+            case "day":
+                strReg = /^\d{4}-\d{2}-\d{2}$/;
+                example = "2019-02-01";
+                break;
+            case "hour":
+                strReg = /^\d{4}-\d{2}-\d{2} \d{2}(:\d{2}){1,2}?$/;
+                example = "2019-02-01 18:00:00或2019-02-01 18";
+                break;
+            case "minute":
+                strReg = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}(:\d{2}){0,1}?$/;
+                example = "2019-02-01 18:06:00或2019-02-01 18:06";
+                break;
+            case "second":
+                strReg = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/;
+                example = "2019-02-01 18:06:01";
+                break;
+        }
+        if (!strReg.test(value)) {
+            console.log(new Error("请传入与mode、fields匹配的value值,例value=" + example + ""))
+        }
+        return strReg.test(value);
+    }
+
+    resetData = (year, month, day, hour, minute) => {
+        let curDate = this.getCurrenDate();
+        let curFlag = this.props.current;
+        let curYear = curDate.curYear;
+        let curMonth = curDate.curMonth;
+        let curDay = curDate.curDay;
+        let curHour = curDate.curHour;
+        let curMinute = curDate.curMinute;
+        let curSecond = curDate.curSecond;
+        let months = [], days = [], hours = [], minutes = [], seconds = [];
+        let disabledAfter = this.props.disabledAfter;
+        let monthsLen = disabledAfter ? (year * 1 < curYear ? 12 : curMonth) : 12;
+        let totalDays = new Date(year, month, 0).getDate();//计算当月有几天;
+        let daysLen = disabledAfter ? ((year * 1 < curYear || month * 1 < curMonth) ? totalDays : curDay) : totalDays;
+        let hoursLen = disabledAfter ? ((year * 1 < curYear || month * 1 < curMonth || day * 1 < curDay) ? 24 : curHour + 1) : 24;
+        let minutesLen = disabledAfter ? ((year * 1 < curYear || month * 1 < curMonth || day * 1 < curDay || hour * 1 < curHour) ? 60 : curMinute + 1) : 60;
+        let secondsLen = disabledAfter ? ((year * 1 < curYear || month * 1 < curMonth || day * 1 < curDay || hour * 1 < curHour || minute * 1 < curMinute) ? 60 : curSecond + 1) : 60;
+        for (let month = 1; month <= monthsLen; month++) {
+            months.push(this.formatNum(month));
+        };
+        for (let day = 1; day <= daysLen; day++) {
+            days.push(this.formatNum(day));
+        }
+        for (let hour = 0; hour < hoursLen; hour++) {
+            hours.push(this.formatNum(hour));
+        }
+        for (let minute = 0; minute < minutesLen; minute++) {
+            minutes.push(this.formatNum(minute));
+        }
+        for (let second = 0; second < secondsLen; second++) {
+            seconds.push(this.formatNum(second));
+        }
+        return {
+            months,
+            days,
+            hours,
+            minutes,
+            seconds
+        }
+    }
+
+    getData(dVal) {
+        //用来处理初始化数据
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let fields = this.props.fields;
+        let curDate = this.getCurrenDate();
+        let curYear = curDate.curYear;
+        let curMonthdays = curDate.curMonthdays;
+        let curMonth = curDate.curMonth;
+        let curDay = curDate.curDay;
+        let curHour = curDate.curHour;
+        let curMinute = curDate.curMinute;
+        let curSecond = curDate.curSecond;
+        let defaultDate = this.getDefaultDate();
+        let startYear = this.getStartDate().getFullYear();
+        let endYear = this.getEndDate().getFullYear();
+        //颗粒度,禁用当前之后日期仅对year,month,day,hour生效;分钟秒禁用没有意义,
+        let years = [], months = [], days = [], hours = [], minutes = [], seconds = [];
+        let year = dVal[0] * 1;
+        let month = dVal[1] * 1;
+        let day = dVal[2] * 1;
+        let hour = dVal[3] * 1;
+        let minute = dVal[4] * 1;
+        let monthsLen = disabledAfter ? (year < curYear ? 12 : curDate.curMonth) : 12;
+        let daysLen = disabledAfter ? ((year < curYear || month < curMonth) ? defaultDate.defaultDays : curDay) : (curFlag ? curMonthdays : defaultDate.defaultDays);
+        let hoursLen = disabledAfter ? ((year < curYear || month < curMonth || day < curDay) ? 24 : curHour + 1) : 24;
+        let minutesLen = disabledAfter ? ((year < curYear || month < curMonth || day < curDay || hour < curHour) ? 60 : curMinute + 1) : 60;
+        let secondsLen = disabledAfter ? ((year < curYear || month < curMonth || day < curDay || hour < curHour || minute < curMinute) ? 60 : curSecond + 1) : 60;
+        for (let year = startYear; year <= (disabledAfter ? curYear : endYear); year++) {
+            years.push(year.toString())
+        }
+        for (let month = 1; month <= monthsLen; month++) {
+            months.push(this.formatNum(month));
+        }
+        for (let day = 1; day <= daysLen; day++) {
+            days.push(this.formatNum(day));
+        }
+        for (let hour = 0; hour < hoursLen; hour++) {
+            hours.push(this.formatNum(hour));
+        }
+        for (let minute = 0; minute < minutesLen; minute++) {
+            minutes.push(this.formatNum(minute));
+        }
+        // for(let second=0;second<(disabledAfter?curDate.curSecond+1:60);second++){
+        // 	seconds.push(this.formatNum(second));
+        // }
+        for (let second = 0; second < 60; second++) {
+            seconds.push(this.formatNum(second));
+        }
+        return {
+            years,
+            months,
+            days,
+            hours,
+            minutes,
+            seconds
+        }
+    }
+
+    getCurrenDate() {
+        let curDate = new Date();
+        let curYear = curDate.getFullYear();
+        let curMonth = curDate.getMonth() + 1;
+        let curMonthdays = new Date(curYear, curMonth, 0).getDate();
+        let curDay = curDate.getDate();
+        let curHour = curDate.getHours();
+        let curMinute = curDate.getMinutes();
+        let curSecond = curDate.getSeconds();
+        return {
+            curDate,
+            curYear,
+            curMonth,
+            curMonthdays,
+            curDay,
+            curHour,
+            curMinute,
+            curSecond
+        }
+    }
+
+    getDefaultDate() {
+        let value = this.props.value;
+        let reg = /-/g;
+        let defaultDate = value ? new Date(value.replace(reg, "/")) : new Date();
+        let defaultYear = defaultDate.getFullYear();
+        let defaultMonth = defaultDate.getMonth() + 1;
+        let defaultDay = defaultDate.getDate();
+        let defaultDays = new Date(defaultYear, defaultMonth, 0).getDate() * 1;
+        return {
+            defaultDate,
+            defaultYear,
+            defaultMonth,
+            defaultDay,
+            defaultDays
+        }
+    }
+
+    getStartDate = () => {
+        let start = this.props.startYear;
+        let startDate = "";
+        let reg = /-/g;
+        if (start) {
+            startDate = new Date(start + "/01/01");
+        } else {
+            startDate = new Date("1970/01/01");
+        }
+        return startDate;
+    }
+
+    getEndDate = () => {
+        let end = this.props.endYear;
+        let reg = /-/g;
+        let endDate = "";
+        if (end) {
+            endDate = new Date(end + "/12/01");
+        } else {
+            endDate = new Date();
+        }
+        return endDate;
+    }
+
+    getDval() {
+        let value = this.props.value;
+        let fields = this.props.fields;
+        let dVal = null;
+        let aDate = new Date();
+        let year = this.formatNum(aDate.getFullYear());
+        let month = this.formatNum(aDate.getMonth() + 1);
+        let day = this.formatNum(aDate.getDate());
+        let hour = this.formatNum(aDate.getHours());
+        let minute = this.formatNum(aDate.getMinutes());
+        let second = this.formatNum(aDate.getSeconds());
+        if (value) {
+            let flag = this.checkValue(value);
+            if (!flag) {
+                dVal = [year, month, day, hour, minute, second]
+            } else {
+                switch (this.props.fields) {
+                    case "year":
+                        dVal = value ? [value] : [];
+                        break;
+                    case "month":
+                        dVal = value ? value.split("-") : [];
+                        break;
+                    case "day":
+                        dVal = value ? value.split("-") : [];
+                        break;
+                    case "hour":
+                        dVal = [...value.split(" ")[0].split("-"), ...value.split(" ")[1].split(":")];
+                        break;
+                    case "minute":
+                        dVal = value ? [...value.split(" ")[0].split("-"), ...value.split(" ")[1].split(":")] : [];
+                        break;
+                    case "second":
+                        dVal = [...value.split(" ")[0].split("-"), ...value.split(" ")[1].split(":")];
+                        break;
+                }
+            }
+        } else {
+            dVal = [year, month, day, hour, minute, second]
+        }
+        return dVal;
+    }
+
+    initData() {
+        let startDate, endDate, startYear, endYear, startMonth, endMonth, startDay, endDay;
+        let years = [], months = [], days = [], hours = [], minutes = [], seconds = [];
+        let dVal = [], pickVal = [];
+        let value = this.props.value;
+        let reg = /-/g;
+        let range = {};
+        let result = "", full = "", year, month, day, hour, minute, second, obj = {};
+        let defaultDate = this.getDefaultDate();
+        let defaultYear = defaultDate.defaultYear;
+        let defaultMonth = defaultDate.defaultMonth;
+        let defaultDay = defaultDate.defaultDay;
+        let defaultDays = defaultDate.defaultDays;
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let curDate = this.getCurrenDate();
+        let curYear = curDate.curYear;
+        let curMonth = curDate.curMonth;
+        let curMonthdays = curDate.curMonthdays;
+        let curDay = curDate.curDay;
+        let curHour = curDate.curHour;
+        let curMinute = curDate.curMinute;
+        let curSecond = curDate.curSecond;
+        let dateData = [];
+        dVal = this.getDval();
+
+        startDate = this.getStartDate();
+        endDate = this.getEndDate();
+        startYear = startDate.getFullYear();
+        startMonth = startDate.getMonth();
+        startDay = startDate.getDate();
+        endYear = endDate.getFullYear();
+        endMonth = endDate.getMonth();
+        endDay = endDate.getDate();
+        dateData = this.getData(dVal);
+        years = dateData.years;
+        months = dateData.months;
+        days = dateData.days;
+        hours = dateData.hours;
+        minutes = dateData.minutes;
+        seconds = dateData.seconds;
+        switch (this.props.fields) {
+            case "year":
+                pickVal = disabledAfter ? [
+                    dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0
+                ] : (curFlag ? [
+                    years.indexOf(curYear + '')
+                ] : [
+                        dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0
+                    ]);
+                range = { years };
+                year = dVal[0] ? dVal[0] : years[0];
+                result = full = `${year}`;
+                obj = {
+                    year
+                }
+                break;
+            case "month":
+                pickVal = disabledAfter ? [
+                    dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                    dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0
+                ] : (curFlag ? [
+                    years.indexOf(curYear + ''),
+                    months.indexOf(this.formatNum(curMonth))
+                ] : [
+                        dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                        dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0
+                    ]);
+                range = { years, months };
+                year = dVal[0] ? dVal[0] : years[0];
+                month = dVal[1] ? dVal[1] : months[0];
+                result = full = `${year + '-' + month}`;
+                obj = {
+                    year,
+                    month
+                }
+                break;
+            case "day":
+                pickVal = disabledAfter ? [
+                    dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                    dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                    dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0
+                ] : (curFlag ? [
+                    years.indexOf(curYear + ''),
+                    months.indexOf(this.formatNum(curMonth)),
+                    days.indexOf(this.formatNum(curDay)),
+                ] : [
+                        dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                        dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                        dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0
+                    ]);
+                range = { years, months, days };
+                year = dVal[0] ? dVal[0] : years[0];
+                month = dVal[1] ? dVal[1] : months[0];
+                day = dVal[2] ? dVal[2] : days[0];
+                result = full = `${year + '-' + month + '-' + day}`;
+                obj = {
+                    year,
+                    month,
+                    day
+                }
+                break;
+            case "hour":
+                pickVal = disabledAfter ? [
+                    dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                    dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                    dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+                    dVal[3] && hours.indexOf(dVal[3]) != -1 ? hours.indexOf(dVal[3]) : 0
+                ] : (curFlag ? [
+                    years.indexOf(curYear + ''),
+                    months.indexOf(this.formatNum(curMonth)),
+                    days.indexOf(this.formatNum(curDay)),
+                    hours.indexOf(this.formatNum(curHour)),
+                ] : [
+                        dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                        dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                        dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+                        dVal[3] && hours.indexOf(dVal[3]) != -1 ? hours.indexOf(dVal[3]) : 0
+                    ]);
+                range = { years, months, days, hours };
+                year = dVal[0] ? dVal[0] : years[0];
+                month = dVal[1] ? dVal[1] : months[0];
+                day = dVal[2] ? dVal[2] : days[0];
+                hour = dVal[3] ? dVal[3] : hours[0];
+                result = `${year + '-' + month + '-' + day + ' ' + hour}`;
+                full = `${year + '-' + month + '-' + day + ' ' + hour + ':00:00'}`;
+                obj = {
+                    year,
+                    month,
+                    day,
+                    hour
+                }
+                break;
+            case "minute":
+                pickVal = disabledAfter ? [
+                    dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                    dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                    dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+                    dVal[3] && hours.indexOf(dVal[3]) != -1 ? hours.indexOf(dVal[3]) : 0,
+                    dVal[4] && minutes.indexOf(dVal[4]) != -1 ? minutes.indexOf(dVal[4]) : 0
+                ] : (curFlag ? [
+                    years.indexOf(curYear + ''),
+                    months.indexOf(this.formatNum(curMonth)),
+                    days.indexOf(this.formatNum(curDay)),
+                    hours.indexOf(this.formatNum(curHour)),
+                    minutes.indexOf(this.formatNum(curMinute)),
+                ] : [
+                        dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                        dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                        dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+                        dVal[3] && hours.indexOf(dVal[3]) != -1 ? hours.indexOf(dVal[3]) : 0,
+                        dVal[4] && minutes.indexOf(dVal[4]) != -1 ? minutes.indexOf(dVal[4]) : 0
+                    ]);
+                range = { years, months, days, hours, minutes };
+                year = dVal[0] ? dVal[0] : years[0];
+                month = dVal[1] ? dVal[1] : months[0];
+                day = dVal[2] ? dVal[2] : days[0];
+                hour = dVal[3] ? dVal[3] : hours[0];
+                minute = dVal[4] ? dVal[4] : minutes[0];
+                full = `${year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':00'}`;
+                result = `${year + '-' + month + '-' + day + ' ' + hour + ':' + minute}`;
+                obj = {
+                    year,
+                    month,
+                    day,
+                    hour,
+                    minute
+                }
+                break;
+            case "second":
+                pickVal = disabledAfter ? [
+                    dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                    dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                    dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+                    dVal[3] && hours.indexOf(dVal[3]) != -1 ? hours.indexOf(dVal[3]) : 0,
+                    dVal[4] && minutes.indexOf(dVal[4]) != -1 ? minutes.indexOf(dVal[4]) : 0,
+                    dVal[5] && seconds.indexOf(dVal[5]) != -1 ? seconds.indexOf(dVal[5]) : 0
+                ] : (curFlag ? [
+                    years.indexOf(curYear + ''),
+                    months.indexOf(this.formatNum(curMonth)),
+                    days.indexOf(this.formatNum(curDay)),
+                    hours.indexOf(this.formatNum(curHour)),
+                    minutes.indexOf(this.formatNum(curMinute)),
+                    seconds.indexOf(this.formatNum(curSecond)),
+                ] : [
+                        dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                        dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                        dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+                        dVal[3] && hours.indexOf(dVal[3]) != -1 ? hours.indexOf(dVal[3]) : 0,
+                        dVal[4] && minutes.indexOf(dVal[4]) != -1 ? minutes.indexOf(dVal[4]) : 0,
+                        dVal[5] && seconds.indexOf(dVal[5]) != -1 ? seconds.indexOf(dVal[5]) : 0
+                    ]);
+                range = { years, months, days, hours, minutes, seconds };
+                year = dVal[0] ? dVal[0] : years[0];
+                month = dVal[1] ? dVal[1] : months[0];
+                day = dVal[2] ? dVal[2] : days[0];
+                hour = dVal[3] ? dVal[3] : hours[0];
+                minute = dVal[4] ? dVal[4] : minutes[0];
+                second = dVal[5] ? dVal[5] : seconds[0];
+                result = full = `${year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + second}`;
+                obj = {
+                    year,
+                    month,
+                    day,
+                    hour,
+                    minute,
+                    second
+                }
+                break;
+            default:
+                range = { years, months, days };
+                break;
+        }
+        this.setState({
+            range,
+            checkObj:obj
+        })
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal
+            })
+        });
+    }
+    isLeapYear = (Year) => {
+        if (((Year % 4)==0) && ((Year % 100)!=0) || ((Year % 400)==0)) {
+            return true;
+        } else { 
+            return false; 
+        }
+    }
+    handlerChange = (e) => {
+        let arr = [...e.detail.value];
+        let data = this.state.range;
+        let year = "", month = "", day = "", hour = "", minute = "", second = "";
+        let result = "", full = "", obj = {};
+        let months = null, days = null, hours = null, minutes = null, seconds = null;
+        let disabledAfter = this.props.disabledAfter;
+        let range = Object.assign({}, this.state.range);
+        let leapYear= false,resetData={};
+        year = (arr[0] || arr[0] == 0) ? data.years[arr[0]] || data.years[data.years.length - 1] : "";
+        month = (arr[1] || arr[1] == 0) ? data.months[arr[1]] || data.months[data.months.length - 1] : "";
+        day = (arr[2] || arr[2] == 0) ? data.days[arr[2]] || data.days[data.days.length - 1] : "";
+        hour = (arr[3] || arr[3] == 0) ? data.hours[arr[3]] || data.hours[data.hours.length - 1] : "";
+        minute = (arr[4] || arr[4] == 0) ? data.minutes[arr[4]] || data.minutes[data.minutes.length - 1] : "";
+        second = (arr[5] || arr[5] == 0) ? data.seconds[arr[5]] || data.seconds[data.seconds.length - 1] : "";
+        resetData = this.resetData(year, month, day, hour, minute);
+        leapYear = this.isLeapYear(year);
+        switch (this.props.fields) {
+            case "year":
+                result = full = `${year}`;
+                obj = {
+                    year
+                };
+                break;
+            case "month":
+                result = full = `${year + '-' + month}`;
+                if (this.props.disabledAfter) months = resetData.months;
+                if (months) {
+                    range.months = months;
+                    this.setState({
+                        range,
+                        pickVal:e.detail.value
+                    })
+                }
+                obj = {
+                    year,
+                    month
+                }
+                break;
+            case "day":
+                result = full = `${year + '-' + month + '-' + day}`;
+                if (this.props.disabledAfter) {
+                    months = resetData.months;
+                    days = resetData.days;
+                } else {
+                    if (leapYear || (month != this.state.checkObj.month)) {
+                        days = resetData.days;
+                    }
+                } 
+                if (months) range.months=months;
+                if (days) range.days=days;
+                this.setState({
+                    range,
+                    pickVal:e.detail.value
+                })
+                obj = {
+                    year,
+                    month,
+                    day
+                }
+                break;
+            case "hour":
+                result = `${year + '-' + month + '-' + day + ' ' + hour}`;
+                full = `${year + '-' + month + '-' + day + ' ' + hour + ':00:00'}`;
+                if (this.props.disabledAfter) {
+                    months = resetData.months;
+                    days = resetData.days;
+                    hours = resetData.hours;
+                } else {
+                    if (leapYear || (month != this.state.checkObj.month)) {
+                        days = resetData.days;
+                    }
+                }
+                if (months) range.months = months;
+                if (days) range.days = days;
+                if (hours) range.hours = hours;
+                this.setState({
+                    range,
+                    pickVal:e.detail.value
+                })
+                obj = {
+                    year,
+                    month,
+                    day,
+                    hour
+                }
+                break;
+            case "minute":
+                full = `${year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':00'}`;
+                result = `${year + '-' + month + '-' + day + ' ' + hour + ':' + minute}`;
+                if (this.props.disabledAfter) {
+                    months = resetData.months;
+                    days = resetData.days;
+                    hours = resetData.hours;
+                    minutes = resetData.minutes;
+                } else {
+                    if (leapYear || (month != this.state.checkObj.month)) {
+                        days = resetData.days;
+                    }
+                }
+                if (months) range.months = months;
+                if (days) range.days = days;
+                if (hours) range.hours = hours;
+                if (minutes) range.minutes = minutes;
+                this.setState({
+                    range,
+                    pickVal:e.detail.value
+                })
+                obj = {
+                    year,
+                    month,
+                    day,
+                    hour,
+                    minute
+                };
+                break;
+            case "second":
+                result = full = `${year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + second}`;
+                if (this.props.disabledAfter) {
+                    months = resetData.months;
+                    days = resetData.days;
+                    hours = resetData.hours;
+                    minutes = resetData.minutes;
+                    //seconds=resetData.seconds;
+                } else {
+                    if (leapYear || (month != this.state.checkObj.month)) {
+                        days = resetData.days;
+                    }
+                }
+                if (months) range.months = months;
+                if (days) range.days = days;
+                if (hours) range.hours = hours;
+                if (minutes) range.minutes = minutes;
+                //if(seconds)this.range.seconds=seconds;
+                this.setState({
+                    range,
+                    pickVal:e.detail.value
+                })
+                obj = {
+                    year,
+                    month,
+                    day,
+                    hour,
+                    minute,
+                    second
+                }
+                break;
+        }
+        this.setState({
+            checkObj:obj
+        })
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+
+    render() {
+        const { pickVal, range } = this.state
+        return (
+            <View className='w-picker-view'>
+                {this.props.fields == 'year' ? (
+                    <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                        <PickerViewColumn>
+                            {
+                                range.years.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}年</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                    </PickerView>
+                ) : null}
+
+                {this.props.fields == 'month' ? (
+                    <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                        <PickerViewColumn>
+                            {
+                                range.years.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}年</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.months.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}月</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                    </PickerView>
+                ) : null}
+
+                {this.props.fields == 'day' ? (
+                    <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                        <PickerViewColumn>
+                            {
+                                range.years.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}年</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.months.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}月</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.days.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}日</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                    </PickerView>
+                ) : null}
+
+                {this.props.fields == 'hour' ? (
+                    <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                        <PickerViewColumn>
+                            {
+                                range.years.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}年</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.months.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}月</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.days.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}日</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.hours.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}时</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                    </PickerView>
+                ) : null}
+                {this.props.fields == 'minute' ? (
+                    <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                        <PickerViewColumn>
+                            {
+                                range.years.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}年</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.months.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}月</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.days.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}日</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.hours.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}时</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.minutes.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}分</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                    </PickerView>
+                ) : null}
+                {this.props.fields == 'second' ? (
+                    <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                        <PickerViewColumn>
+                            {
+                                range.years.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}年</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.months.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}月</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.days.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}日</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.hours.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}时</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.minutes.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}分</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                        <PickerViewColumn>
+                            {
+                                range.seconds.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}秒</View>)
+                                })
+                            }
+                        </PickerViewColumn>
+                    </PickerView>
+                ) : null}
+            </View>
+
+        )
+    }
+}
+DatePicker.PropTypes = {
+    itemHeight: PropTypes.string,
+    startYear: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+    ]),
+    endYear: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+    ]),
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.array,
+        PropTypes.number
+    ]),
+    current: PropTypes.bool,//是否默认选中当前日期
+    disabledAfter: PropTypes.bool,//是否禁用当前之后的日期
+    fields: PropTypes.string
+}
+DatePicker.defaultProps = {
+    itemHeight: "44px",
+    startYear: "",
+    endYear: "",
+    value: "",
+    current: false,
+    disabledAfter: false,
+    fields: "day"
+}

+ 26 - 0
src/components/common/wPicker/datePicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

+ 398 - 0
src/components/common/wPicker/halfPicker/index.js

@@ -0,0 +1,398 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, Text,PickerView,PickerViewColumn } from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+export default class HalfPicker extends Component {
+
+    
+    constructor(props) {
+        super(props);
+        this.state = {
+            pickVal: [],
+            range: {},
+            checkObj: {},
+            values:this.props.value
+        }
+    }
+
+    componentWillMount() {
+        this.initData();
+    }
+
+    componentDidMount() { }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    componentDidUpdate(prevProps, prevState) {
+        if (prevProps.value !== this.state.values) {
+            // this.initData();
+            this.setState({
+                values: prevProps.value,
+            }, () => {
+                this.initData();
+            })
+        }
+    }
+
+    formatNum = (n) => {
+        return (Number(n) < 10 ? '0' + Number(n) : Number(n) + '');
+    }
+
+    checkValue = (value) => {
+        let strReg = /^\d{4}-\d{2}-\d{2} [\u4e00-\u9fa5]{2}$/, example;
+        if (!strReg.test(value)) {
+            console.log(new Error("请传入与mode、fields匹配的value值,例value=" + example + ""))
+        }
+        return strReg.test(value);
+    }
+
+    resetData = (year, month, day) => {
+        let curDate = this.getCurrenDate();
+        let curFlag = this.props.current;
+        let curYear = curDate.curYear;
+        let curMonth = curDate.curMonth;
+        let curDay = curDate.curDay;
+        let curHour = curDate.curHour;
+        let months = [], days = [], sections = [];
+        let disabledAfter = this.props.disabledAfter;
+        let monthsLen = disabledAfter ? (year * 1 < curYear ? 12 : curMonth) : 12;
+        let totalDays = new Date(year, month, 0).getDate();//计算当月有几天;
+        let daysLen = disabledAfter ? ((year * 1 < curYear || month * 1 < curMonth) ? totalDays : curDay) : totalDays;
+        let sectionFlag = disabledAfter ? ((year * 1 < curYear || month * 1 < curMonth || day * 1 < curDay) == true ? false : true) : (curHour > 12 == true ? true : false);
+        sections = ["上午", "下午"];
+        for (let month = 1; month <= monthsLen; month++) {
+            months.push(this.formatNum(month));
+        };
+        for (let day = 1; day <= daysLen; day++) {
+            days.push(this.formatNum(day));
+        }
+        if (sectionFlag) {
+            sections = ["上午"];
+        }
+        return {
+            months,
+            days,
+            sections
+        }
+    }
+
+    getData = (dVal) => {
+        //用来处理初始化数据
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let curDate = this.getCurrenDate();
+        let curYear = curDate.curYear;
+        let curMonthdays = curDate.curMonthdays;
+        let curMonth = curDate.curMonth;
+        let curDay = curDate.curDay;
+        let curHour = curDate.curHour;
+        let defaultDate = this.getDefaultDate();
+        let startYear = this.getStartDate().getFullYear();
+        let endYear = this.getEndDate().getFullYear();
+        let years = [], months = [], days = [], sections = [];
+        let year = dVal[0] * 1;
+        let month = dVal[1] * 1;
+        let day = dVal[2] * 1;
+        let monthsLen = disabledAfter ? (year < curYear ? 12 : curDate.curMonth) : 12;
+        let daysLen = disabledAfter ? ((year < curYear || month < curMonth) ? defaultDate.defaultDays : curDay) : (curFlag ? curMonthdays : defaultDate.defaultDays);
+        let sectionFlag = disabledAfter ? ((year * 1 < curYear || month * 1 < curMonth || day * 1 < curDay) == true ? false : true) : (curHour > 12 == true ? true : false);
+        for (let year = startYear; year <= (disabledAfter ? curYear : endYear); year++) {
+            years.push(year.toString())
+        }
+        for (let month = 1; month <= monthsLen; month++) {
+            months.push(this.formatNum(month));
+        }
+        for (let day = 1; day <= daysLen; day++) {
+            days.push(this.formatNum(day));
+        }
+        if (sectionFlag) {
+            sections = ["下午"];
+        } else {
+            sections = ["上午", "下午"];
+        }
+        return {
+            years,
+            months,
+            days,
+            sections
+        }
+    }
+
+    getCurrenDate = () => {
+        let curDate = new Date();
+        let curYear = curDate.getFullYear();
+        let curMonth = curDate.getMonth() + 1;
+        let curMonthdays = new Date(curYear, curMonth, 0).getDate();
+        let curDay = curDate.getDate();
+        let curHour = curDate.getHours();
+        let curSection = "上午";
+        if (curHour >= 12) {
+            curSection = "下午";
+        }
+        return {
+            curDate,
+            curYear,
+            curMonth,
+            curMonthdays,
+            curDay,
+            curHour,
+            curSection
+        }
+    }
+
+    getDefaultDate = () => {
+        let value = this.props.value;
+        let reg = /-/g;
+        let defaultDate = value ? new Date(value.split(" ")[0].replace(reg, "/")) : new Date();
+        let defaultYear = defaultDate.getFullYear();
+        let defaultMonth = defaultDate.getMonth() + 1;
+        let defaultDay = defaultDate.getDate();
+        let defaultDays = new Date(defaultYear, defaultMonth, 0).getDate() * 1;
+        return {
+            defaultDate,
+            defaultYear,
+            defaultMonth,
+            defaultDay,
+            defaultDays
+        }
+    }
+
+    getStartDate = () => {
+        let start = this.props.startYear;
+        let startDate = "";
+        let reg = /-/g;
+        if (start) {
+            startDate = new Date(start + "/01/01");
+        } else {
+            startDate = new Date("1970/01/01");
+        }
+        return startDate;
+    }
+
+    getEndDate = () => {
+        let end = this.props.endYear;
+        let reg = /-/g;
+        let endDate = "";
+        if (end) {
+            endDate = new Date(end + "/12/31");
+        } else {
+            endDate = new Date();
+        }
+        return endDate;
+    }
+
+    getDval = () => {
+        let value = this.props.value;
+        let dVal = null;
+        let aDate = new Date();
+        let year = this.formatNum(aDate.getFullYear());
+        let month = this.formatNum(aDate.getMonth() + 1);
+        let day = this.formatNum(aDate.getDate());
+        let hour = aDate.getHours();
+        let section = "上午";
+        if (hour >= 12) section = "下午";
+        if (value) {
+            let flag = this.checkValue(value);
+            if (!flag) {
+                dVal = [year, month, day, section]
+            } else {
+                let v = value.split(" ");
+                dVal = [...v[0].split("-"), v[1]];
+            }
+        } else {
+            dVal = [year, month, day, section]
+        }
+        return dVal;
+    }
+
+    initData = () => {
+        let startDate, endDate, startYear, endYear, startMonth, endMonth, startDay, endDay;
+        let years = [], months = [], days = [], sections = [];
+        let dVal = [], pickVal = [];
+        let value = this.props.value;
+        let reg = /-/g;
+        let range = {};
+        let result = "", full = "", year, month, day, section, obj = {};
+        let defaultDate = this.getDefaultDate();
+        let defaultYear = defaultDate.defaultYear;
+        let defaultMonth = defaultDate.defaultMonth;
+        let defaultDay = defaultDate.defaultDay;
+        let defaultDays = defaultDate.defaultDays;
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let curDate = this.getCurrenDate();
+        let curYear = curDate.curYear;
+        let curMonth = curDate.curMonth;
+        let curMonthdays = curDate.curMonthdays;
+        let curDay = curDate.curDay;
+        let curSection = curDate.curSection;
+        let dateData = [];
+        dVal = this.getDval();
+        startDate = this.getStartDate();
+        endDate = this.getEndDate();
+        startYear = startDate.getFullYear();
+        startMonth = startDate.getMonth();
+        startDay = startDate.getDate();
+        endYear = endDate.getFullYear();
+        endMonth = endDate.getMonth();
+        endDay = endDate.getDate();
+        dateData = this.getData(dVal);
+        years = dateData.years;
+        months = dateData.months;
+        days = dateData.days;
+        sections = dateData.sections;
+        pickVal = disabledAfter ? [
+            dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+            dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+            dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+            dVal[3] && sections.indexOf(dVal[3]) != -1 ? sections.indexOf(dVal[3]) : 0
+        ] : (curFlag ? [
+            years.indexOf(curYear + ''),
+            months.indexOf(this.formatNum(curMonth)),
+            days.indexOf(this.formatNum(curDay)),
+            sections.indexOf(curSection),
+        ] : [
+                dVal[0] && years.indexOf(dVal[0]) != -1 ? years.indexOf(dVal[0]) : 0,
+                dVal[1] && months.indexOf(dVal[1]) != -1 ? months.indexOf(dVal[1]) : 0,
+                dVal[2] && days.indexOf(dVal[2]) != -1 ? days.indexOf(dVal[2]) : 0,
+                dVal[3] && sections.indexOf(dVal[3]) != -1 ? sections.indexOf(dVal[3]) : 0
+            ]);
+        range = { years, months, days, sections };
+        year = dVal[0] ? dVal[0] : years[0];
+        month = dVal[1] ? dVal[1] : months[0];
+        day = dVal[2] ? dVal[2] : days[0];
+        section = dVal[3] ? dVal[3] : sections[0];
+        result = full = `${year + '-' + month + '-' + day + ' ' + section}`;
+        obj = {
+            year,
+            month,
+            day,
+            section
+        }
+        this.setState({
+            range,
+            checkObj: obj
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal
+            })
+        });
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    handlerChange = (e) => {
+        let arr = [...e.detail.value];
+        let data = this.state.range;
+        let year = "", month = "", day = "", section = "";
+        let result = "", full = "", obj = {};
+        let months = null, days = null, sections = null;
+        let disabledAfter = this.props.disabledAfter;
+        let range = Object.assign({}, this.state.range);
+        year = (arr[0] || arr[0] == 0) ? data.years[arr[0]] || data.years[data.years.length - 1] : "";
+        month = (arr[1] || arr[1] == 0) ? data.months[arr[1]] || data.months[data.months.length - 1] : "";
+        day = (arr[2] || arr[2] == 0) ? data.days[arr[2]] || data.days[data.days.length - 1] : "";
+        section = (arr[3] || arr[3] == 0) ? data.sections[arr[3]] || data.sections[data.sections.length - 1] : "";
+        result = full = `${year + '-' + month + '-' + day + ' ' + section}`;
+        let resetData = this.resetData(year, month, day);
+        if (this.props.disabledAfter) {
+            months = resetData.months;
+            days = resetData.days;
+            sections = resetData.sections;
+        } else {
+            if (year % 4 == 0 || (month != this.state.checkObj.month)) {
+                days = resetData.days;
+            }
+        }
+        if (months) range.months = months;
+        if (days) range.days = days;
+        if (sections) range.sections = sections;
+        obj = {
+            year,
+            month,
+            day,
+            section
+        }
+        this.setState({
+            range,
+            checkObj: obj,
+            pickVal:e.detail.value
+        })
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    render() {
+        const { pickVal,range } = this.state
+        return (
+            <View className='w-picker-view'>
+                <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                    <PickerViewColumn>
+                        {
+                            range.years.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}年</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.months.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}月</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.days.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}日</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.sections.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                </PickerView>
+            </View>
+        )
+    }
+}
+HalfPicker.PropTypes = {
+    itemHeight: PropTypes.string,
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.array,
+        PropTypes.number
+    ]),
+    current: PropTypes.bool,
+    startYear: PropTypes.oneOfType([
+        PropTypes.string,
+    ]),
+    endYear: PropTypes.oneOfType([
+        PropTypes.string,
+    ]),
+    disabledAfter: PropTypes.bool
+}
+HalfPicker.defaultProps = {
+    itemHeight: "44px",
+    value: "",
+    current: false,
+    startYear: "",
+    endYear: "",
+    disabledAfter: false
+}

+ 26 - 0
src/components/common/wPicker/halfPicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

+ 263 - 0
src/components/common/wPicker/index.js

@@ -0,0 +1,263 @@
+import React, { Component } from 'react'
+import { View, Text } from '@tarojs/components'
+import TimePicker from './timePicker/index'
+import ShorttermPicker from './shorttermPicker/index'
+import SelectorPicker from './selectorPicker/index'
+import RegionPicker from './regionPicker/index'
+import RangePicker from './rangePicker/index'
+import LinkagePicker from './linkagePicker/index'
+import HalfPicker from './halfPicker/index'
+import DatePicker from './datePicker/index'
+import PropTypes from 'prop-types';
+import './index.less'
+let defaultTime = new Date().getFullYear()
+export default class WPicker extends Component {
+    state = {
+        itemHeight: `height: 88rpx;`,
+        visible: false,
+        result: {},
+        confirmFlag: true,
+        createKey: null
+    }
+    componentWillMount() {
+        this.props.onRef(this)
+        this.setState({
+            createKey: Math.random() * 1000
+        })
+    }
+
+    componentDidMount() { }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    touchStart = () => {
+        if (this.props.timeout) {
+            this.setState({
+                confirmFlag: false
+            })
+        }
+    }
+    touchEnd = () => {
+        if (this.props.timeout) {
+            setTimeout(() => {
+                this.setState({
+                    confirmFlag: true
+                })
+            }, 500)
+        }
+    }
+    handlerChange = (res) => {
+        this.setState({
+            result: { ...res }
+        })
+    }
+    show = () => {
+        this.setState({
+            visible: true
+        })
+    }
+    hide = () => {
+        this.setState({
+            visible: false
+        })
+    }
+
+    onCancel = (res) => {
+        this.setState({
+            visible: false
+        })
+        this.props.cancel();
+    }
+
+    pickerConfirm = () => {
+        if (!this.state.confirmFlag) {
+            return;
+        };
+        this.props.confirm(this.state.result);
+        this.setState({
+            visible: false
+        })
+    }
+
+    render() {
+        const { itemHeight, visible, confirmFlag, createKey } = this.state
+        return (
+            <View className='w-picker' key={createKey} data-key={createKey}>
+                <View className={'mask' + (visible ? ' visible' : '')} onTap={this.onCancel} catchtouchmove={true}></View>
+                <View className={'w-picker-cnt' + (visible ? ' visible' : '')}>
+                    <View className='w-picker-header' catchtouchmove={true}>
+                        <Text onTap={this.onCancel}>取消</Text>
+                        {this.props.children}
+                        <Text style={'color:' + this.props.themeColor} onTap={this.pickerConfirm}>确定</Text>
+                    </View>
+
+                    <View>{this.props.mode == 'time' ? (<TimePicker
+                        className='w-picker-wrapper'
+                        value={this.props.value}
+                        itemHeight={itemHeight}
+                        current={this.props.current}
+                        disabledAfter={this.props.disabledAfter}
+                        second={this.props.second}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}>
+                    </TimePicker>) : null}</View>
+
+                    <View>{this.props.mode == 'shortTerm' ? (<ShorttermPicker
+                        className='w-picker-wrapper'
+                        startYear={this.props.startYear}
+                        endYear={this.props.endYear}
+                        value={this.props.value}
+                        itemHeight={itemHeight}
+                        current={this.props.current}
+                        disabledAfter={this.props.disabledAfter}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}
+                        expand={60}>
+                    </ShorttermPicker>) : null}</View>
+
+                    <View>{this.props.mode == 'selector' ? (<SelectorPicker
+                        className='w-picker-wrapper'
+                        value={this.props.value}
+                        itemHeight={itemHeight}
+                        options={this.props.options}
+                        defaultType={this.props.defaultType}
+                        defaultProps={this.props.defaultProps}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}>
+                    </SelectorPicker>) : null}</View>
+
+                    <View>{this.props.mode == 'region' ? (<RegionPicker
+                        className='w-picker-wrapper'
+                        value={this.props.value}
+                        hideArea={this.props.hideArea}
+                        itemHeight={itemHeight}
+                        defaultType={this.props.defaultType}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}>
+                    </RegionPicker>) : null}</View>
+
+                    <View>{this.props.mode == 'range' ? (<RangePicker
+                        className='w-picker-wrapper'
+                        startYear={this.props.startYear}
+                        endYear={this.props.endYear}
+                        value={this.props.value}
+                        itemHeight={itemHeight}
+                        current={this.props.current}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}>
+                    </RangePicker>) : null}</View>
+
+                    <View>{this.props.mode == 'linkage' ? (<LinkagePicker
+                        className='w-picker-wrapper'
+                        value={this.props.value}
+                        options={this.props.options}
+                        level={this.props.level}
+                        defaultType={this.props.defaultType}
+                        defaultProps={this.props.defaultProps}
+                        itemHeight={itemHeight}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}>
+                    </LinkagePicker>) : null}</View>
+
+                    <View>{this.props.mode == 'half' ? (<HalfPicker
+                        className='w-picker-wrapper'
+                        startYear={this.props.startYear}
+                        endYear={this.props.endYear}
+                        value={this.props.value}
+                        itemHeight={itemHeight}
+                        current={this.props.current}
+                        disabledAfter={this.props.disabledAfter}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}>
+                    </HalfPicker>) : null}</View>
+
+                    <View>{this.props.mode == 'date' ? (<DatePicker
+                        className='w-picker-wrapper'
+                        startYear={this.props.startYear}
+                        endYear={this.props.endYear}
+                        value={this.props.value}
+                        fields={this.props.fields}
+                        itemHeight={itemHeight}
+                        current={this.props.current}
+                        disabledAfter={this.props.disabledAfter}
+                        change={this.handlerChange}
+                        touchstart={this.touchStart}
+                        touchend={this.touchEnd}>
+                    </DatePicker>) : null}</View>
+
+                </View>
+            </View >
+        )
+    }
+}
+WPicker.propTypes = {
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+        PropTypes.array
+    ]),//默认值
+    current: PropTypes.bool,//是否默认显示当前时间,如果是,传的默认值将失效
+    second: PropTypes.bool,//time-picker是否显示秒
+    mode: PropTypes.string,
+    themeColor: PropTypes.string,//确认按钮主题颜色
+    fields: PropTypes.string,//日期颗粒度:year、month、day、hour、minute、second
+    disabledAfter: PropTypes.bool,//是否禁用当前之后的日期
+    options: PropTypes.oneOfType([//selector,region数据源
+        PropTypes.array,
+        PropTypes.object,
+    ]),
+    defaultProps: PropTypes.object,//selector,linkagle字段转换配置
+    defaultType: PropTypes.string,
+    hideArea: PropTypes.bool,//mode=region时,是否隐藏区县列
+    level: PropTypes.oneOfType([//多级联动层级,表示几级联动,区间2-4;
+        PropTypes.string,
+        PropTypes.number,
+    ]),
+    timeout: PropTypes.bool,//是否开启点击延迟,当快速滚动 还没有滚动完毕点击关闭时得到的值是不准确的
+    expand: PropTypes.oneOfType([//mode=shortterm 默认往后拓展天数
+        PropTypes.string,
+        PropTypes.number,
+    ]),
+    startYear: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+    ]),
+    endYear: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+    ])
+}
+WPicker.defaultProps = {
+    value: "",
+    current: false,
+    second: true,
+    mode: 'date',
+    themeColor: '#f5a200',
+    fields: 'date',
+    disabledAfter: false,
+    options: [],
+    defaultProps: {
+        label: 'label',
+        value: 'value',
+        children: 'children'
+    },
+    defaultType: 'label',
+    hideArea: false,
+    level: 2,
+    timeout: false,
+    expand: 30,
+    startYear: 1970,
+    endYear: defaultTime
+};
+

+ 69 - 0
src/components/common/wPicker/index.less

@@ -0,0 +1,69 @@
+.w-picker-item {
+    text-align: center;
+    width: 100%;
+    height: 88px;
+    line-height: 88px;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    font-size: 30px;
+  }
+  .w-picker{
+      z-index: 888;
+      .mask {
+        position: fixed;
+        z-index: 10002;
+        top: 0;
+        right: 0;
+        left: 0;
+        bottom: 0;
+        background: rgba(0, 0, 0, 0.6);
+        visibility: hidden;
+        opacity: 0;
+        transition: all 0.3s ease;
+      }
+      .mask.visible{
+          visibility: visible;
+          opacity: 1;
+      }
+      .w-picker-cnt {
+        position: fixed;
+        bottom: 0;
+        left: 0;
+        width: 100%;
+        transition: all 0.3s ease;
+        transform: translateY(100%);
+        z-index: 10003;
+        background-color: #fff;
+      }
+      .w-picker-cnt.visible {
+        transform: translateY(0);
+      }
+      .w-picker-header{
+        display: flex;
+        align-items: center;
+        padding: 0 30px;
+        height: 88px;
+        background-color: #fff;
+        position: relative;
+        text-align: center;
+        font-size: 32px;
+        justify-content: space-between;
+        border-bottom: solid 1px #eee;
+        .w-picker-btn{
+            font-size: 30px;
+        }
+      }
+
+      .w-picker-hd:after {
+        content: ' ';
+        position: absolute;
+        left: 0;
+        bottom: 0;
+        right: 0;
+        height: 1px;
+        border-bottom: 1px solid #e5e5e5;
+        color: #e5e5e5;
+        transform-origin: 0 100%;
+        transform: scaleY(0.5);
+      }
+  }

+ 313 - 0
src/components/common/wPicker/linkagePicker/index.js

@@ -0,0 +1,313 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, Text,PickerView,PickerViewColumn} from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+export default class LinkagePicker extends Component {
+
+    state = {
+        pickVal: [],
+        range: [],
+        checkObj: {},
+        value2: null,
+        options2: null
+    }
+
+    componentWillMount() {
+        if (this.props.options.length != 0) {
+            this.initData();
+        }
+    }
+
+    componentDidMount() { }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    componentDidUpdate(prevProps, prevState) {
+        if (prevProps.value != this.state.value2) {
+            this.setState({
+                value2: prevProps.value,
+            }, () => {
+                if (this.props.options.length != 0) {
+                    this.initData();
+                }
+            })
+        }
+        if (prevProps.options != this.state.options2) {
+            this.setState({
+                options2: prevProps.options,
+            }, () => {
+                this.initData();
+            })
+        }
+    }
+
+
+    nodeKey = () => {
+        return this.props.defaultProps.label;
+    }
+
+    nodeVal = () => {
+        return this.props.defaultProps.value;
+    }
+
+    nodeChild = () => {
+        return this.props.defaultProps.children;
+    }
+
+    getData = () => {
+        //用来处理初始化数据
+        let options = this.props.options;
+        let col1 = {}, col2 = {}, col3 = {}, col4 = {};
+        let arr1 = options, arr2 = [], arr3 = [], arr4 = [];
+        let col1Index = 0, col2Index = 0, col3Index = 0, col4Index = 0;
+        let a1 = "", a2 = "", a3 = "", a4 = "";
+        let dVal = [], obj = {};
+        let value = this.props.value;
+        let data = [];
+        a1 = value[0];
+        a2 = value[1];
+        if (this.props.level > 2) {
+            a3 = value[2];
+        }
+        if (this.props.level > 3) {
+            a4 = value[3];
+        };
+        /*第1列*/
+        col1Index = arr1.findIndex((v) => {
+            return v[this.props.defaultType] == a1
+        });
+        col1Index = value ? (col1Index != -1 ? col1Index : 0) : 0;
+        col1 = arr1[col1Index];
+
+        /*第2列*/
+        arr2 = arr1[col1Index][this.nodeChild()];
+        col2Index = arr2.findIndex((v) => {
+            return v[this.props.defaultType] == a2
+        });
+        col2Index = value ? (col2Index != -1 ? col2Index : 0) : 0;
+        col2 = arr2[col2Index];
+
+        /*第3列*/
+        if (this.props.level > 2) {
+            arr3 = arr2[col2Index][this.nodeChild()];
+            col3Index = arr3.findIndex((v) => {
+                return v[this.props.defaultType] == a3;
+            });
+            col3Index = value ? (col3Index != -1 ? col3Index : 0) : 0;
+            col3 = arr3[col3Index];
+        };
+
+
+        /*第4列*/
+        if (this.props.level > 3) {
+            arr4 = arr3[col4Index][this.nodeChild()];
+            col4Index = arr4.findIndex((v) => {
+                return v[this.props.defaultType] == a4;
+            });
+            col4Index = value ? (col4Index != -1 ? col4Index : 0) : 0;
+            col4 = arr4[col4Index];
+        };
+        switch (this.props.level * 1) {
+            case 2:
+                dVal = [col1Index, col2Index];
+                obj = {
+                    col1,
+                    col2
+                }
+                data = [arr1, arr2];
+                break;
+            case 3:
+                dVal = [col1Index, col2Index, col3Index];
+                obj = {
+                    col1,
+                    col2,
+                    col3
+                }
+                data = [arr1, arr2, arr3];
+                break;
+            case 4:
+                dVal = [col1Index, col2Index, col3Index, col4Index];
+                obj = {
+                    col1,
+                    col2,
+                    col3,
+                    col4
+                }
+                data = [arr1, arr2, arr3, arr4];
+                break
+        }
+        return {
+            data,
+            dVal,
+            obj
+        }
+    }
+
+    initData = () => {
+        let dataData = this.getData();
+        let data = dataData.data;
+        let arr1 = data[0];
+        let arr2 = data[1];
+        let arr3 = data[2] || [];
+        let arr4 = data[3] || [];
+        let obj = dataData.obj;
+        let col1 = obj.col1, col2 = obj.col2, col3 = obj.col3 || {}, col4 = obj.col4 || {};
+        let result = "", value = [];
+        let range = [];
+        switch (this.props.level) {
+            case 2:
+                value = [col1[this.nodeVal()], col2[this.nodeVal()]];
+                result = `${col1[this.nodeKey()] + col2[this.nodeKey()]}`;
+                range = [arr1, arr2];
+                break;
+            case 3:
+                value = [col1[this.nodeVal()], col2[this.nodeVal()], col3[this.nodeVal()]];
+                result = `${col1[this.nodeKey()] + col2[this.nodeKey()] + col3[this.nodeKey()]}`;
+                range = [arr1, arr2, arr3];
+                break;
+            case 4:
+                value = [col1[this.nodeVal()], col2[this.nodeVal()], col3[this.nodeVal()], col4[this.nodeVal()]];
+                result = `${col1[this.nodeKey()] + col2[this.nodeKey()] + col3[this.nodeKey()] + col4[this.nodeKey()]}`;
+                range = [arr1, arr2, arr3, arr4];
+                break;
+        }
+        this.setState({
+            range,
+            checkObj: obj
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal: dataData.dVal
+            })
+        });
+        this.props.change({
+            result: result,
+            value: value,
+            obj: obj
+        })
+    }
+
+    handlerChange = (e) => {
+        let arr = [...e.detail.value];
+        let col1Index = arr[0], col2Index = arr[1], col3Index = arr[2] || 0, col4Index = arr[3] || 0;
+        let arr1 = [], arr2 = [], arr3 = [], arr4 = [];
+        let col1, col2, col3, col4, obj = {};
+        let result = "", value = [];
+        arr1 = this.props.options;
+        arr2 = (arr1[col1Index] && arr1[col1Index][this.nodeChild()]) || arr1[arr1.length - 1][this.nodeChild()] || [];
+        col1 = arr1[col1Index] || arr1[arr1.length - 1] || {};
+        col2 = arr2[col2Index] || arr2[arr2.length - 1] || {};
+        if (this.props.level > 2) {
+            arr3 = (arr2[col2Index] && arr2[col2Index][this.nodeChild()]) || arr2[arr2.length - 1][this.nodeChild()];
+            col3 = arr3[col3Index] || arr3[arr3.length - 1] || {};
+        }
+        if (this.props.level > 3) {
+            arr4 = (arr3[col3Index] && arr3[col3Index][this.nodeChild()]) || arr3[arr3.length - 1][this.nodeChild()] || [];
+            col4 = arr4[col4Index] || arr4[arr4.length - 1] || {};
+        }
+        switch (this.props.level) {
+            case 2:
+                obj = {
+                    col1,
+                    col2
+                }
+                this.setState({
+                    range: [arr1, arr2]
+                })
+                result = `${(col1[this.nodeKey()] || '') + (col2[this.nodeKey()] || '')}`;
+                value = [col1[this.nodeVal()] || '', col2[this.nodeVal()] || ''];
+                break;
+            case 3:
+                obj = {
+                    col1,
+                    col2,
+                    col3
+                }
+                this.setState({
+                    range: [arr1, arr2, arr3]
+                })
+                result = `${(col1[this.nodeKey()] || '') + (col2[this.nodeKey()] || '') + (col3[this.nodeKey()] || '')}`;
+                value = [col1[this.nodeVal()] || '', col2[this.nodeVal()] || '', col3[this.nodeVal()] || ''];
+                break;
+            case 4:
+                obj = {
+                    col1,
+                    col2,
+                    col3,
+                    col4
+                }
+                this.setState({
+                    range: [arr1, arr2, arr3, arr4],
+                })
+                result = `${(col1[this.nodeKey()] || '') + (col2[this.nodeKey()] || '') + (col3[this.nodeKey()] || '') + (col4[this.nodeKey()] || '')}`;
+                value = [col1[this.nodeVal()] || '', col2[this.nodeVal()] || '', col3[this.nodeVal()] || '', col4[this.nodeVal()] || ''];
+                break;
+        }
+        this.setState({
+            pickVal: arr,
+            checkObj: obj
+        })
+        this.props.change({
+            result: result,
+            value: value,
+            obj: obj
+        })
+    }
+
+    render() {
+        const { pickVal,range } = this.state
+        return (
+            <View className='w-picker-view'>
+                <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+
+                    {
+                        range.map((group, gIndex) => {
+                            return (<PickerViewColumn key={gIndex}>
+                                {
+                                    group.map((item, index) => {
+                                        return (<View className="w-picker-item" key={index}>{item[this.nodeKey()]}</View>)
+                                    })
+                                }
+
+                            </PickerViewColumn>)
+                        })
+                    }
+
+                </PickerView>
+            </View>
+
+        )
+    }
+}
+
+LinkagePicker.PropTypes = {
+    itemHeight: PropTypes.string,
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.array
+    ]),
+    defaultType: PropTypes.string,
+    options: PropTypes.array,
+    defaultProps: PropTypes.object,
+    level: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number
+    ]),
+}
+LinkagePicker.defaultProps = {
+    itemHeight: "44px",
+    value: "",
+    defaultType: "label",
+    options: [],
+    defaultProps: {
+        lable: "label",
+        value: "value",
+        children: "children"
+    },
+    level: 2
+}

+ 26 - 0
src/components/common/wPicker/linkagePicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

+ 422 - 0
src/components/common/wPicker/rangePicker/index.js

@@ -0,0 +1,422 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, PickerView, PickerViewColumn } from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+let defaultTime = new Date().getFullYear()
+export default class RangePicker extends Component {
+    constructor(props) {
+        super(props);
+        this.state = {
+            pickVal: [],
+            range: {},
+            checkObj: {},
+            values: null
+        }
+    }
+
+    componentWillMount() {
+        this.initData();
+    }
+
+    componentDidMount() { }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    componentDidUpdate(prevProps, prevState) {
+        if (prevProps.value !== this.state.values) {
+            // this.initData();
+            this.setState({
+                values: prevProps.value,
+            }, () => {
+                this.initData();
+            })
+        }
+    }
+
+    formatNum(n) {
+        return (Number(n) < 10 ? '0' + Number(n) : Number(n) + '');
+    }
+
+    checkValue = (value) => {
+        let strReg = /^\d{4}-\d{2}-\d{2}$/, example = "2020-04-03";
+        if (!strReg.test(value[0]) || !strReg.test(value[1])) {
+            console.log(new Error("请传入与mode匹配的value值,例[" + example + "," + example + "]"))
+        }
+        return strReg.test(value[0]) && strReg.test(value[1]);
+    }
+
+    resetToData = (fmonth, fday, tyear, tmonth) => {
+        let range = this.state.range;
+        let tmonths = [], tdays = [];
+        let yearFlag = tyear != range.tyears[0];
+        let monthFlag = tyear != range.tyears[0] || tmonth != range.tmonths[0];
+        let ttotal = new Date(tyear, tmonth, 0).getDate();
+        for (let i = yearFlag ? 1 : fmonth * 1; i <= 12; i++) {
+            tmonths.push(this.formatNum(i))
+        }
+        for (let i = monthFlag ? 1 : fday * 1; i <= ttotal; i++) {
+            tdays.push(this.formatNum(i))
+        }
+        return {
+            tmonths,
+            tdays
+        }
+    }
+
+    resetData = (fyear, fmonth, fday, tyear, tmonth) => {
+        let fyears = [], fmonths = [], fdays = [], tyears = [], tmonths = [], tdays = [];
+        let startYear = this.props.startYear;
+        let endYear = this.props.endYear;
+        let ftotal = new Date(fyear, fmonth, 0).getDate();
+        let ttotal = new Date(tyear, tmonth, 0).getDate();
+        for (let i = startYear * 1; i <= endYear; i++) {
+            fyears.push(this.formatNum(i))
+        }
+        for (let i = 1; i <= 12; i++) {
+            fmonths.push(this.formatNum(i))
+        }
+        for (let i = 1; i <= ftotal; i++) {
+            fdays.push(this.formatNum(i))
+        }
+        for (let i = fyear * 1; i <= endYear; i++) {
+            tyears.push(this.formatNum(i))
+        }
+        for (let i = fmonth * 1; i <= 12; i++) {
+            tmonths.push(this.formatNum(i))
+        }
+        for (let i = fday * 1; i <= ttotal; i++) {
+            tdays.push(this.formatNum(i))
+        }
+        return {
+            fyears,
+            fmonths,
+            fdays,
+            tyears,
+            tmonths,
+            tdays
+        }
+    }
+
+    getData = (dVal) => {
+        let start = this.props.startYear * 1;
+        let end = this.props.endYear * 1;
+        let value = dVal;
+        let flag = this.props.current;
+        let aToday = new Date();
+        let tYear, tMonth, tDay, tHours, tMinutes, tSeconds, pickVal = [];
+        let initstartDate = new Date(start.toString());
+        let endDate = new Date(end.toString());
+        if (start > end) {
+            initstartDate = new Date(end.toString());
+            endDate = new Date(start.toString());
+        };
+        let startYear = initstartDate.getFullYear();
+        let startMonth = initstartDate.getMonth() + 1;
+        let endYear = endDate.getFullYear();
+        let fyears = [], fmonths = [], fdays = [], tyears = [], tmonths = [], tdays = [], returnArr = [], startDVal = [], endDVal = [];
+        let curMonth = flag ? value[1] * 1 : (startDVal[1] * 1 + 1);
+        let curMonth1 = flag ? value[5][1] * 1 : (value[5] * 1 + 1);
+        let totalDays = new Date(value[0], value[1], 0).getDate();
+        let totalDays1 = new Date(value[4], value[5], 0).getDate();
+        for (let s = startYear; s <= endYear; s++) {
+            fyears.push(this.formatNum(s));
+        };
+        for (let m = 1; m <= 12; m++) {
+            fmonths.push(this.formatNum(m));
+        };
+        for (let d = 1; d <= totalDays; d++) {
+            fdays.push(this.formatNum(d));
+        };
+        for (let s = value[0] * 1; s <= endYear; s++) {
+            tyears.push(this.formatNum(s));
+        };
+
+        if (value[4] * 1 > value[0] * 1) {
+            for (let m = 1; m <= 12; m++) {
+                tmonths.push(this.formatNum(m));
+            };
+            for (let d = 1; d <= totalDays1; d++) {
+                tdays.push(this.formatNum(d));
+            };
+        } else {
+            for (let m = value[1] * 1; m <= 12; m++) {
+                tmonths.push(this.formatNum(m));
+            };
+            for (let d = value[2] * 1; d <= totalDays1; d++) {
+                tdays.push(this.formatNum(d));
+            };
+        };
+
+        pickVal = [
+            fyears.indexOf(value[0]) == -1 ? 0 : fyears.indexOf(value[0]),
+            fmonths.indexOf(value[1]) == -1 ? 0 : fmonths.indexOf(value[1]),
+            fdays.indexOf(value[2]) == -1 ? 0 : fdays.indexOf(value[2]),
+            0,
+            tyears.indexOf(value[4]) == -1 ? 0 : tyears.indexOf(value[4]),
+            tmonths.indexOf(value[5]) == -1 ? 0 : tmonths.indexOf(value[5]),
+            tdays.indexOf(value[6]) == -1 ? 0 : tdays.indexOf(value[6])
+        ];
+        return {
+            fyears,
+            fmonths,
+            fdays,
+            tyears,
+            tmonths,
+            tdays,
+            pickVal
+        }
+    }
+
+    getDval = () => {
+        let value = this.props.value;
+        let fields = this.props.fields;
+        let dVal = null;
+        let aDate = new Date();
+        let fyear = this.formatNum(aDate.getFullYear());
+        let fmonth = this.formatNum(aDate.getMonth() + 1);
+        let fday = this.formatNum(aDate.getDate());
+        let tyear = this.formatNum(aDate.getFullYear());
+        let tmonth = this.formatNum(aDate.getMonth() + 1);
+        let tday = this.formatNum(aDate.getDate());
+        if (value && value.length > 0) {
+            let flag = this.checkValue(value);
+            if (!flag) {
+                dVal = [fyear, fmonth, fday, "-", tyear, tmonth, tday]
+            } else {
+                dVal = [...value[0].split("-"), "-", ...value[1].split("-")];
+            }
+        } else {
+            dVal = [fyear, fmonth, fday, "-", tyear, tmonth, tday]
+        }
+        return dVal;
+    }
+
+    initData = () => {
+        let range = [], pickVal = [];
+        let result = "", full = "", obj = {};
+        let dVal = this.getDval();
+        let dateData = this.getData(dVal);
+        let fyears = [], fmonths = [], fdays = [], tyears = [], tmonths = [], tdays = [];
+        let fyear, fmonth, fday, tyear, tmonth, tday;
+        pickVal = dateData.pickVal;
+        fyears = dateData.fyears;
+        fmonths = dateData.fmonths;
+        fdays = dateData.fdays;
+        tyears = dateData.tyears;
+        tmonths = dateData.tmonths;
+        tdays = dateData.tdays;
+        range = {
+            fyears,
+            fmonths,
+            fdays,
+            tyears,
+            tmonths,
+            tdays,
+        }
+        fyear = range.fyears[pickVal[0]];
+        fmonth = range.fmonths[pickVal[1]];
+        fday = range.fdays[pickVal[2]];
+        tyear = range.tyears[pickVal[4]];
+        tmonth = range.tmonths[pickVal[5]];
+        tday = range.tdays[pickVal[6]];
+        obj = {
+            fyear,
+            fmonth,
+            fday,
+            tyear,
+            tmonth,
+            tday
+        }
+        result = full = `${fyear + '-' + fmonth + '-' + fday + '至' + tyear + '-' + tmonth + '-' + tday}`;
+        this.setState({
+            range,
+            checkObj: obj
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal
+            })
+        });
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    handlerChange = (e) => {
+        let arr = [...e.detail.value];
+        let result = "", full = "", obj = {};
+        let year = "", month = "", day = "", hour = "", minute = "", second = "", note = [], province, city, area;
+        let checkObj = this.state.checkObj;
+        let days = [], months = [], endYears = [], endMonths = [], endDays = [], startDays = [];
+        let mode = this.props.mode;
+        let col1, col2, col3, d, a, h, m;
+        let xDate = new Date().getTime();
+        let range = Object.assign({}, this.state.range);
+        let fyear = range.fyears[arr[0]] || range.fyears[range.fyears.length - 1];
+        let fmonth = range.fmonths[arr[1]] || range.fmonths[range.fmonths.length - 1];
+        let fday = range.fdays[arr[2]] || range.fdays[range.fdays.length - 1];
+        let tyear = range.tyears[arr[4]] || range.tyears[range.tyears.length - 1];
+        let tmonth = range.tmonths[arr[5]] || range.tmonths[range.tmonths.length - 1];
+        let tday = range.tdays[arr[6]] || range.tdays[range.tdays.length - 1];
+        let resetData = this.resetData(fyear, fmonth, fday, tyear, tmonth);
+        if (fyear != checkObj.fyear || fmonth != checkObj.fmonth || fday != checkObj.fday) {
+            arr[4] = 0;
+            arr[5] = 0;
+            arr[6] = 0;
+            range.tyears = resetData.tyears;
+            range.tmonths = resetData.tmonths;
+            range.tdays = resetData.tdays;
+            this.setState({
+                range
+            },()=>{
+                range = Object.assign({}, this.state.range);
+                tyear = range.tyears[0];
+                checkObj.tyears = range.tyears[0];
+                tmonth = range.tmonths[0];
+                checkObj.tmonths = range.tmonths[0];
+                tday = range.tdays[0];
+                checkObj.tdays = range.tdays[0];
+            })       
+        }
+        if (fyear != checkObj.fyear || fmonth != checkObj.fmonth) {
+            range.fdays = resetData.fdays;
+            this.setState({
+                range
+            },()=>{
+                range = Object.assign({}, this.state.range);
+            }) 
+        };
+        if (tyear != checkObj.tyear) {
+            arr[5] = 0;
+            arr[6] = 0;
+            let toData = this.resetToData(fmonth, fday, tyear, tmonth);
+            range.tmonths = toData.tmonths;
+            range.tdays = toData.tdays;
+            this.setState({
+                range
+            },()=>{
+                range = Object.assign({}, this.state.range);
+                tmonth = range.tmonths[0];
+                checkObj.tmonths = range.tmonths[0];
+                tday = range.tdays[0];
+                checkObj.tdays = range.tdays[0];
+            })            
+        };
+        if (tmonth != checkObj.tmonth) {
+            arr[6] = 0;
+            let toData = this.resetToData(fmonth, fday, tyear, tmonth);
+            range.tdays = toData.tdays;
+            this.setState({
+                range
+            },()=>{
+                range = Object.assign({}, this.state.range);
+                tday = range.tdays[0];
+                checkObj.tdays = range.tdays[0];
+            })            
+        };
+        result = full = `${fyear + '-' + fmonth + '-' + fday + '至' + tyear + '-' + tmonth + '-' + tday}`;
+        obj = {
+            fyear, fmonth, fday, tyear, tmonth, tday
+        }
+        this.setState({
+            checkObj: obj,
+            pickVal: arr
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal: arr
+            })
+        });
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    render() {
+        const { pickVal,range }=this.state
+        return (
+            <View className='w-picker-view'>
+                <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                    <PickerViewColumn className="w-picker-flex2">
+                        {
+                            range.fyears.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}年</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn className="w-picker-flex2">
+                        {
+                            range.fmonths.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}月</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn className="w-picker-flex2">
+                        {
+                            range.fdays.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}日</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn className="w-picker-flex1">
+                        <View className="w-picker-item">-</View>
+                    </PickerViewColumn>
+                    <PickerViewColumn className="w-picker-flex2">
+                        {
+                            range.tyears.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}年</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn className="w-picker-flex2">
+                        {
+                            range.tmonths.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}月</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn className="w-picker-flex2">
+                        {
+                            range.tdays.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}日</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                </PickerView>
+            </View>
+        )
+    }
+}
+
+RangePicker.PropTypes = {
+    itemHeight: PropTypes.string,
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.array
+    ]),
+    current: PropTypes.bool,
+    startYear: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+    ]),
+    endYear: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+    ])
+}
+RangePicker.defaultProps = {
+    itemHeight: "44px",
+    value: [],
+    current: false,
+    startYear: 1970,
+    endYear: defaultTime
+}

+ 26 - 0
src/components/common/wPicker/rangePicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

+ 234 - 0
src/components/common/wPicker/regionPicker/index.js

@@ -0,0 +1,234 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, PickerView, PickerViewColumn } from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+import areaData from "../areadata/areadata.js"
+
+export default class RegionPicker extends Component {
+    constructor(props) {
+        super(props);
+        this.state = {
+            pickVal: [],
+            range: {
+                provinces: [],
+                citys: [],
+                areas: []
+            },
+            checkObj: {},
+            values: null
+        }
+    }
+    
+    componentWillMount() {
+        this.initData();
+    }
+
+    componentDidMount() { }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+    componentDidUpdate(prevProps, prevState) {
+        if (prevProps.value !== this.state.values) {
+            // this.initData();
+            this.setState({
+                values: prevProps.value,
+            }, () => {
+                this.initData();
+            })
+        }
+    }
+
+    getData = () => {
+        //用来处理初始化数据
+        let provinces = areaData;
+        let dVal = [];
+        let value = this.props.value;
+        let a1 = value[0];//默认值省
+        let a2 = value[1];//默认值市
+        let a3 = value[2];//默认值区、县
+        let province, city, area;
+        let provinceIndex = provinces.findIndex((v) => {
+            return v[this.props.defaultType] == a1
+        });
+        provinceIndex = value ? (provinceIndex != -1 ? provinceIndex : 0) : 0;
+        let citys = provinces[provinceIndex].children;
+        let cityIndex = citys.findIndex((v) => {
+            return v[this.props.defaultType] == a2
+        });
+        cityIndex = value ? (cityIndex != -1 ? cityIndex : 0) : 0;
+        let areas = citys[cityIndex].children;
+        let areaIndex = areas.findIndex((v) => {
+            return v[this.props.defaultType] == a3;
+        });
+        areaIndex = value ? (areaIndex != -1 ? areaIndex : 0) : 0;
+        dVal = this.props.hideArea ? [provinceIndex, cityIndex] : [provinceIndex, cityIndex, areaIndex];
+        province = provinces[provinceIndex];
+        city = citys[cityIndex];
+        area = areas[areaIndex];
+        let obj = this.props.hideArea ? {
+            province,
+            city
+        } : {
+                province,
+                city,
+                area
+            }
+        return this.props.hideArea ? {
+            provinces,
+            citys,
+            dVal,
+            obj
+        } : {
+                provinces,
+                citys,
+                areas,
+                dVal,
+                obj
+            }
+    }
+
+    initData = () => {
+        let dataData = this.getData();
+        let provinces = dataData.provinces;
+        let citys = dataData.citys;
+        let areas = this.props.hideArea ? [] : dataData.areas;
+        let obj = dataData.obj;
+        let province = obj.province, city = obj.city, area = this.props.hideArea ? {} : obj.area;
+        let value = this.props.hideArea ? [province.value, city.value] : [province.value, city.value, area.value];
+        let result = this.props.hideArea ? `${province.label + city.label}` : `${province.label + city.label + area.label}`;
+        this.setState({
+            range: (this.props.hideArea ? {
+                provinces,
+                citys,
+            } : {
+                    provinces,
+                    citys,
+                    areas
+                })
+        })
+        this.setState({
+            checkObj: obj
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal: dataData.dVal
+            })
+        });
+        this.props.change({
+            result: result,
+            value: value,
+            obj: obj
+        })
+    }
+
+    handlerChange = (e) => {
+        let range = { ...this.state.range }
+        console.log(range)
+        let arr = [...e.detail.value];
+        let provinceIndex = arr[0], cityIndex = arr[1], areaIndex = this.props.hideArea ? 0 : arr[2];
+        let provinces = areaData;
+        let citys = (provinces[provinceIndex] && provinces[provinceIndex].children) || provinces[provinces.length - 1].children || [];
+        let areas = this.props.hideArea ? [] : ((citys[cityIndex] && citys[cityIndex].children) || citys[citys.length - 1].children || []);
+        let province = provinces[provinceIndex] || provinces[provinces.length - 1],
+            city = citys[cityIndex] || [citys.length - 1],
+            area = this.props.hideArea ? {} : (areas[areaIndex] || [areas.length - 1]);
+        let obj = this.props.hideArea ? {
+            province,
+            city
+        } : {
+                province,
+                city,
+                area
+            }
+        if (this.state.checkObj.province.label != province.label) {
+            //当省更新的时候需要刷新市、区县的数据;
+            range.citys = citys;
+            if (!this.props.hideArea) {
+                range.areas = areas;
+            }
+            this.setState({
+                range
+            })
+
+        }
+        if (this.state.checkObj.city.label != city.label) {
+            //当市更新的时候需要刷新区县的数据;
+            if (!this.props.hideArea) {
+                range.areas = areas;
+            }
+            this.setState({
+                range
+            })
+        }
+        this.setState({
+            checkObj: obj,
+            pickVal: arr
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal: arr
+            })
+        });
+        let result = this.props.hideArea ? `${province.label + city.label}` : `${province.label + city.label + area.label}`;
+        let value = this.props.hideArea ? [province.value, city.value] : [province.value, city.value, area.value];
+        this.props.change({
+            result: result,
+            value: value,
+            obj: obj
+        })
+
+    }
+
+    render() {
+        const { pickVal,range }=this.state
+        return (
+            <View className='w-picker-view'>
+                <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                    <PickerViewColumn>
+                        {
+                            range.provinces.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item.label}</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.citys.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item.label}</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.areas.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item.label}</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                </PickerView>
+            </View>
+
+        )
+    }
+}
+
+RegionPicker.propTypes = {
+    itemHeight: PropTypes.string,
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+        PropTypes.array
+    ]),
+    defaultType: PropTypes.string,
+    hideArea: PropTypes.bool
+}
+RegionPicker.defaultProps = {
+    itemHeight: "44px",
+    value: "",
+    defaultType: "label",
+    hideArea: false
+};

+ 26 - 0
src/components/common/wPicker/regionPicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

+ 157 - 0
src/components/common/wPicker/selectorPicker/index.js

@@ -0,0 +1,157 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, PickerView, PickerViewColumn } from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+
+export default class SelectorPicker extends Component {
+    constructor(props) {
+        super(props);
+        this.state = {
+            pickVal: [],
+            value2: null,
+            options2: null,
+        }
+    }
+    
+    componentWillMount() {
+        if (this.props.options.length != 0) {
+            this.initData();
+        }
+    }
+
+    componentDidMount() {
+    }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    componentDidUpdate(prevProps, prevState) {
+        if (prevProps.value != this.state.value2) {
+            this.setState({
+                value2: prevProps.value,
+            }, () => {
+                if (this.props.options.length != 0) {
+                    this.initData();
+                }
+            })
+        }
+        if (prevProps.options != this.state.options2) {
+            this.setState({
+                options2: prevProps.options,
+            }, () => {
+                this.initData();
+            })
+        }
+    }
+
+    nodeKey = () => {
+        return this.props.defaultProps.label;
+    }
+    nodeValue = () => {
+        return this.props.defaultProps.value;
+    }
+    range = () => {
+        return this.props.options
+    }
+
+    initData=()=>{
+        let dVal=this.props.value||"";
+        let data=this.range();
+        let pickVal=[0];
+        let cur=null;
+        let label="";
+        let value,idx;
+        if(this.props.defaultType==this.nodeValue()){
+            value=data.find((v)=>v[this.nodeValue()]==dVal);
+            idx=data.findIndex((v)=>v[this.nodeValue()]==dVal);
+        }else{
+            value=data.find((v)=>v[this.nodeKey()]==dVal);
+            idx=data.findIndex((v)=>v[this.nodeKey()]==dVal);
+        }
+        pickVal=[idx!=-1?idx:0];
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal   
+            })
+        });
+        if(this.props.defaultType==this.nodeValue()){
+            this.props.change({
+                result:value?value[this.nodeKey()]:data[0][this.nodeKey()],
+                value:dVal||data[0][this.nodeKey()],
+                obj:value?value:data[0]
+            })
+        }else{
+            this.props.change({
+                result:dVal||data[0][this.nodeKey()],
+                value:value?value[this.nodeValue()]:data[0][this.nodeValue()],
+                obj:value?value:data[0]
+            })
+        }
+        
+    }
+    handlerChange=(e)=>{
+        let arr=[...e.detail.value];
+        let pickVal=[arr[0]||0];
+        let data=this.range();
+        let cur=data[arr[0]];
+        let label="";
+        let value="";
+        this.setState({
+            pickVal   
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal   
+            })
+        });
+        this.props.change({
+            result:cur['name'],
+            value:cur['id'],
+            obj:cur
+        })
+    }
+
+    render() {
+        const { pickVal }=this.state
+        return (
+            <View className='w-picker-view'>
+                <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                    <PickerViewColumn>
+                        {
+                            this.range().map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item[this.nodeKey()]}</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                </PickerView>
+            </View>
+
+        )
+    }
+}
+
+SelectorPicker.propTypes = {
+    itemHeight: PropTypes.string,
+    options: PropTypes.oneOfType([
+        PropTypes.array,
+        PropTypes.object
+    ]),
+    value: PropTypes.string,
+    defaultType: PropTypes.string,
+    defaultProps: PropTypes.object
+}
+SelectorPicker.defaultProps = {
+    itemHeight: "44px",
+    options: [],
+    value: "",
+    defaultType: "label",
+    defaultProps: {
+        label: "label",
+        value: "value"
+    }
+};
+

+ 26 - 0
src/components/common/wPicker/selectorPicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

+ 299 - 0
src/components/common/wPicker/shorttermPicker/index.js

@@ -0,0 +1,299 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, PickerView, PickerViewColumn } from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+
+export default class ShorttermPicker extends Component {
+
+    constructor(props) {
+        super(props);
+        this.state = {
+            pickVal: [],
+            range: {},
+            checkObj: {},
+            values: null
+        }
+    }
+    componentWillMount() {
+        this.initData();
+    }
+
+    componentDidMount() { }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    componentDidUpdate(prevProps, prevState) {
+        if (prevProps.value !== this.state.values) {
+            // this.initData();
+            this.setState({
+                values: prevProps.value,
+            }, () => {
+                this.initData();
+            })
+        }
+    }
+
+    formatNum = (n) => {
+        return (Number(n) < 10 ? '0' + Number(n) : Number(n) + '');
+    }
+
+    checkValue = (value) => {
+        let strReg = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}(:\d{2})?$/, example = "2019-12-12 18:05:00或者2019-12-12 18:05";
+        if (!strReg.test(value)) {
+            console.log(new Error("请传入与mode、fields匹配的value值,例value=" + example + ""))
+        }
+        return strReg.test(value);
+    }
+
+    resetData = (year, month, day) => {
+        let curDate = this.getCurrenDate();
+        let curFlag = this.props.current;
+        let curYear = curDate.curYear;
+        let curMonth = curDate.curMonth;
+        let curDay = curDate.curDay;
+        let curHour = curDate.curHour;
+        let months = [], days = [], sections = [];
+        let disabledAfter = this.props.disabledAfter;
+        let monthsLen = disabledAfter ? (year * 1 < curYear ? 12 : curMonth) : 12;
+        let totalDays = new Date(year, month, 0).getDate();//计算当月有几天;
+        for (let month = 1; month <= monthsLen; month++) {
+            months.push(this.formatNum(month));
+        };
+        for (let day = 1; day <= daysLen; day++) {
+            days.push(this.formatNum(day));
+        }
+        return {
+            months,
+            days,
+            sections
+        }
+    }
+
+    getData = (dVal) => {
+        //用来处理初始化数据
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let dates = [], hours = [], minutes = [];
+        let curDate = new Date();
+        let curYear = curDate.getFullYear();
+        let curMonth = curDate.getMonth();
+        let curDay = curDate.getDate();
+        let aDate = new Date(curYear, curMonth, curDay);
+        for (let i = 0; i < this.props.expand * 1; i++) {
+            aDate = new Date(curYear, curMonth, curDay + i);
+            let year = aDate.getFullYear();
+            let month = aDate.getMonth() + 1;
+            let day = aDate.getDate();
+            let label = year + "-" + this.formatNum(month) + "-" + this.formatNum(day);
+            switch (i) {
+                case 0:
+                    label = "今天";
+                    break;
+                case 1:
+                    label = "明天";
+                    break;
+                case 2:
+                    label = "后天";
+                    break
+            }
+            dates.push({
+                label: label,
+                value: year + "-" + this.formatNum(month) + "-" + this.formatNum(day)
+            })
+        };
+        for (let i = 0; i < 24; i++) {
+            hours.push({
+                label: this.formatNum(i),
+                value: this.formatNum(i)
+            })
+        }
+        for (let i = 0; i < 60; i++) {
+            minutes.push({
+                label: this.formatNum(i),
+                value: this.formatNum(i)
+            })
+        }
+        return {
+            dates,
+            hours,
+            minutes
+        }
+    }
+
+    getDefaultDate = () => {
+        let value = this.props.value;
+        let reg = /-/g;
+        let defaultDate = value ? new Date(value.replace(reg, "/")) : new Date();
+        let defaultYear = defaultDate.getFullYear();
+        let defaultMonth = defaultDate.getMonth() + 1;
+        let defaultDay = defaultDate.getDate();
+        let defaultDays = new Date(defaultYear, defaultMonth, 0).getDate() * 1;
+        return {
+            defaultDate,
+            defaultYear,
+            defaultMonth,
+            defaultDay,
+            defaultDays
+        }
+    }
+
+    getDval = () => {
+        let value = this.props.value;
+        let dVal = null;
+        let aDate = new Date();
+        let year = this.formatNum(aDate.getFullYear());
+        let month = this.formatNum(aDate.getMonth() + 1);
+        let day = this.formatNum(aDate.getDate());
+        let date = this.formatNum(year) + "-" + this.formatNum(month) + "-" + this.formatNum(day);
+        let hour = aDate.getHours();
+        let minute = aDate.getMinutes();
+        if (value) {
+            let flag = this.checkValue(value);
+            if (!flag) {
+                dVal = [date, hour, minute]
+            } else {
+                let v = value.split(" ");
+                dVal = [v[0], ...v[1].split(":")];
+            }
+        } else {
+            dVal = [date, hour, minute]
+        }
+        return dVal;
+    }
+
+    initData() {
+        let startDate, endDate, startYear, endYear, startMonth, endMonth, startDay, endDay;
+        let dates = [], hours = [], minutes = [];
+        let dVal = [], pickVal = [];
+        let value = this.props.value;
+        let reg = /-/g;
+        let range = {};
+        let result = "", full = "", date, hour, minute, obj = {};
+        let defaultDate = this.getDefaultDate();
+        let defaultYear = defaultDate.defaultYear;
+        let defaultMonth = defaultDate.defaultMonth;
+        let defaultDay = defaultDate.defaultDay;
+        let defaultDays = defaultDate.defaultDays;
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let dateData = [];
+        dVal = this.getDval();
+        console.log(dVal)
+        dateData = this.getData(dVal);
+        console.log(dateData)
+        dates = dateData.dates;
+        hours = dateData.hours;
+        minutes = dateData.minutes;
+        pickVal = [
+            dates.findIndex(n => n.value == dVal[0]) != -1 ? dates.findIndex(n => n.value == dVal[0]) : 0,
+            hours.findIndex(n => n.value == dVal[1]) != -1 ? hours.findIndex(n => n.value == dVal[1]) : 0,
+            minutes.findIndex(n => n.value == dVal[2]) != -1 ? minutes.findIndex(n => n.value == dVal[2]) : 0,
+        ];
+        range = { dates, hours, minutes };
+        console.log(range)
+        date = dVal[0] ? dVal[0] : dates[0].label;
+        hour = dVal[1] ? dVal[1] : hours[0].label;
+        minute = dVal[2] ? dVal[2] : minutes[0].label;
+        result = full = `${date + ' ' + hour + ':' + minute}`;
+        obj = {
+            date,
+            hour,
+            minute
+        }
+        this.setState({
+            range: range,
+            checkObj: obj
+        })
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal
+            })
+        });
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    handlerChange = (e) => {
+        let arr = [...e.detail.value];
+        let data = this.state.range;
+        let date = "", hour = "", minute = "";
+        let result = "", full = "", obj = {};
+        let disabledAfter = this.props.disabledAfter;
+        date = (arr[0] || arr[0] == 0) ? data.dates[arr[0]] || data.dates[data.dates.length - 1] : "";
+        hour = (arr[1] || arr[1] == 0) ? data.hours[arr[1]] || data.hours[data.hours.length - 1] : "";
+        minute = (arr[2] || arr[2] == 0) ? data.minutes[arr[2]] || data.minutes[data.minutes.length - 1] : "";
+        result = full = `${date.label + ' ' + hour.label + ':' + minute.label + ':00'}`;
+        obj = {
+            date,
+            hour,
+            minute
+        }
+        this.setState({
+            checkObj: obj,
+            pickVal: e.detail.value
+        })
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    render() {
+        const { pickVal, range } = this.state
+        return (
+            <View className='w-picker-view'>
+                <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                    <PickerViewColumn>
+                        {
+                            range.dates.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item.label}</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.hours.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item.label}时</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.minutes.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item.label}分</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                </PickerView>
+            </View>
+        )
+    }
+}
+ShorttermPicker.propTypes = {
+    itemHeight: PropTypes.string,
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+        PropTypes.array
+    ]),
+    current: PropTypes.bool,
+    expand: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number
+    ])
+}
+ShorttermPicker.defaultProps = {
+    itemHeight: "44px",
+    value: "",
+    current: false,
+    expand: 30
+};

+ 26 - 0
src/components/common/wPicker/shorttermPicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

+ 264 - 0
src/components/common/wPicker/timePicker/index.js

@@ -0,0 +1,264 @@
+import Taro from '@tarojs/taro'
+import React, { Component } from 'react'
+import { View, PickerView, PickerViewColumn } from '@tarojs/components'
+import './index.scss'
+import PropTypes from 'prop-types';
+
+export default class TimePicker extends Component {
+
+    state = {
+        pickVal: [],
+        range: {},
+        checkObj: {},
+        values:null
+    }
+    componentWillMount() {
+        this.initData();
+    }
+
+    componentDidMount() { }
+
+    componentWillUnmount() { }
+
+    componentDidShow() { }
+
+    componentDidHide() { }
+
+    componentDidUpdate(prevProps, prevState){
+        if (prevProps.value!==this.state.values){
+            // this.initData();
+            this.setState({
+                values:prevProps.value,
+            },()=>{
+                this.initData();
+            })
+        }
+    }
+
+    formatNum = (n) => {
+        return (Number(n) < 10 ? '0' + Number(n) : Number(n) + '');
+    }
+
+    checkValue = (value) => {
+        let strReg = /^\d{2}:\d{2}:\d{2}$/, example = "18:00:05";
+        if (!strReg.test(value)) {
+            console.log(new Error("请传入与mode、fields匹配的value值,例value=" + example + ""))
+        }
+        return strReg.test(value);
+    }
+
+    resetData = (year, month, day, hour, minute) => {
+        let curDate = this.getCurrenDate();
+        let curFlag = this.props.current;
+        let curHour = curDate.curHour;
+        let curMinute = curDate.curMinute;
+        let curSecond = curDate.curSecond;
+        for (let hour = 0; hour < 24; hour++) {
+            hours.push(this.formatNum(hour));
+        }
+        for (let minute = 0; minute < 60; minute++) {
+            minutes.push(this.formatNum(minute));
+        }
+        for (let second = 0; second < 60; second++) {
+            seconds.push(this.formatNum(second));
+        }
+        return {
+            hours,
+            minutes,
+            seconds
+        }
+    }
+    getData = (curDate) => {
+        //用来处理初始化数据
+        let hours = [], minutes = [], seconds = [];
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let fields = this.props.fields;
+        let curHour = curDate.curHour;
+        let curMinute = curDate.curMinute;
+        let curSecond = curDate.curSecond;
+        for (let hour = 0; hour < 24; hour++) {
+            hours.push(this.formatNum(hour));
+        }
+        for (let minute = 0; minute < 60; minute++) {
+            minutes.push(this.formatNum(minute));
+        }
+        for (let second = 0; second < 60; second++) {
+            seconds.push(this.formatNum(second));
+        }
+        return this.props.second ? {
+            hours,
+            minutes,
+            seconds
+        } : {
+                hours,
+                minutes
+            }
+    }
+
+    getCurrenDate = () => {
+        let curDate = new Date();
+        let curHour = curDate.getHours();
+        let curMinute = curDate.getMinutes();
+        let curSecond = curDate.getSeconds();
+        return this.props.second ? {
+            curHour,
+            curMinute,
+            curSecond
+        } : {
+                curHour,
+                curMinute,
+            }
+    }
+
+    getDval = () => {
+        let value = this.props.value;
+        let fields = this.props.fields;
+        let dVal = null;
+        let aDate = new Date();
+        let hour = this.formatNum(aDate.getHours());
+        let minute = this.formatNum(aDate.getMinutes());
+        let second = this.formatNum(aDate.getSeconds());
+        if (value) {
+            let flag = this.checkValue(value);
+            if (!flag) {
+                dVal = [hour, minute, second]
+            } else {
+                dVal = value ? value.split(":") : [];
+            }
+        } else {
+            dVal = this.props.second ? [hour, minute, second] : [hour, minute]
+        }
+        return dVal;
+    }
+
+    initData=()=>{
+        let curDate = this.getCurrenDate();
+        let dateData = this.getData(curDate);
+        let pickVal = [], obj = {}, full = "", result = "", hour = "", minute = "", second = "";
+        let dVal = this.getDval();
+        let curFlag = this.props.current;
+        let disabledAfter = this.props.disabledAfter;
+        let hours = dateData.hours;
+        let minutes = dateData.minutes;
+        let seconds = dateData.seconds;
+        let defaultArr = this.props.second ? [
+            dVal[0] && hours.indexOf(dVal[0]) != -1 ? hours.indexOf(dVal[0]) : 0,
+            dVal[1] && minutes.indexOf(dVal[1]) != -1 ? minutes.indexOf(dVal[1]) : 0,
+            dVal[2] && seconds.indexOf(dVal[2]) != -1 ? seconds.indexOf(dVal[2]) : 0
+        ] : [
+                dVal[0] && hours.indexOf(dVal[0]) != -1 ? hours.indexOf(dVal[0]) : 0,
+                dVal[1] && minutes.indexOf(dVal[1]) != -1 ? minutes.indexOf(dVal[1]) : 0
+            ];
+        pickVal = disabledAfter ? defaultArr : (curFlag ? (this.props.second ? [
+            hours.indexOf(this.formatNum(curDate.curHour)),
+            minutes.indexOf(this.formatNum(curDate.curMinute)),
+            seconds.indexOf(this.formatNum(curDate.curSecond)),
+        ] : [
+                hours.indexOf(this.formatNum(curDate.curHour)),
+                minutes.indexOf(this.formatNum(curDate.curMinute))
+            ]) : defaultArr);
+        this.setState({
+            range:dateData,
+            checkObj:obj
+        })
+        hour = dVal[0] ? dVal[0] : hours[0];
+        minute = dVal[1] ? dVal[1] : minutes[0];
+        if (this.props.second) second = dVal[2] ? dVal[0] : seconds[0];
+        result = this.props.second ? `${hour + ':' + minute + ':' + second}` : `${hour + ':' + minute}`;
+        full = this.props.second ? `${hour + ':' + minute + ':' + second}` : `${hour + ':' + minute + ':00'}`;
+        Taro.nextTick(() => {
+            this.setState({
+                pickVal
+            })
+        });
+        // EventChannel.$emit("change", {
+        //     result: result,
+        //     value: full,
+        //     obj: obj
+        // })
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    handlerChange=(e)=>{
+        let arr=[...e.detail.value];
+        let data=this.state.range;
+        let hour="",minute="",second="",result="",full="",obj={};
+        hour=(arr[0]||arr[0]==0)?data.hours[arr[0]]||data.hours[data.hours.length-1]:"";
+        minute=(arr[1]||arr[1]==0)?data.minutes[arr[1]]||data.minutes[data.minutes.length-1]:"";
+        if(this.props.second)second=(arr[2]||arr[2]==0)?data.seconds[arr[2]]||data.seconds[data.seconds.length-1]:"";
+        obj=this.props.second?{
+            hour,
+            minute,
+            second
+        }:{
+            hour,
+            minute
+        };
+        this.setState({
+            checkObj: obj,
+            pickVal:e.detail.value
+        })
+        result=this.props.second?`${hour+':'+minute+':'+second}`:`${hour+':'+minute}`;
+        full=this.props.second?`${hour+':'+minute+':'+second}`:`${hour+':'+minute+':00'}`;
+        this.props.change({
+            result: result,
+            value: full,
+            obj: obj
+        })
+    }
+
+    render() {
+        const { pickVal, range } = this.state
+        return (
+            <View className='w-picker-view'>
+              1
+                <PickerView className="d-picker-view" indicatorStyle={this.props.itemHeight} value={pickVal} onChange={this.handlerChange}>
+                    <PickerViewColumn>
+                        {
+                            range.hours.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}时</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    <PickerViewColumn>
+                        {
+                            range.minutes.map((item, index) => {
+                                return (<View className="w-picker-item" key={index}>{item}分</View>)
+                            })
+                        }
+                    </PickerViewColumn>
+                    {
+                        this.props.second?(<PickerViewColumn>
+                            {
+                                range.seconds.map((item, index) => {
+                                    return (<View className="w-picker-item" key={index}>{item}秒</View>)
+                                })
+                            }
+                        </PickerViewColumn>):null
+                    }
+                </PickerView>
+            </View>
+        )
+    }
+}
+TimePicker.propTypes = {
+    itemHeight: PropTypes.string,
+    value: PropTypes.oneOfType([
+        PropTypes.string,
+        PropTypes.number,
+        PropTypes.array
+    ]),
+    current: PropTypes.bool,
+    second: PropTypes.bool
+}
+TimePicker.defaultProps = {
+    itemHeight: "44px",
+    value: "",
+    current: false,
+    second: true
+};

+ 26 - 0
src/components/common/wPicker/timePicker/index.scss

@@ -0,0 +1,26 @@
+.w-picker-flex2{
+	flex:2;
+}
+.w-picker-flex1{
+	flex:1;
+}
+.w-picker-view {
+	width: 100%;
+	height: 476px;
+	overflow: hidden;
+	background-color: rgba(255, 255, 255, 1);
+	z-index: 666;
+}
+.d-picker-view{
+	height: 100%;
+}
+
+.w-picker-item {
+  text-align: center;
+  width: 100%;
+  height: 88px;
+  line-height: 88px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  font-size: 30px;
+}

BIN
src/image/egressSelect.png


BIN
src/image/egressUnSelect.png


BIN
src/image/examineSelect.png


BIN
src/image/examineUnSelect.png


BIN
src/image/noData.png


BIN
src/image/punchClockSelect.png


BIN
src/image/punchClockUnSelect.png


+ 109 - 0
src/pages/applyDepart/enterprise.jsx

@@ -0,0 +1,109 @@
+import React,{Component} from 'react';
+import {View} from '@tarojs/components'
+import {getUserByName} from '../../utils/servers/servers';
+
+import {AtSearchBar, AtListItem} from 'taro-ui'
+
+import 'taro-ui/dist/style/components/search-bar.scss';
+import 'taro-ui/dist/style/components/button.scss';
+import 'taro-ui/dist/style/components/icon.scss';
+import 'taro-ui/dist/style/components/list.scss';
+import 'taro-ui/dist/style/components/icon.scss';
+
+import ListBottomStart from '../../components/common/listBottomStart';
+
+import Taro from '@tarojs/taro';
+
+class Enterprise extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      value:'',
+      loading:false,
+      data:[],
+      listState:'NO_DATA'
+    }
+    this.onChange = this.onChange.bind(this);
+  }
+
+  onChange (value) {
+    this.setState({
+      value,
+    })
+    if(value.length < 4){return}
+    this.setState({
+      listState: 'LOADING'
+    })
+    getUserByName({
+      name:value
+    }).then((data)=>{
+      if(data.error.length === 0){
+        if(data.data.length === 0){
+          this.setState({
+            listState: 'NO_DATA'
+          })
+        }else{
+          this.setState({
+            listState: 'NO_MORE_DATA'
+          })
+        }
+        this.setState({
+          data:data.data
+        })
+      }else{
+        this.setState({
+          listState: data.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
+        })
+        Taro.showToast({
+          title:data.error[0].message
+        })
+      }
+    }).catch(()=>{
+      this.setState({
+        listState: 'RELOAD'
+      })
+    })
+  }
+
+  render() {
+    return (
+      <>
+        <AtSearchBar
+          showActionButton
+          value={this.state.value}
+          onChange={this.onChange}
+          onClear={()=>{
+            this.setState({
+              value:'',
+              data:[],
+              listState:'NO_DATA'
+            })
+          }}
+        />
+        <View>
+          {
+            this.state.data.map((v,k)=>(
+              <View key={k}>
+                <AtListItem
+                  title={v.name}
+                  arrow='right'
+                  iconInfo={{ size: 25, color: '#000000', value: 'bookmark', }}
+                  onClick={()=>{
+                    Taro.eventCenter.trigger('enterprise', v)
+                  }}
+                />
+              </View>
+            ))
+          }
+          <ListBottomStart
+            state={this.state.listState}
+            reload={()=>{
+              this.onChange(this.state.value)
+            }}/>
+        </View>
+      </>
+    )
+  }
+}
+
+export default Enterprise;

+ 3 - 0
src/pages/applyDepart/index.config.js

@@ -0,0 +1,3 @@
+export default {
+  navigationBarTitleText: '申请外出'
+}

+ 92 - 0
src/pages/applyDepart/index.jsx

@@ -0,0 +1,92 @@
+import { Component } from 'react'
+import { connect } from 'react-redux'
+import {View} from '@tarojs/components'
+import { AtSteps,AtTabs, AtTabsPane } from 'taro-ui'
+
+import 'taro-ui/dist/style/components/steps.scss';
+import 'taro-ui/dist/style/components/icon.scss';
+import 'taro-ui/dist/style/components/tabs.scss';
+
+import UserFloatingLayer from '../../components/common/userFloatingLayer';
+
+import { add, minus, asyncAdd } from '../../actions/counter';
+import Enterprise from './enterprise';
+import PublicContent from './publicContent';
+
+import './index.less'
+import Taro from '@tarojs/taro';
+
+const items = [
+  { 'title': '选择公出企业' },
+  { 'title': '填写公出内容'},
+  { 'title': '提交公出审核' }
+]
+
+@connect(({ counter }) => ({
+  counter
+}), (dispatch) => ({
+  add () {
+    dispatch(add())
+  },
+  dec () {
+    dispatch(minus())
+  },
+  asyncAdd () {
+    dispatch(asyncAdd())
+  }
+}))
+class ApplyDepart extends Component {
+  constructor(props) {
+    super(props);
+    this.state={
+      current:1,
+      enterpriseId:''
+    }
+  }
+
+  componentDidShow () {
+    Taro.eventCenter.on('enterprise', (arg) => {
+      this.setState({
+        current:1,
+        enterpriseId:arg.id
+      })
+    })
+    Taro.eventCenter.on('enterpriseBack', () => {
+      this.setState({
+        current:0,
+      })
+    })
+  }
+
+  componentDidMount() {
+
+  }
+
+  render () {
+    return (
+      <View className='applyDepart'>
+        <UserFloatingLayer/>
+        <View className='atStepsContent'>
+          <AtSteps
+            items={items}
+            current={this.state.current}
+          />
+          <View className='content'>
+            <View style={{display:this.state.current===0 ? 'block' : 'none'}}>
+              <Enterprise/>
+            </View>
+            <View style={{display:this.state.current===1 ? 'block' : 'none'}}>
+              <PublicContent id={this.state.enterpriseId}/>
+            </View>
+            <View style={{display:this.state.current===2 ? 'block' : 'none'}}>
+              <Enterprise/>
+            </View>
+          </View>
+        </View>
+      </View>
+    )
+  }
+}
+
+export default ApplyDepart
+

+ 8 - 0
src/pages/applyDepart/index.less

@@ -0,0 +1,8 @@
+.applyDepart{
+  .atStepsContent{
+    padding-top: 10px;
+    .content{
+      padding-top: 20px;
+    }
+  }
+}

+ 108 - 0
src/pages/applyDepart/publicContent.jsx

@@ -0,0 +1,108 @@
+import React,{Component} from 'react';
+import {View} from '@tarojs/components'
+
+import WPicker from '../../components/common/wPicker'
+
+import { AtForm,AtButton,AtInput,AtIcon } from 'taro-ui'
+
+import 'taro-ui/dist/style/components/form.scss';
+import 'taro-ui/dist/style/components/button.scss';
+import 'taro-ui/dist/style/components/loading.scss';
+import 'taro-ui/dist/style/components/input.scss';
+import 'taro-ui/dist/style/components/icon.scss';
+import 'taro-ui/dist/style/components/icon.scss';
+
+import './publicContent.less';
+
+import Taro from '@tarojs/taro';
+
+class PublicContent extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      rangeVal:[],
+      selectArrderName:''
+    }
+    this.onSubmit = this.onSubmit.bind(this);
+    this.selectArrder = this.selectArrder.bind(this);
+    this.WPicker = null
+  }
+
+  componentDidShow() {
+    const chooseLocation = requirePlugin('chooseLocation');
+    const location = chooseLocation.getLocation();
+    console.log(location,'location')
+    if(location){
+      this.setState({
+        selectArrderName: location.name
+      })
+    }
+  }
+
+  onSubmit(){
+    console.log(this.WPicker)
+  }
+
+  selectArrder(){
+    const key = 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'; //使用在腾讯位置服务申请的key
+    const referer = '科德打卡定位'; //调用插件的app的名称
+    const location = JSON.stringify({
+      latitude: 39.89631551,
+      longitude: 116.323459711
+    });
+    const category = '生活服务,娱乐休闲';
+
+    Taro.navigateTo({
+      url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&location=' + location + '&category=' + category
+    });
+  }
+
+  render() {
+    return (
+      <View className='publicContent'>
+        <WPicker
+          mode='range'
+          value={this.state.rangeVal}
+          current
+          confirm={(e)=>{
+            this.setState({
+              rangeVal:e.value.split('至')
+            })
+            console.log(e)
+          }}
+          cancel={()=>{
+
+          }}
+          disabledAfter={false}
+          onRef={(ref)=>{this.WPicker = ref}}/>
+          <View className='formItem'>
+            <View className='formName'>外出企业:</View>
+            <View className='formValue'>{'湖南****科技有限公司'}</View>
+          </View>
+        <View className='formItem'>
+          <View className='formName'>公出时间:</View>
+          <View className='formValue' onClick={()=>{this.WPicker.show()}}>
+            {this.state.rangeVal.join('至')}
+            <AtIcon value='chevron-right' size='30' color='#bbbbbb'/>
+          </View>
+        </View>
+        <View className='formItem'>
+          <View className='formName'>公出地点:</View>
+          <View className='formValue' onClick={this.selectArrder}>
+            <View>
+              {this.state.selectArrderName}
+              <AtIcon value='chevron-right' size='30' color='#bbbbbb'/>
+            </View>
+          </View>
+        </View>
+        <View className='tips'>地址选择错误,将影响打卡定位,选择后请认真核对</View>
+          <AtButton onClick={()=>{
+            Taro.eventCenter.trigger('enterpriseBack')
+          }}>上一步</AtButton>
+          <AtButton onClick={this.onSubmit}>提交申请</AtButton>
+      </View>
+    )
+  }
+}
+
+export default PublicContent;

+ 21 - 0
src/pages/applyDepart/publicContent.less

@@ -0,0 +1,21 @@
+.publicContent{
+  padding: 20px;
+  .formItem{
+    display: flex;
+    align-items: center;
+    font-size: 35px;
+    padding-bottom: 15px;
+    .formName{
+      white-space: nowrap;
+    }
+    .formValue{
+      text-align: right;
+      flex: 1;
+    }
+  }
+  .tips{
+    font-size: 20px;
+    text-align: left;
+    color: #f00;
+  }
+}

+ 3 - 0
src/pages/examine/index.config.js

@@ -0,0 +1,3 @@
+export default {
+  navigationBarTitleText: '审核'
+}

+ 49 - 0
src/pages/examine/index.jsx

@@ -0,0 +1,49 @@
+import { Component } from 'react'
+import { connect } from 'react-redux'
+import {View} from '@tarojs/components'
+
+import { add, minus, asyncAdd } from '../../actions/counter'
+
+import './index.less'
+
+
+@connect(({ counter }) => ({
+  counter
+}), (dispatch) => ({
+  add () {
+    dispatch(add())
+  },
+  dec () {
+    dispatch(minus())
+  },
+  asyncAdd () {
+    dispatch(asyncAdd())
+  }
+}))
+class Examine extends Component {
+  constructor(props) {
+    super(props);
+    this.state={
+
+    }
+  }
+
+  componentDidShow () {
+
+  }
+
+  componentDidMount() {
+
+  }
+
+  render () {
+    return (
+      <View>
+        1
+      </View>
+    )
+  }
+}
+
+export default Examine
+

+ 0 - 0
src/pages/examine/index.less


src/pages/index/index.config.js → src/pages/list/index.config.js


src/pages/index/index.jsx → src/pages/list/index.jsx


src/pages/index/index.less → src/pages/list/index.less


+ 3 - 3
src/pages/login/index.jsx

@@ -2,7 +2,7 @@ import { Component } from 'react'
 import Taro from '@tarojs/taro'
 import { connect } from 'react-redux'
 import {View, Map, Button, Input} from '@tarojs/components'
-import {login,test} from '../../utils/servers/servers';
+import {login} from '../../utils/servers/servers';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
 
@@ -67,8 +67,8 @@ class Login extends Component {
       this.setState({
         loading:false
       });
-      Taro.navigateTo({
-        url: '/pages/index/index',
+      Taro.switchTab({
+        url: '/pages/applyDepart/index',
       })
     }).catch(()=>{
       this.setState({

+ 3 - 0
src/pages/punchClock/index.config.js

@@ -0,0 +1,3 @@
+export default {
+  navigationBarTitleText: '打卡'
+}

+ 49 - 0
src/pages/punchClock/index.jsx

@@ -0,0 +1,49 @@
+import { Component } from 'react'
+import { connect } from 'react-redux'
+import {View} from '@tarojs/components'
+
+import { add, minus, asyncAdd } from '../../actions/counter'
+
+import './index.less'
+
+
+@connect(({ counter }) => ({
+  counter
+}), (dispatch) => ({
+  add () {
+    dispatch(add())
+  },
+  dec () {
+    dispatch(minus())
+  },
+  asyncAdd () {
+    dispatch(asyncAdd())
+  }
+}))
+class PunchClock extends Component {
+  constructor(props) {
+    super(props);
+    this.state={
+
+    }
+  }
+
+  componentDidShow () {
+
+  }
+
+  componentDidMount() {
+
+  }
+
+  render () {
+    return (
+      <View>
+        1
+      </View>
+    )
+  }
+}
+
+export default PunchClock
+

+ 0 - 0
src/pages/punchClock/index.less


+ 2 - 2
src/utils/servers/baseUrl.js

@@ -2,10 +2,10 @@ const getBaseUrl = (url) => {
   let BASE_URL = '';
   if (process.env.NODE_ENV === 'development') {
     //开发环境 - 根据请求不同返回不同的BASE_URL
-    BASE_URL = 'http://172.16.0.188:8080'
+    BASE_URL = 'http://uat.jishutao.com'
   } else {
     // 生产环境
-    BASE_URL = 'http://172.16.0.188:8080'
+    BASE_URL = 'http://uat.jishutao.com'
   }
   return BASE_URL
 }

+ 5 - 0
src/utils/servers/servers.js

@@ -32,6 +32,11 @@ export const login = (res) => {
   })
 }
 
+export const getUserByName = (postData = {}) => {
+  return HTTPREQUEST.get('/api/admin/customer/getUserByName', postData)
+}
+
+
 //测试
 export const test = (postData = {}) => {
   return HTTPREQUEST.get('/open/getVCode', postData)

+ 511 - 4
yarn.lock

@@ -2,6 +2,40 @@
 # yarn lockfile v1
 
 
+"@ant-design/colors@^6.0.0":
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/@ant-design/colors/-/colors-6.0.0.tgz#9b9366257cffcc47db42b9d0203bb592c13c0298"
+  integrity sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==
+  dependencies:
+    "@ctrl/tinycolor" "^3.4.0"
+
+"@ant-design/icons-svg@^4.0.0":
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz#480b025f4b20ef7fe8f47d4a4846e4fee84ea06c"
+  integrity sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ==
+
+"@ant-design/icons@^4.6.2":
+  version "4.6.2"
+  resolved "https://registry.yarnpkg.com/@ant-design/icons/-/icons-4.6.2.tgz#290f2e8cde505ab081fda63e511e82d3c48be982"
+  integrity sha512-QsBG2BxBYU/rxr2eb8b2cZ4rPKAPBpzAR+0v6rrZLp/lnyvflLH3tw1vregK+M7aJauGWjIGNdFmUfpAOtw25A==
+  dependencies:
+    "@ant-design/colors" "^6.0.0"
+    "@ant-design/icons-svg" "^4.0.0"
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    rc-util "^5.9.4"
+
+"@ant-design/react-slick@~0.28.1":
+  version "0.28.3"
+  resolved "https://registry.yarnpkg.com/@ant-design/react-slick/-/react-slick-0.28.3.tgz#ad5cf1cf50363c1a3842874d69d0ce1f26696e71"
+  integrity sha512-u3onF2VevGRbkGbgpldVX/nzd7LFtLeZJE0x2xIFT2qYHKkJZ6QT/jQ7KqYK4UpeTndoyrbMqLN4DiJza4BVBg==
+  dependencies:
+    "@babel/runtime" "^7.10.4"
+    classnames "^2.2.5"
+    json2mq "^0.2.0"
+    lodash "^4.17.21"
+    resize-observer-polyfill "^1.5.0"
+
 "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13":
   version "7.12.13"
   resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
@@ -928,7 +962,7 @@
   dependencies:
     regenerator-runtime "^0.13.4"
 
-"@babel/runtime@^7.1.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.7.7", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
+"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.7.7", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
   version "7.14.0"
   resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
   integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
@@ -966,6 +1000,11 @@
     "@babel/helper-validator-identifier" "^7.14.0"
     to-fast-properties "^2.0.0"
 
+"@ctrl/tinycolor@^3.4.0":
+  version "3.4.0"
+  resolved "https://registry.yarnpkg.com/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz#c3c5ae543c897caa9c2a68630bed355be5f9990f"
+  integrity sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==
+
 "@hapi/address@^4.0.1":
   version "4.1.0"
   resolved "https://registry.yarnpkg.com/@hapi/address/-/address-4.1.0.tgz#d60c5c0d930e77456fdcde2598e77302e2955e1d"
@@ -1838,6 +1877,54 @@ ansi-styles@^4.1.0:
   dependencies:
     color-convert "^2.0.1"
 
+antd@^4.16.1:
+  version "4.16.1"
+  resolved "https://registry.yarnpkg.com/antd/-/antd-4.16.1.tgz#7e6bcd24a8b7afb0e0c96239bc3a986ef3958167"
+  integrity sha512-v7KfUYvEAiqfTECKC4/VkpRPB/4RRxZLR3b2kKCYEtcj4nEHvsOKfO5CDbWVtSUmCehxOXNR2lV+UNy06KHBnA==
+  dependencies:
+    "@ant-design/colors" "^6.0.0"
+    "@ant-design/icons" "^4.6.2"
+    "@ant-design/react-slick" "~0.28.1"
+    "@babel/runtime" "^7.12.5"
+    array-tree-filter "^2.1.0"
+    classnames "^2.2.6"
+    copy-to-clipboard "^3.2.0"
+    lodash "^4.17.21"
+    moment "^2.25.3"
+    rc-cascader "~1.4.0"
+    rc-checkbox "~2.3.0"
+    rc-collapse "~3.1.0"
+    rc-dialog "~8.5.1"
+    rc-drawer "~4.3.0"
+    rc-dropdown "~3.2.0"
+    rc-field-form "~1.20.0"
+    rc-image "~5.2.4"
+    rc-input-number "~7.1.0"
+    rc-mentions "~1.6.1"
+    rc-menu "~9.0.9"
+    rc-motion "^2.4.0"
+    rc-notification "~4.5.7"
+    rc-pagination "~3.1.6"
+    rc-picker "~2.5.10"
+    rc-progress "~3.1.0"
+    rc-rate "~2.9.0"
+    rc-resize-observer "^1.0.0"
+    rc-select "~12.1.6"
+    rc-slider "~9.7.1"
+    rc-steps "~4.1.0"
+    rc-switch "~3.2.0"
+    rc-table "~7.15.1"
+    rc-tabs "~11.9.1"
+    rc-textarea "~0.3.0"
+    rc-tooltip "~5.1.1"
+    rc-tree "~4.1.0"
+    rc-tree-select "~4.3.0"
+    rc-trigger "^5.2.1"
+    rc-upload "~4.3.0"
+    rc-util "^5.13.1"
+    scroll-into-view-if-needed "^2.2.25"
+    warning "^4.0.3"
+
 anymatch@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
@@ -1937,6 +2024,11 @@ array-includes@^3.1.1, array-includes@^3.1.2, array-includes@^3.1.3:
     get-intrinsic "^1.1.1"
     is-string "^1.0.5"
 
+array-tree-filter@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz#873ac00fec83749f255ac8dd083814b4f6329190"
+  integrity sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==
+
 array-union@^1.0.1:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
@@ -2055,6 +2147,11 @@ async-limiter@~1.0.0:
   resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
   integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
 
+async-validator@^3.0.3:
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/async-validator/-/async-validator-3.5.2.tgz#68e866a96824e8b2694ff7a831c1a25c44d5e500"
+  integrity sha512-8eLCg00W9pIRZSB781UUX/H6Oskmm8xloZfr09lz5bikRpBVDlJ3hRVuxxP1SxcwsEYfJ4IU8Q19Y8/893r3rQ==
+
 async@^2.5.0, async@^2.6.2:
   version "2.6.3"
   resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
@@ -2786,7 +2883,7 @@ class-utils@^0.3.5:
     isobject "^3.0.0"
     static-extend "^0.1.1"
 
-classnames@^2.2.5, classnames@^2.2.6:
+classnames@2.x, classnames@^2.2.1, classnames@^2.2.3, classnames@^2.2.5, classnames@^2.2.6:
   version "2.3.1"
   resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e"
   integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==
@@ -2974,6 +3071,11 @@ compression@^1.7.4:
     safe-buffer "5.1.2"
     vary "~1.1.2"
 
+compute-scroll-into-view@^1.0.17:
+  version "1.0.17"
+  resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab"
+  integrity sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==
+
 concat-map@0.0.1:
   version "0.0.1"
   resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
@@ -3072,6 +3174,13 @@ copy-descriptor@^0.1.0:
   resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
   integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
 
+copy-to-clipboard@^3.2.0:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae"
+  integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==
+  dependencies:
+    toggle-selection "^1.0.6"
+
 copy-webpack-plugin@5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz#5481a03dea1123d88a988c6ff8b78247214f0b88"
@@ -3408,6 +3517,11 @@ data-urls@^1.1.0:
     whatwg-mimetype "^2.2.0"
     whatwg-url "^7.0.0"
 
+date-fns@^2.15.0:
+  version "2.22.1"
+  resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.22.1.tgz#1e5af959831ebb1d82992bf67b765052d8f0efc4"
+  integrity sha512-yUFPQjrxEmIsMqlHhAhmxkuH769baF21Kk+nZwZGyrMoyLA+LugaQtC0+Tqf9CBUUULWwUJt6Q5ySI3LJDDCGg==
+
 dayjs@^1.10.4, dayjs@^1.7.7:
   version "1.10.4"
   resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.4.tgz#8e544a9b8683f61783f570980a8a80eaf54ab1e2"
@@ -3664,6 +3778,11 @@ doctrine@^3.0.0:
   dependencies:
     esutils "^2.0.2"
 
+dom-align@^1.7.0:
+  version "1.12.2"
+  resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b"
+  integrity sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg==
+
 dom-converter@^0.2:
   version "0.2.0"
   resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
@@ -5943,6 +6062,13 @@ json-stringify-safe@~5.0.1:
   resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
   integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
 
+json2mq@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/json2mq/-/json2mq-0.2.0.tgz#b637bd3ba9eabe122c83e9720483aeb10d2c904a"
+  integrity sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=
+  dependencies:
+    string-convert "^0.2.0"
+
 json3@^3.3.2:
   version "3.3.3"
   resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
@@ -6235,7 +6361,7 @@ lodash@4.17.20:
   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
   integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
 
-lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.3, lodash@^4.17.4, lodash@~4.17.10:
+lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.17.4, lodash@~4.17.10:
   version "4.17.21"
   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
   integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -6708,6 +6834,11 @@ mobile-detect@^1.4.2:
   resolved "https://registry.yarnpkg.com/mobile-detect/-/mobile-detect-1.4.5.tgz#da393c3c413ca1a9bcdd9ced653c38281c0fb6ad"
   integrity sha512-yc0LhH6tItlvfLBugVUEtgawwFU2sIe+cSdmRJJCTMZ5GEJyLxNyC/NIOAOGk67Fa8GNpOttO3Xz/1bHpXFD/g==
 
+moment@^2.24.0, moment@^2.25.3:
+  version "2.29.1"
+  resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
+  integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
+
 move-concurrently@^1.0.1:
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
@@ -8074,6 +8205,348 @@ raw-body@2.4.0:
     iconv-lite "0.4.24"
     unpipe "1.0.0"
 
+rc-align@^4.0.0:
+  version "4.0.9"
+  resolved "https://registry.yarnpkg.com/rc-align/-/rc-align-4.0.9.tgz#46d8801c4a139ff6a65ad1674e8efceac98f85f2"
+  integrity sha512-myAM2R4qoB6LqBul0leaqY8gFaiECDJ3MtQDmzDo9xM9NRT/04TvWOYd2YHU9zvGzqk9QXF6S9/MifzSKDZeMw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    dom-align "^1.7.0"
+    rc-util "^5.3.0"
+    resize-observer-polyfill "^1.5.1"
+
+rc-cascader@~1.4.0:
+  version "1.4.3"
+  resolved "https://registry.yarnpkg.com/rc-cascader/-/rc-cascader-1.4.3.tgz#d91b0dcf8157b60ebe9ec3e58b4db054d5299464"
+  integrity sha512-Q4l9Mv8aaISJ+giVnM9IaXxDeMqHUGLvi4F+LksS6pHlaKlN4awop/L+IMjIXpL+ug/ojaCyv/ixcVopJYYCVA==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    array-tree-filter "^2.1.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.0.1"
+    warning "^4.0.1"
+
+rc-checkbox@~2.3.0:
+  version "2.3.2"
+  resolved "https://registry.yarnpkg.com/rc-checkbox/-/rc-checkbox-2.3.2.tgz#f91b3678c7edb2baa8121c9483c664fa6f0aefc1"
+  integrity sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+
+rc-collapse@~3.1.0:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/rc-collapse/-/rc-collapse-3.1.1.tgz#2421d454e85781d1cf2f04f906918e0677d779e6"
+  integrity sha512-/oetKApTHzGGeR8Q8vD168EXkCs2MpEIrURGyy2D+LrrJd29LY/huuIMvOiJoSV6W3bcGhJqIdgHtg1Dxn1smA==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.3.4"
+    rc-util "^5.2.1"
+    shallowequal "^1.1.0"
+
+rc-dialog@~8.5.0, rc-dialog@~8.5.1:
+  version "8.5.2"
+  resolved "https://registry.yarnpkg.com/rc-dialog/-/rc-dialog-8.5.2.tgz#530e289c25a31c15c85a0e8a4ba3f33414bff418"
+  integrity sha512-3n4taFcjqhTE9uNuzjB+nPDeqgRBTEGBfe46mb1e7r88DgDo0lL4NnxY/PZ6PJKd2tsCt+RrgF/+YeTvJ/Thsw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-motion "^2.3.0"
+    rc-util "^5.6.1"
+
+rc-drawer@~4.3.0:
+  version "4.3.1"
+  resolved "https://registry.yarnpkg.com/rc-drawer/-/rc-drawer-4.3.1.tgz#356333a7af01b777abd685c96c2ce62efb44f3f3"
+  integrity sha512-GMfFy4maqxS9faYXEhQ+0cA1xtkddEQzraf6SAdzWbn444DrrLogwYPk1NXSpdXjLCLxgxOj9MYtyYG42JsfXg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-util "^5.7.0"
+
+rc-dropdown@^3.2.0, rc-dropdown@~3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/rc-dropdown/-/rc-dropdown-3.2.0.tgz#da6c2ada403842baee3a9e909a0b1a91ba3e1090"
+  integrity sha512-j1HSw+/QqlhxyTEF6BArVZnTmezw2LnSmRk6I9W7BCqNCKaRwleRmMMs1PHbuaG8dKHVqP6e21RQ7vPBLVnnNw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-trigger "^5.0.4"
+
+rc-field-form@~1.20.0:
+  version "1.20.1"
+  resolved "https://registry.yarnpkg.com/rc-field-form/-/rc-field-form-1.20.1.tgz#d1c51888107cf075b42704b7b575bef84c359291"
+  integrity sha512-f64KEZop7zSlrG4ef/PLlH12SLn6iHDQ3sTG+RfKBM45hikwV1i8qMf53xoX12NvXXWg1VwchggX/FSso4bWaA==
+  dependencies:
+    "@babel/runtime" "^7.8.4"
+    async-validator "^3.0.3"
+    rc-util "^5.8.0"
+
+rc-image@~5.2.4:
+  version "5.2.4"
+  resolved "https://registry.yarnpkg.com/rc-image/-/rc-image-5.2.4.tgz#ff1059f937bde6ca918c6f1beb316beba911f255"
+  integrity sha512-kWOjhZC1OoGKfvWqtDoO9r8WUNswBwnjcstI6rf7HMudz0usmbGvewcWqsOhyaBRJL9+I4eeG+xiAoxV1xi75Q==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    rc-dialog "~8.5.0"
+    rc-util "^5.0.6"
+
+rc-input-number@~7.1.0:
+  version "7.1.3"
+  resolved "https://registry.yarnpkg.com/rc-input-number/-/rc-input-number-7.1.3.tgz#152872d77bf0958980017127622772db652924c0"
+  integrity sha512-o7/YTXAnxio53lCV402OcFRn8/jcm6YfKjCzPd+al0drQ7oyQkjQqcWbacSQwwN4gCHmqXGfgnRuAuBHoYz1dw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.9.8"
+
+rc-mentions@~1.6.1:
+  version "1.6.1"
+  resolved "https://registry.yarnpkg.com/rc-mentions/-/rc-mentions-1.6.1.tgz#46035027d64aa33ef840ba0fbd411871e34617ae"
+  integrity sha512-LDzGI8jJVGnkhpTZxZuYBhMz3avcZZqPGejikchh97xPni/g4ht714Flh7DVvuzHQ+BoKHhIjobHnw1rcP8erg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+    rc-menu "^9.0.0"
+    rc-textarea "^0.3.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.0.1"
+
+rc-menu@^9.0.0, rc-menu@~9.0.9:
+  version "9.0.10"
+  resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-9.0.10.tgz#59fde6442c138dc60693fbe02ea50c33c8164f38"
+  integrity sha512-wb7fZZ3f5KBqr7v3q8U1DB5K4SEm31KLPe/aANyrHajVJjQpiiGTMLF7ZB7vyqjC4QJq0SJewB4FkumT2U86fw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.4.3"
+    rc-overflow "^1.2.0"
+    rc-trigger "^5.1.2"
+    rc-util "^5.12.0"
+    shallowequal "^1.1.0"
+
+rc-motion@^2.0.0, rc-motion@^2.0.1, rc-motion@^2.2.0, rc-motion@^2.3.0, rc-motion@^2.3.4, rc-motion@^2.4.0, rc-motion@^2.4.3:
+  version "2.4.3"
+  resolved "https://registry.yarnpkg.com/rc-motion/-/rc-motion-2.4.3.tgz#2afd129da8764ee0372ba83442949d8ecb1c7ad2"
+  integrity sha512-GZLLFXHl/VqTfI7bSZNNZozcblNmDka1AAoQig7EZ6s0rWg5y0RlgrcHWO+W+nrOVbYfJDxoaQUoP2fEmvCWmA==
+  dependencies:
+    "@babel/runtime" "^7.11.1"
+    classnames "^2.2.1"
+    rc-util "^5.2.1"
+
+rc-notification@~4.5.7:
+  version "4.5.7"
+  resolved "https://registry.yarnpkg.com/rc-notification/-/rc-notification-4.5.7.tgz#265e6e6a0c1a0fac63d6abd4d832eb8ff31522f1"
+  integrity sha512-zhTGUjBIItbx96SiRu3KVURcLOydLUHZCPpYEn1zvh+re//Tnq/wSxN4FKgp38n4HOgHSVxcLEeSxBMTeBBDdw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.2.0"
+    rc-util "^5.0.1"
+
+rc-overflow@^1.0.0, rc-overflow@^1.2.0:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/rc-overflow/-/rc-overflow-1.2.1.tgz#ea13f1e2ec152d8adcfc3bf1e53fa2b62a1d2cff"
+  integrity sha512-TCB8QiEnmNUbsJZX1GU8ZvIgVxk42eu3yaRdDZc2HFjVeT3HBSfscVaCVzBuH3NR5IWrQLodI0p6MZEGFn+KiA==
+  dependencies:
+    "@babel/runtime" "^7.11.1"
+    classnames "^2.2.1"
+    rc-resize-observer "^1.0.0"
+    rc-util "^5.5.1"
+
+rc-pagination@~3.1.6:
+  version "3.1.6"
+  resolved "https://registry.yarnpkg.com/rc-pagination/-/rc-pagination-3.1.6.tgz#db3c06e50270b52fe272ac527c1fdc2c8d28af1f"
+  integrity sha512-Pb2zJEt8uxXzYCWx/2qwsYZ3vSS9Eqdw0cJBli6C58/iYhmvutSBqrBJh51Z5UzYc5ZcW5CMeP5LbbKE1J3rpw==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+
+rc-picker@~2.5.10:
+  version "2.5.10"
+  resolved "https://registry.yarnpkg.com/rc-picker/-/rc-picker-2.5.10.tgz#0db17c535a37abbe5d016bdcdfb13d6626f802d0"
+  integrity sha512-d2or2jql9SSY8CaRPybpbKkXBq3bZ6g88UKyWQZBLTCrc92Xm87RfRC/P3UEQo/CLmia3jVF7IXVi1HmNe2DZA==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    date-fns "^2.15.0"
+    moment "^2.24.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.4.0"
+    shallowequal "^1.1.0"
+
+rc-progress@~3.1.0:
+  version "3.1.4"
+  resolved "https://registry.yarnpkg.com/rc-progress/-/rc-progress-3.1.4.tgz#66040d0fae7d8ced2b38588378eccb2864bad615"
+  integrity sha512-XBAif08eunHssGeIdxMXOmRQRULdHaDdIFENQ578CMb4dyewahmmfJRyab+hw4KH4XssEzzYOkAInTLS7JJG+Q==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.6"
+
+rc-rate@~2.9.0:
+  version "2.9.1"
+  resolved "https://registry.yarnpkg.com/rc-rate/-/rc-rate-2.9.1.tgz#e43cb95c4eb90a2c1e0b16ec6614d8c43530a731"
+  integrity sha512-MmIU7FT8W4LYRRHJD1sgG366qKtSaKb67D0/vVvJYR0lrCuRrCiVQ5qhfT5ghVO4wuVIORGpZs7ZKaYu+KMUzA==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.0.1"
+
+rc-resize-observer@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/rc-resize-observer/-/rc-resize-observer-1.0.0.tgz#97fb89856f62fec32ab6e40933935cf58e2e102d"
+  integrity sha512-RgKGukg1mlzyGdvzF7o/LGFC8AeoMH9aGzXTUdp6m+OApvmRdUuOscq/Y2O45cJA+rXt1ApWlpFoOIioXL3AGg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    rc-util "^5.0.0"
+    resize-observer-polyfill "^1.5.1"
+
+rc-select@^12.0.0, rc-select@~12.1.6:
+  version "12.1.10"
+  resolved "https://registry.yarnpkg.com/rc-select/-/rc-select-12.1.10.tgz#66ce43192751190b7c0e9a0ab1ef79606421ce30"
+  integrity sha512-LQdUhYncvcULlrNcAShYicc1obPtnNK7/rvCD+YCm0b2BLLYxl3M3b/HOX6o+ppPej+yZulkUPeU6gcgcp9nag==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.0.1"
+    rc-overflow "^1.0.0"
+    rc-trigger "^5.0.4"
+    rc-util "^5.9.8"
+    rc-virtual-list "^3.2.0"
+
+rc-slider@~9.7.1:
+  version "9.7.2"
+  resolved "https://registry.yarnpkg.com/rc-slider/-/rc-slider-9.7.2.tgz#282f571f7582752ebaa33964e441184f4e79ad74"
+  integrity sha512-mVaLRpDo6otasBs6yVnG02ykI3K6hIrLTNfT5eyaqduFv95UODI9PDS6fWuVVehVpdS4ENgOSwsTjrPVun+k9g==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-tooltip "^5.0.1"
+    rc-util "^5.0.0"
+    shallowequal "^1.1.0"
+
+rc-steps@~4.1.0:
+  version "4.1.3"
+  resolved "https://registry.yarnpkg.com/rc-steps/-/rc-steps-4.1.3.tgz#208580e22db619e3830ddb7fa41bc886c65d9803"
+  integrity sha512-GXrMfWQOhN3sVze3JnzNboHpQdNHcdFubOETUHyDpa/U3HEKBZC3xJ8XK4paBgF4OJ3bdUVLC+uBPc6dCxvDYA==
+  dependencies:
+    "@babel/runtime" "^7.10.2"
+    classnames "^2.2.3"
+    rc-util "^5.0.1"
+
+rc-switch@~3.2.0:
+  version "3.2.2"
+  resolved "https://registry.yarnpkg.com/rc-switch/-/rc-switch-3.2.2.tgz#d001f77f12664d52595b4f6fb425dd9e66fba8e8"
+  integrity sha512-+gUJClsZZzvAHGy1vZfnwySxj+MjLlGRyXKXScrtCTcmiYNPzxDFOxdQ/3pK1Kt/0POvwJ/6ALOR8gwdXGhs+A==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    rc-util "^5.0.1"
+
+rc-table@~7.15.1:
+  version "7.15.2"
+  resolved "https://registry.yarnpkg.com/rc-table/-/rc-table-7.15.2.tgz#f6ab73b2cfb1c76f3cf9682c855561423c6b5b22"
+  integrity sha512-TAs7kCpIZwc2mtvD8CMrXSM6TqJDUsy0rUEV1YgRru33T8bjtAtc+9xW/KC1VWROJlHSpU0R0kXjFs9h/6+IzQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-resize-observer "^1.0.0"
+    rc-util "^5.13.0"
+    shallowequal "^1.1.0"
+
+rc-tabs@~11.9.1:
+  version "11.9.1"
+  resolved "https://registry.yarnpkg.com/rc-tabs/-/rc-tabs-11.9.1.tgz#5b2e74da9a276978c2172ef9a05ae8af14da74cb"
+  integrity sha512-CLNx3qaWnO8KBWPd+7r52Pfk0MoPyKtlr+2ltWq2I9iqAjd1nZu6iBpQP7wbWBwIomyeFNw/WjHdRN7VcX5Qtw==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    classnames "2.x"
+    rc-dropdown "^3.2.0"
+    rc-menu "^9.0.0"
+    rc-resize-observer "^1.0.0"
+    rc-util "^5.5.0"
+
+rc-textarea@^0.3.0, rc-textarea@~0.3.0:
+  version "0.3.4"
+  resolved "https://registry.yarnpkg.com/rc-textarea/-/rc-textarea-0.3.4.tgz#1408a64c87b5e76db5c847699ef9ab5ee97dd6f9"
+  integrity sha512-ILUYx831ZukQPv3m7R4RGRtVVWmL1LV4ME03L22mvT56US0DGCJJaRTHs4vmpcSjFHItph5OTmhodY4BOwy81A==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.1"
+    rc-resize-observer "^1.0.0"
+    rc-util "^5.7.0"
+
+rc-tooltip@^5.0.1, rc-tooltip@~5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/rc-tooltip/-/rc-tooltip-5.1.1.tgz#94178ed162d0252bc4993b725f5dc2ac0fccf154"
+  integrity sha512-alt8eGMJulio6+4/uDm7nvV+rJq9bsfxFDCI0ljPdbuoygUscbsMYb6EQgwib/uqsXQUvzk+S7A59uYHmEgmDA==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    rc-trigger "^5.0.0"
+
+rc-tree-select@~4.3.0:
+  version "4.3.2"
+  resolved "https://registry.yarnpkg.com/rc-tree-select/-/rc-tree-select-4.3.2.tgz#94031e36c819ae23e5154953538d00cc316a7fc0"
+  integrity sha512-tkouzhl8OpbTg4C9tVuP8nJ5jiZS7/wiusOIcFVgswhs1V3Jc+XHMKpLhR01egJ1bgsW1A6VrVCz3udxtdJSDA==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-select "^12.0.0"
+    rc-tree "^4.0.0"
+    rc-util "^5.0.5"
+
+rc-tree@^4.0.0, rc-tree@~4.1.0:
+  version "4.1.5"
+  resolved "https://registry.yarnpkg.com/rc-tree/-/rc-tree-4.1.5.tgz#734ab1bfe835e78791be41442ca0e571147ab6fa"
+  integrity sha512-q2vjcmnBDylGZ9/ZW4F9oZMKMJdbFWC7um+DAQhZG1nqyg1iwoowbBggUDUaUOEryJP+08bpliEAYnzJXbI5xQ==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "2.x"
+    rc-motion "^2.0.1"
+    rc-util "^5.0.0"
+    rc-virtual-list "^3.0.1"
+
+rc-trigger@^5.0.0, rc-trigger@^5.0.4, rc-trigger@^5.1.2, rc-trigger@^5.2.1:
+  version "5.2.8"
+  resolved "https://registry.yarnpkg.com/rc-trigger/-/rc-trigger-5.2.8.tgz#27c8291c24518b8f11d76c848f5424e0c429e94a"
+  integrity sha512-Tn84oGmvNBLXI+ptpzxyJx4ArKTduuB6l74ShDLhDaJaF9f5JAMizfx31L30ELVIzRr3Ze4sekG7rzwPGwVOdw==
+  dependencies:
+    "@babel/runtime" "^7.11.2"
+    classnames "^2.2.6"
+    rc-align "^4.0.0"
+    rc-motion "^2.0.0"
+    rc-util "^5.5.0"
+
+rc-upload@~4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/rc-upload/-/rc-upload-4.3.0.tgz#2fbbd11242f730802b900c09b469f28437bac0ff"
+  integrity sha512-wDXf1ZdUTwBIfagTof1MJDjOHZ6xluD0xcgojYZeAZSi+3Doyc21jNV8bRIeK5jx/OQmllrpQp1/MWKkqvkBhg==
+  dependencies:
+    "@babel/runtime" "^7.10.1"
+    classnames "^2.2.5"
+    rc-util "^5.2.0"
+
+rc-util@^5.0.0, rc-util@^5.0.1, rc-util@^5.0.5, rc-util@^5.0.6, rc-util@^5.0.7, rc-util@^5.12.0, rc-util@^5.13.0, rc-util@^5.13.1, rc-util@^5.2.0, rc-util@^5.2.1, rc-util@^5.3.0, rc-util@^5.4.0, rc-util@^5.5.0, rc-util@^5.5.1, rc-util@^5.6.1, rc-util@^5.7.0, rc-util@^5.8.0, rc-util@^5.9.4, rc-util@^5.9.8:
+  version "5.13.1"
+  resolved "https://registry.yarnpkg.com/rc-util/-/rc-util-5.13.1.tgz#03e74955b5c46a58cbc6236e4d30dd462c755290"
+  integrity sha512-Dws2tjXBBihfjVQFlG5JzZ/5O3Wutctm0W94Wb1+M7GD2roWJPrQdSa4AkWm2pn0Ms32zoVPPkWodFeAYZPLfA==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    react-is "^16.12.0"
+    shallowequal "^1.1.0"
+
+rc-virtual-list@^3.0.1, rc-virtual-list@^3.2.0:
+  version "3.2.6"
+  resolved "https://registry.yarnpkg.com/rc-virtual-list/-/rc-virtual-list-3.2.6.tgz#2c92a40f4425e19881b38134d6bd286a11137d2d"
+  integrity sha512-8FiQLDzm3c/tMX0d62SQtKDhLH7zFlSI6pWBAPt+TUntEqd3Lz9zFAmpvTu8gkvUom/HCsDSZs4wfV4wDPWC0Q==
+  dependencies:
+    classnames "^2.2.6"
+    rc-resize-observer "^1.0.0"
+    rc-util "^5.0.7"
+
 react-dom@^17.0.0:
   version "17.0.2"
   resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
@@ -8083,7 +8556,7 @@ react-dom@^17.0.0:
     object-assign "^4.1.1"
     scheduler "^0.20.2"
 
-react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.1:
+react-is@^16.12.0, react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.1:
   version "16.13.1"
   resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
   integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
@@ -8502,6 +8975,11 @@ requires-port@^1.0.0:
   resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
   integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
 
+resize-observer-polyfill@^1.5.0, resize-observer-polyfill@^1.5.1:
+  version "1.5.1"
+  resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
+  integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
+
 resolve-cwd@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
@@ -8796,6 +9274,13 @@ schema-utils@^3.0.0:
     ajv "^6.12.5"
     ajv-keywords "^3.5.2"
 
+scroll-into-view-if-needed@^2.2.25:
+  version "2.2.28"
+  resolved "https://registry.yarnpkg.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.28.tgz#5a15b2f58a52642c88c8eca584644e01703d645a"
+  integrity sha512-8LuxJSuFVc92+0AdNv4QOxRL4Abeo1DgLnGNkn1XlaujPH/3cCFz3QI60r2VNu4obJJROzgnIUw5TKQkZvZI1w==
+  dependencies:
+    compute-scroll-into-view "^1.0.17"
+
 scss-bundle@^3.0.2:
   version "3.1.2"
   resolved "https://registry.yarnpkg.com/scss-bundle/-/scss-bundle-3.1.2.tgz#8919dd7603d01a84822e8aab5210e5b0b50c548b"
@@ -8966,6 +9451,11 @@ shallow-clone@^3.0.0:
   dependencies:
     kind-of "^6.0.2"
 
+shallowequal@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
+  integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
+
 shebang-command@^1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
@@ -9331,6 +9821,11 @@ strict-uri-encode@^2.0.0:
   resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
   integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY=
 
+string-convert@^0.2.0:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/string-convert/-/string-convert-0.2.1.tgz#6982cc3049fbb4cd85f8b24568b9d9bf39eeff97"
+  integrity sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=
+
 string-width@^1.0.1:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
@@ -9834,6 +10329,11 @@ to-regex@^3.0.1, to-regex@^3.0.2:
     regex-not "^1.0.2"
     safe-regex "^1.1.0"
 
+toggle-selection@^1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32"
+  integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI=
+
 toidentifier@1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
@@ -10318,6 +10818,13 @@ w3c-xmlserializer@^1.1.2:
     webidl-conversions "^4.0.2"
     xml-name-validator "^3.0.0"
 
+warning@^4.0.1, warning@^4.0.3:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
+  integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==
+  dependencies:
+    loose-envify "^1.0.0"
+
 watchpack-chokidar2@^2.0.1:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"