| | |
| | | import React from 'react' |
| | | import { useDrag, useDrop } from 'react-dnd' |
| | | import { Icon, Popover, Form } from 'antd' |
| | | import { Range } from 'antd-mobile' |
| | | import { Slider } from 'antd-mobile' |
| | | import moment from 'moment' |
| | | |
| | | import asyncComponent from '@/utils/asyncComponent' |
| | |
| | | <div className="am-list-line"> |
| | | {card.labelShow !== 'false' ? <div className="am-input-label">{card.label}</div> : null} |
| | | <div className="am-input-control"> |
| | | <Range |
| | | <Slider |
| | | min={card.minValue || 0} |
| | | max={card.maxValue || 20} |
| | | range={true} |
| | | value={value} |
| | | /> |
| | | </div> |