Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
web
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
web
Commits
151747b2
提交
151747b2
authored
5月 22, 2023
作者:
18928357778
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
改-首页样式调整
上级
b2963dad
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
81 行增加
和
47 行删除
+81
-47
index.module.scss
components/NavHeader/index.module.scss
+2
-0
styled.tsx
components/contentBox/right/styled.tsx
+6
-7
index.module.scss
components/footer/index.module.scss
+1
-0
index.tsx
components/layout/index.tsx
+1
-1
styled.tsx
pages/home/waterfallFlowBody/components/map/styled.tsx
+1
-1
styled.tsx
...ome/waterfallFlowBody/components/rotationChart/styled.tsx
+0
-1
index.tsx
pages/home/waterfallFlowBody/index.tsx
+50
-32
styled.tsx
pages/home/waterfallFlowBody/styled.tsx
+20
-5
没有找到文件。
components/NavHeader/index.module.scss
浏览文件 @
151747b2
...
...
@@ -18,9 +18,11 @@
height
:
35px
;
background-image
:
url(./assets/logo.png)
;
background-size
:
100%
100%
;
margin-right
:
40px
;
}
.tabs
{
width
:
800px
;
height
:
100%
;
margin-right
:
58px
;
:global
.ant-tabs-nav
{
...
...
components/contentBox/right/styled.tsx
浏览文件 @
151747b2
import
styled
from
"styled-components"
import
styled
from
"styled-components"
;
export
const
Box
=
styled
.
div
`
box-sizing: border-box;
.right-box-item{
margin-bottom: 20px;
}
`
\ No newline at end of file
box-sizing: border-box;
.right-box-item {
margin-bottom: 10px;
}
`
;
components/footer/index.module.scss
浏览文件 @
151747b2
...
...
@@ -27,6 +27,7 @@
height
:
47px
;
.qrcodeItem
{
margin-right
:
206px
;
text-align
:
center
;
&
:nth-last-child
(
1
)
{
margin-right
:
0
;
}
...
...
components/layout/index.tsx
浏览文件 @
151747b2
...
...
@@ -29,7 +29,7 @@ const footerStyle: React.CSSProperties = {
lineHeight
:
"1"
,
padding
:
0
,
position
:
"relative"
,
marginTop
:
78
,
marginTop
:
60
,
};
type
Props
=
{
...
...
pages/home/waterfallFlowBody/components/map/styled.tsx
浏览文件 @
151747b2
...
...
@@ -40,7 +40,7 @@ export const Box = styled.div`
height: 22px;
line-height: 22px;
padding-right: 22px;
border-right: 1px solid #
b2b2b2
;
border-right: 1px solid #
e0e0e0
;
}
.active {
color: #ff552d;
...
...
pages/home/waterfallFlowBody/components/rotationChart/styled.tsx
浏览文件 @
151747b2
...
...
@@ -10,7 +10,6 @@ export const Box = styled.div`
display: flex;
.rotationChart {
width: 806px;
margin-right: 24px;
.slick-list {
border-radius: 6px;
}
...
...
pages/home/waterfallFlowBody/index.tsx
浏览文件 @
151747b2
...
...
@@ -13,6 +13,7 @@ import xiaoshou from "./assets/xiaoshou.png";
import
baoxian
from
"./assets/baoxian.png"
;
import
peixun
from
"./assets/peixun.png"
;
import
gongju
from
"./assets/gongju.png"
;
import
xwbg
from
"./assets/xwbg.png"
;
const
icon
=
[
tubiao
,
fuwu
,
xiaoshou
,
baoxian
,
peixun
,
gongju
];
import
{
FilterOptionResp
,
...
...
@@ -260,22 +261,36 @@ export default function WaterfallFlowBody() {
<
div
className=
"item-body"
>
<
Space
size=
{
[
15
,
0
]
}
wrap
>
{
index
===
4
?
list
.
map
((
item
)
=>
(
<
div
key=
{
item
}
className=
"item-bubble"
>
?
list
.
map
((
item
,
index
)
=>
(
<
div
key=
{
item
}
className=
{
`item-bubble ${
index === 0 || index === 1 || index === 2 ? "active" : ""
}`
}
>
{
item
}
</
div
>
))
:
index
===
5
?
list2
.
map
((
item
)
=>
(
<
div
key=
{
item
}
className=
"item-bubble"
>
?
list2
.
map
((
item
,
index
)
=>
(
<
div
key=
{
item
}
className=
{
`item-bubble ${
index === 0 || index === 1 || index === 2 ? "active" : ""
}`
}
>
{
item
}
</
div
>
))
:
resultList
[
index
].
map
((
item
)
=>
{
:
resultList
[
index
].
map
((
item
,
index
)
=>
{
return
(
<
div
key=
{
item
?.
name
||
item
?.
appName
||
item
?.
skillsName
}
className=
"item-bubble"
className=
{
`item-bubble ${
index === 0 || index === 1 || index === 2
? "active"
: ""
}`
}
onClick=
{
()
=>
routerPath
(
index
,
item
)
}
>
{
item
?.
name
||
item
?.
appName
||
item
?.
skillsName
}
...
...
@@ -326,34 +341,37 @@ export default function WaterfallFlowBody() {
const
rightDom2
=
(
list
:
Array
<
NewsTenderType
>
)
=>
{
return
(
<
div
key=
{
1008
}
className=
"right-box-item right-item-second"
>
<
div
className=
"title"
>
招标快讯
<
div
className=
"title-label"
onClick=
{
()
=>
router
.
push
(
"/projectInfo"
)
}
>
>
<
Image
src=
{
xwbg
}
alt=
"#"
width=
{
384
}
height=
{
249
}
/>
<
div
className=
"item-box"
>
<
div
className=
"title"
>
招标快讯
<
div
className=
"title-label"
onClick=
{
()
=>
router
.
push
(
"/projectInfo"
)
}
>
>
</
div
>
</
div
>
</
div
>
<
div
className=
"body"
>
{
list
?.
map
((
item
)
=>
(
<
div
key=
{
item
.
id
}
className=
"body-item"
>
<
div
className=
"item-label"
title=
{
item
.
tenderContent
}
>
{
item
.
tenderContent
}
<
div
className=
"label-bottom"
>
{
item
.
tenderPrice
}
<
/
div
>
</
div
>
<
div
className=
"item-right"
>
<
Image
src=
{
require
(
"./assets/button.png"
)
}
alt=
"#"
width=
{
103
}
height=
{
22
}
/
>
<
div
className=
"left"
>
{
item
.
tenderPrice
}
W
</
div
>
<
div
className=
"right"
>
申请合作
<
/
div
>
<
div
className=
"body"
>
{
list
?.
map
((
item
)
=>
(
<
div
key=
{
item
.
id
}
className=
"body-item"
>
<
div
className=
"item-label"
title=
{
item
.
tenderContent
}
>
{
item
.
tenderContent
}
<
div
className=
"label-bottom"
>
{
item
.
tenderPrice
}
</
div
>
</
div
>
<
div
className=
"item-right"
>
<
Image
src=
{
require
(
"./assets/button.png"
)
}
alt=
"#"
width=
{
103
}
height=
{
22
}
/>
<
div
className=
"left"
>
{
item
.
tenderPrice
}
W
</
div
>
<
div
className=
"right"
>
申请合作
</
div
>
</
div
>
</
div
>
</
div
>
))
}
))
}
</
div
>
</
div
>
</
div
>
);
...
...
pages/home/waterfallFlowBody/styled.tsx
浏览文件 @
151747b2
...
...
@@ -6,7 +6,7 @@ export default function Style() {
export
const
Box
=
styled
.
div
`
box-sizing: border-box;
padding-top:
24
px;
padding-top:
16
px;
width: 1200px;
margin: 0 auto;
.item {
...
...
@@ -46,6 +46,7 @@ export const Box = styled.div`
background: #ffffff;
border-radius: 0px 0px 6px 6px;
.item-bubble {
font-weight: 520;
height: 32px;
line-height: 32px;
font-size: 14px;
...
...
@@ -56,6 +57,9 @@ export const Box = styled.div`
&.active {
color: #ff552d;
}
&:hover {
color: #ff552d;
}
}
.item-bottom {
width: 371px;
...
...
@@ -78,8 +82,8 @@ export const Box = styled.div`
.title {
display: flex;
align-items: center;
padding: 0 2
5
px;
height:
60
px;
padding: 0 2
0px 0 20
px;
height:
46
px;
font-size: 16px;
font-family: MicrosoftYaHeiUI-Bold, MicrosoftYaHeiUI;
font-weight: bold;
...
...
@@ -90,6 +94,9 @@ export const Box = styled.div`
cursor: pointer;
font-size: 16px;
font-weight: 400;
&:hover {
color: #ff552d;
}
}
}
/* .body {
...
...
@@ -160,11 +167,16 @@ export const Box = styled.div`
.right-item-second {
border-radius: 6px;
background-color: #fff;
position: relative;
.item-box {
position: absolute;
top: 0;
}
.title {
display: flex;
align-items: center;
padding: 0 2
5
px;
height:
62
px;
padding: 0 2
0px 0 20
px;
height:
48
px;
font-size: 16px;
font-family: MicrosoftYaHeiUI-Bold, MicrosoftYaHeiUI;
font-weight: bold;
...
...
@@ -175,6 +187,9 @@ export const Box = styled.div`
cursor: pointer;
font-size: 16px;
font-weight: 400;
&:hover {
color: #ff552d;
}
}
}
/* .body {
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论