|
@@ -259,27 +259,31 @@ const SmartReport = () => {
|
|
|
{dayjs(date.etime).format('MM月DD日')}
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
- 时间:
|
|
|
- <Select
|
|
|
- defaultValue="1"
|
|
|
- style={{ width: 120 }}
|
|
|
- onChange={handleChange}
|
|
|
- options={[
|
|
|
- {
|
|
|
- value: '1',
|
|
|
- label: '近7天',
|
|
|
- },
|
|
|
- {
|
|
|
- value: '2',
|
|
|
- label: '近30天',
|
|
|
- },
|
|
|
- {
|
|
|
- value: '3',
|
|
|
- label: '自定义时间',
|
|
|
- },
|
|
|
- ]}
|
|
|
- />
|
|
|
+ <div className={styles.headRight}>
|
|
|
+ <div>
|
|
|
+ 时间:
|
|
|
+ <Select
|
|
|
+ className={styles.headRightSelect}
|
|
|
+ defaultValue="1"
|
|
|
+ style={{ width: 180 }}
|
|
|
+ onChange={handleChange}
|
|
|
+ popupClassName={styles.headRightSelect}
|
|
|
+ options={[
|
|
|
+ {
|
|
|
+ value: '1',
|
|
|
+ label: '近7天',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '2',
|
|
|
+ label: '近30天',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '3',
|
|
|
+ label: '自定义时间',
|
|
|
+ },
|
|
|
+ ]}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
<div>{showRange && <RangePicker onChange={onChange} />}</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -355,11 +359,13 @@ const SmartReport = () => {
|
|
|
</div>
|
|
|
<div className={styles.box}>
|
|
|
<ModuleTitle title="智慧运营" />
|
|
|
- <div className={styles.smartText}>
|
|
|
- 优化条数:{push_optimize_task}条
|
|
|
+ <div style={{ padding: '20px 20px 0 20px' }}>
|
|
|
+ <div className={styles.smartText}>
|
|
|
+ 优化条数:{push_optimize_task}条
|
|
|
+ </div>
|
|
|
+ <div className={styles.smartText}>超滤能耗:{ele_65}</div>
|
|
|
+ <div className={styles.smartText}>反渗透能耗:{ele_66}</div>
|
|
|
</div>
|
|
|
- <div className={styles.smartText}>超滤能耗:{ele_65}</div>
|
|
|
- <div className={styles.smartText}>反渗透能耗:{ele_66}</div>
|
|
|
<div
|
|
|
ref={workScoreDomRef}
|
|
|
style={{ height: '340px', margin: '10px 0 10px 0' }}
|