提交 bcbf5901 authored 作者: 钟是志's avatar 钟是志

logo大小

时间段选择组件优化
上级 652ea093
......@@ -92,7 +92,12 @@ export default class MobileDate extends Component {
render() {
let {dates} = this.state;
const {format, required} = this.props;
const { format, showTime } = this.props;
let mode = 'datetime';
console.log(showTime);
if(!showTime){
mode = 'date';
}
const startTime = dates.length > 0 ? dates[0] && dates[0].valueOf() : null;
const endTime = dates.length > 1 ? dates[1].valueOf() : null;
const MustSpan = this.MustSpan();
......@@ -110,6 +115,7 @@ export default class MobileDate extends Component {
locale={{okText: '确定', dismissText: '取消'}}
value={!!startTime ? new Date(startTime) : null}
format={format ? format : 'YYYY-MM-DD HH:mm:ss'}
mode={mode}
onChange={(date) => this.handelStartChange(date)}>
<List.Item arrow="horizontal">{MustSpan}开始时间</List.Item>
</DatePicker>
......@@ -124,6 +130,7 @@ export default class MobileDate extends Component {
}
value={!!endTime ? new Date(endTime) : null}
locale={{okText: '确定', dismissText: '取消'}}
mode={mode}
format={format ? format : 'YYYY-MM-DD HH:mm:ss'}
onChange={(date) => this.handelEndChange(date)}>
<List.Item arrow="horizontal">{MustSpan}结束时间</List.Item>
......
......@@ -3226,7 +3226,7 @@ ${obj[dataColumn.base52] && obj[dataColumn.base52] !== 'null' ?
message: '请选择起止时间',
},
],
})(<MobileDate disabled={disabled} formate={json.format} required={required} />);
})(<MobileDate disabled={disabled} required={required} format={json.format} showTime={json.showTime}/>);
if (
((json.isMobileLabel != null && json.isMobileLabel) ||
(json.isMobileLabel == null && json.isLabel)) &&
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论