|
|
|
@ -68,12 +68,12 @@ class Groupjobbandetails extends Component {
|
|
|
|
|
<div className="yslquestionbank1">
|
|
|
|
|
{
|
|
|
|
|
ddatas.description===null?
|
|
|
|
|
<NoneData></NoneData>
|
|
|
|
|
:datas.description==="null"?
|
|
|
|
|
<NoneData></NoneData>
|
|
|
|
|
""
|
|
|
|
|
:datas.description==="null"?
|
|
|
|
|
""
|
|
|
|
|
:
|
|
|
|
|
datas.description===""?
|
|
|
|
|
<NoneData></NoneData>
|
|
|
|
|
""
|
|
|
|
|
:
|
|
|
|
|
<MarkdownToHtml content={datas.description} selector="work_content" className="mb10 yslquesHeigth"></MarkdownToHtml>
|
|
|
|
|
// <div id="MakedownHTML"className="markdown-body yslquesHeigth yslquesmarkdowntext" dangerouslySetInnerHTML={{__html: markdownToHTML(datas.description).replace(/▁/g, "▁▁▁")}}/>
|
|
|
|
@ -84,13 +84,38 @@ class Groupjobbandetails extends Component {
|
|
|
|
|
{/* <GroupPackage key={key} attachments={item}></GroupPackage>*/}
|
|
|
|
|
{/* )*/}
|
|
|
|
|
{/*})}*/}
|
|
|
|
|
{datas.attachments === undefined ?
|
|
|
|
|
(datas.description === undefined || datas.description === undefined || datas.description === "" ?
|
|
|
|
|
<NoneData></NoneData>
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
)
|
|
|
|
|
:
|
|
|
|
|
datas.attachments=== "" ?
|
|
|
|
|
(datas.description === undefined || datas.description === undefined || datas.description === "" ?
|
|
|
|
|
<NoneData></NoneData>
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
)
|
|
|
|
|
:
|
|
|
|
|
datas.attachments=== null ?
|
|
|
|
|
(datas.description === undefined || datas.description === undefined || datas.description === "" ?
|
|
|
|
|
<NoneData></NoneData>
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
)
|
|
|
|
|
:
|
|
|
|
|
datas.attachments.length === 0 ?
|
|
|
|
|
(datas.description === undefined || datas.description === undefined || datas.description === "" ?
|
|
|
|
|
<NoneData></NoneData>
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
)
|
|
|
|
|
:
|
|
|
|
|
<div className="mt24">
|
|
|
|
|
{datas.attachments === undefined ? "" :
|
|
|
|
|
<AttachmentsList {...this.state} {...this.props} attachments={datas.attachments} ></AttachmentsList>}
|
|
|
|
|
|
|
|
|
|
<AttachmentsList {...this.state} {...this.props} attachments={datas.attachments} ></AttachmentsList>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
<GroupPackage2 datas={datas} bool={true}></GroupPackage2>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|