30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import { WeaLocaleProvider, WeaTextarea } from 'ecCom';
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
import Header from './Common/header';
|
|
import './css/index';
|
|
|
|
export default class Content_calendar extends React.Component {
|
|
render() {
|
|
const { data = {}, eid } = this.props;
|
|
return (
|
|
<div className="item" id={`item_${eid}`}>
|
|
<Header ecId={`${this && this.props && this.props.ecId || ''}_Header@1horyj`} data={data} eid={eid} />
|
|
<div className="content" id={`content_${eid}`}>
|
|
<div className="content_view" id={`content_view_id_${eid}`}>
|
|
<div id={`scratchpad__${eid}`}>
|
|
<WeaTextarea ecId={`${this && this.props && this.props.ecId || ''}_WeaTextarea@v5rp39`}
|
|
id={`scratchpadarea_${eid}`}
|
|
minRows={10}
|
|
value={getLabel(501225, '随时记录你的idea')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|