84 lines
1.8 KiB
JavaScript
84 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
import {
|
|
inject,
|
|
observer
|
|
} from 'mobx-react';
|
|
import {
|
|
WeaTop,
|
|
WeaTab,
|
|
WeaOrgTree,
|
|
WeaEchart,
|
|
WeaYear,
|
|
WeaDialog,
|
|
WeaPopoverHrm,
|
|
WeaCheckbox,
|
|
WeaRadioGroup,
|
|
WeaRightMenu,
|
|
WeaTools,
|
|
WeaErrorPage,
|
|
WeaAlertPage,
|
|
WeaDatePicker,
|
|
WeaBrowser,
|
|
WeaNewScroll,
|
|
WeaSearchGroup
|
|
} from 'ecCom';
|
|
|
|
import {
|
|
WeaTableNew
|
|
} from 'comsMobx';
|
|
const WeaTable = WeaTableNew.WeaTable;
|
|
import {
|
|
Modal,
|
|
Row,
|
|
Col,
|
|
Button,
|
|
Spin,
|
|
Icon,
|
|
Calendar,
|
|
Tooltip,
|
|
Timeline
|
|
} from 'antd';
|
|
import '../style/checking.less';
|
|
import '../style/outside.less';
|
|
import * as mobx from 'mobx';
|
|
import isEmpty from 'lodash/isEmpty';
|
|
import cloneDeep from 'lodash/cloneDeep';
|
|
import toString from 'lodash/toString';
|
|
import moment from 'moment';
|
|
import * as Util from '../util/index';
|
|
import Map from '../coms/Map';
|
|
import loadjs from 'loadjs';
|
|
import {
|
|
i18n
|
|
} from '../public/i18n';
|
|
import {
|
|
WeaLocaleProvider
|
|
} from 'ecCom';
|
|
import {
|
|
carousel
|
|
} from '../util/index'
|
|
import {addContentPath} from '../util/index.js'
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
const toJS = mobx.toJS;
|
|
|
|
|
|
@observer
|
|
export default class OutSideTabkey2 extends React.Component{
|
|
|
|
render() {
|
|
const {
|
|
hrmOutside
|
|
} = this.props;
|
|
let {
|
|
mapData
|
|
} = hrmOutside;
|
|
mapData = toJS(mapData);
|
|
if (!isEmpty(mapData)) {
|
|
return <Map ecId={`${this && this.props && this.props.ecId || ''}_Map@x55jrg`} config={mapData} mult/>
|
|
} else {
|
|
return <div className="grayBG"><WeaAlertPage ecId={`${this && this.props && this.props.ecId || ''}_WeaAlertPage@d0x1jc`}
|
|
icon={<img style={{width: 77, height: 97}} src={addContentPath('/cloudstore/resource/pc/com/images/no_sign.png')}/>}
|
|
><div>{getLabel('386505',"当天无外勤签到记录")}</div></WeaAlertPage></div>
|
|
}
|
|
}
|
|
} |