浏览代码

deploy

master
Soleilw 1 个月前
父节点
当前提交
3184a16dec

+ 1
- 1
dist/index.html 查看文件

</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
<script src="/umi.4ba4eafc.js"></script>
<script src="/umi.c7c05dbb.js"></script>
</body> </body>
</html> </html>

+ 1
- 0
dist/p__Talent__Fair__Detail__index.23ba656e.async.js
文件差异内容过多而无法显示
查看文件


+ 0
- 1
dist/p__Talent__Fair__Detail__index.b2f3a80d.async.js
文件差异内容过多而无法显示
查看文件


+ 1
- 0
dist/p__Talent__Home__index.1a7d5821.async.js
文件差异内容过多而无法显示
查看文件


+ 0
- 1
dist/p__Talent__Home__index.33630d5e.async.js
文件差异内容过多而无法显示
查看文件


dist/umi.c7c05dbb.js
文件差异内容过多而无法显示
查看文件


+ 1
- 1
src/components/Talent/Home/Famous/index.tsx 查看文件

<> <>
<Col span={6}> <Col span={6}>
<Link to={{ pathname: `/talent/company/detail?id=${item.id}` }} target="_blank" style={{ width: '100%' }}> <Link to={{ pathname: `/talent/company/detail?id=${item.id}` }} target="_blank" style={{ width: '100%' }}>
<Flex vertical align='center' justify='center' className='company-item'>
<Flex vertical align='center' justify='center' style={{}}>
<Image src={item.photo ? `${Imageprefix}${item.photo}` : '/images/logo.jpg'} preview={false} width={100} height={100} style={{ borderRadius: '4px', objectFit: 'contain' }}></Image> <Image src={item.photo ? `${Imageprefix}${item.photo}` : '/images/logo.jpg'} preview={false} width={100} height={100} style={{ borderRadius: '4px', objectFit: 'contain' }}></Image>
<Typography.Paragraph <Typography.Paragraph
ellipsis={{ rows: 1 }} ellipsis={{ rows: 1 }}

+ 9
- 4
src/pages/Talent/Fair/Detail/index.tsx 查看文件

</div> </div>
</Space> </Space>
<Divider></Divider> <Divider></Divider>
<Space size={10} direction='vertical' style={{ width: '100%', minHeight: 126 }}>
<Space size={10} direction='vertical' style={{ width: '100%', minHeight: 198 }}>
{ {
item.jobs && item.jobs.length > 0 && item.jobs.slice(0, 4).map((childItem, childIndex) => (<> item.jobs && item.jobs.length > 0 && item.jobs.slice(0, 4).map((childItem, childIndex) => (<>
<Link to={{ pathname: `/talent/job/detail/?id=${childItem.id}` }} target="_blank" style={{ color: '#000000' }}> <Link to={{ pathname: `/talent/job/detail/?id=${childItem.id}` }} target="_blank" style={{ color: '#000000' }}>
<Flex justify='space-between' align='center'>
<Flex justify='space-between' align='center' style={{ border: '1px #f0f0f0 solid', padding: 8, borderRadius: 8 }}>
<div>{childItem.job_name}</div> <div>{childItem.job_name}</div>
<Button size='small'>投递该职位</Button>
<Button size='small' type='text'>投递该职位</Button>
</Flex> </Flex>
</Link> </Link>


</Space> </Space>


<Link to={{ pathname: `/talent/company/detail/?id=${item.id}` }} target="_blank" style={{ color: '#000000' }}> <Link to={{ pathname: `/talent/company/detail/?id=${item.id}` }} target="_blank" style={{ color: '#000000' }}>
<Tag>共{item.jobs && item.jobs.length ? item.jobs.length : 0}个职位</Tag>
<Flex justify='space-between' align='center' style={{ color: '#000000', paddingTop: 16}}>
<div style={{ color: '#000000' }}>共{item.jobs && item.jobs.length ? item.jobs.length : 0}个职位</div>
<Button size='small' type='primary'>更多职位</Button>
</Flex>


</Link> </Link>
</Space> </Space>
</>) </>)

正在加载...
取消
保存