Commit 224e5667 authored by afc163's avatar afc163

active date selection

parent 60447384
......@@ -75,6 +75,17 @@ export default class Analysis extends Component {
});
}
isActive(type) {
const { rangePickerValue } = this.state;
const value = getTimeDistance(type);
if (!rangePickerValue[0] || !rangePickerValue[1]) {
return;
}
if (rangePickerValue[0].isSame(value[0], 'day') && rangePickerValue[1].isSame(value[1], 'day')) {
return styles.currentDate;
}
}
render() {
const { rangePickerValue, salesType, currentTabKey } = this.state;
const { chart } = this.props;
......@@ -104,10 +115,18 @@ export default class Analysis extends Component {
const salesExtra = (
<div className={styles.salesExtraWrap}>
<div className={styles.salesExtra}>
<a onClick={() => this.selectDate('today')}>今ζ—₯</a>
<a onClick={() => this.selectDate('week')}>ζœ¬ε‘¨</a>
<a onClick={() => this.selectDate('month')}>本月</a>
<a onClick={() => this.selectDate('year')}>ε…¨εΉ΄</a>
<a className={this.isActive('today')} onClick={() => this.selectDate('today')}>
今ζ—₯
</a>
<a className={this.isActive('week')} onClick={() => this.selectDate('week')}>
ζœ¬ε‘¨
</a>
<a className={this.isActive('month')} onClick={() => this.selectDate('month')}>
本月
</a>
<a className={this.isActive('year')} onClick={() => this.selectDate('year')}>
ε…¨εΉ΄
</a>
</div>
<RangePicker
value={rangePickerValue}
......
......@@ -55,6 +55,9 @@
&:hover {
color: @primary-color;
}
&.currentDate {
color: @primary-color;
}
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment