|
@@ -4,7 +4,7 @@ import './index.less';
|
|
|
import { Tooltip, Icon } from 'antd';
|
|
|
import Page from '@src/containers/Page';
|
|
|
import Assets from '@src/components/Assets';
|
|
|
-import { formatPercent, formatDate, formatSeconds, getMap } from '@src/services/Tools';
|
|
|
+import { zeroFill, formatPercent, formatDate, formatSeconds, getMap } from '@src/services/Tools';
|
|
|
import { asyncSMessage } from '@src/services/AsyncTools';
|
|
|
import moment from 'moment';
|
|
|
import Date from '../../../components/Date';
|
|
@@ -435,14 +435,13 @@ export default class extends Page {
|
|
|
}}
|
|
|
/>
|
|
|
<div className="right">
|
|
|
+ {day === 'other' && <span>{formatDate(time, 'YYYY-MM-DD')}</span>}
|
|
|
<Assets
|
|
|
- className="right"
|
|
|
name="calendar"
|
|
|
onClick={() => {
|
|
|
this.setState({ showCal: true });
|
|
|
}}
|
|
|
/>
|
|
|
- {day === 'other' && <span className="right">{formatDate(time, 'YYYY-MM-DD')}</span>}
|
|
|
{showCal && (
|
|
|
<Date
|
|
|
show
|
|
@@ -535,7 +534,7 @@ export default class extends Page {
|
|
|
>
|
|
|
{info.nickname || `qx${info.mobile}`}{' '}
|
|
|
</div>
|
|
|
- <div className="id">ID: {info.id} </div>
|
|
|
+ <div className="id">ID: {zeroFill(info.id, 4)} </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div className="auth">
|