Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
bkunyun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bkunyun
Commits
8095f30c
Commit
8095f30c
authored
Sep 06, 2022
by
jiangzijing
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feat-20220801' of
http://120.77.149.83/root/bkunyun
into feat-20220801
parents
d6f23481
53d8e36f
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
54 additions
and
48 deletions
+54
-48
index.module.css
...CommonComponents/RadioGroupOfButtonStyle/index.module.css
+0
-1
MyPopconfirm.tsx
src/components/mui/MyPopconfirm.tsx
+2
-2
index.module.css
src/views/Project/ProjectJobDetail/index.module.css
+12
-5
index.tsx
src/views/Project/ProjectJobDetail/index.tsx
+20
-24
index.module.css
...ews/Project/ProjectSubmitWork/ConfigForm/index.module.css
+4
-5
index.tsx
src/views/Project/ProjectSubmitWork/ConfigForm/index.tsx
+10
-6
index.module.css
src/views/Project/ProjectSubmitWork/index.module.css
+3
-3
index.tsx
src/views/Project/ProjectWorkbench/workbenchList/index.tsx
+3
-2
No files found.
src/components/CommonComponents/RadioGroupOfButtonStyle/index.module.css
View file @
8095f30c
...
...
@@ -20,7 +20,6 @@
border-radius
:
2px
;
line-height
:
20px
;
padding
:
6px
16px
;
/* background-color: #e6e8eb; */
flex
:
1
;
display
:
flex
;
align-items
:
center
;
...
...
src/components/mui/MyPopconfirm.tsx
View file @
8095f30c
...
...
@@ -71,7 +71,7 @@ const MyPopconfirm = (props: IMyPopconfirmProps) => {
bgcolor
:
"transparent"
,
minWidth
:
"200px"
,
fontSize
:
"14px"
,
padding
:
"
20px 16
px"
,
padding
:
"
8px 0
px"
,
}
}
>
<
Box
...
...
@@ -80,7 +80,7 @@ const MyPopconfirm = (props: IMyPopconfirmProps) => {
minWidth
:
"200px"
,
borderRadius
:
"4px"
,
fontSize
:
"14px"
,
padding
:
"
20px 16
px"
,
padding
:
"
16px 20
px"
,
boxShadow
:
"0px 3px 10px 0px rgba(0, 24, 57, 0.14)"
,
}
}
>
...
...
src/views/Project/ProjectJobDetail/index.module.css
View file @
8095f30c
...
...
@@ -30,7 +30,7 @@
}
.swTemplateTitle
{
margin
:
0
19px
0
8px
;
line-height
:
2
2
px
;
line-height
:
2
0
px
;
font-size
:
14px
;
color
:
rgba
(
30
,
38
,
51
,
1
);
font-weight
:
700
;
...
...
@@ -114,10 +114,10 @@
margin-right
:
44px
;
overflow
:
hidden
;
word-wrap
:
break-word
;
text-overflow
:
ellipsis
;
display
:
-webkit-box
;
-webkit-box-orient
:
vertical
;
-webkit-line-clamp
:
2
;
text-overflow
:
ellipsis
;
display
:
-webkit-box
;
-webkit-box-orient
:
vertical
;
-webkit-line-clamp
:
2
;
}
.taskInfoValue
{
color
:
rgba
(
30
,
38
,
51
,
1
);
...
...
@@ -130,6 +130,13 @@
word-break
:
break-all
;
flex
:
1
;
justify-content
:
flex-end
;
overflow
:
hidden
;
word-wrap
:
break-word
;
text-overflow
:
ellipsis
;
display
:
-webkit-box
;
-webkit-box-orient
:
vertical
;
-webkit-line-clamp
:
2
;
}
.taskInfoValueClick
{
cursor
:
pointer
;
...
...
src/views/Project/ProjectJobDetail/index.tsx
View file @
8095f30c
...
...
@@ -2,7 +2,7 @@
* @Author: 吴永生#A02208 yongsheng.wu@wholion.com
* @Date: 2022-06-21 20:03:56
* @LastEditors: 吴永生 15770852798@163.com
* @LastEditTime: 2022-09-0
5 17:33:58
* @LastEditTime: 2022-09-0
6 10:54:40
* @FilePath: /bkunyun/src/views/Project/ProjectSubmitWork/index.tsx
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
...
...
@@ -47,6 +47,8 @@ import {
getDatasetPath
,
getSameBatch
,
}
from
"./utils"
;
import
MyTooltip
from
"@/components/mui/MyTooltip"
;
import
styles
from
"./index.module.css"
;
...
...
@@ -75,11 +77,11 @@ const ProjectSubmitWork = observer(() => {
const
productId
=
toJS
(
currentProjectStore
.
currentProductInfo
.
id
);
const
[
workFlowJobInfo
,
setWorkFlowJobInfo
]
=
useState
<
ITaskInfo
>
();
const
[
patchInfo
,
setPatchInfo
]
=
useState
<
any
>
();
const
[
overviewInfo
,
setOverviewInfo
]
=
useState
<
any
>
();
const
[
overviewActive
,
setOverviewActive
]
=
useState
(
true
);
/** 选中的node Id */
const
[
activeFlowIndex
,
setActiveFlowIndex
]
=
useState
<
string
>
(
""
);
/** 选中的flow Title */
const
[
selectNodeTitle
,
setSelectNodeTitle
]
=
useState
(
'参数'
)
// const [showOptions, setShowOptions] = useState<boolean>(false);
const
[
randerOutputs1
,
setRanderOutputs
]
=
useState
<
Array
<
any
>>
([]);
const
locationInfo
:
any
=
useLocation
()?.
state
;
...
...
@@ -355,32 +357,26 @@ const ProjectSubmitWork = observer(() => {
const
selectedParameter
=
useCallback
(
(
list
:
any
)
=>
{
let
result
:
any
=
[];
if
(
patchInfo
?.
id
===
activeFlowIndex
)
{
setSelectNodeTitle
(
list
[
0
].
title
||
''
)
result
=
list
[
0
].
parameters
}
else
{
list
?.
length
&&
list
?.
forEach
((
item
:
any
)
=>
{
if
(
item
.
id
===
activeFlowIndex
)
{
console
.
log
(
1111
)
setSelectNodeTitle
(
item
?.
title
||
''
)
setOverviewInfo
(
item
)
result
=
item
.
parameters
;
}
});
}
return
result
;
},
[
activeFlowIndex
,
patchInfo
]
[
activeFlowIndex
]
);
const
randerParameters
=
useMemo
(()
=>
{
if
(
patchInfo
?.
children
?.
length
)
{
return
selectedParameter
(
patchInfo
?.
children
);
if
(
patchInfo
?.
id
===
activeFlowIndex
)
{
setOverviewInfo
(
patchInfo
)
return
patchInfo
?.
parameters
}
else
{
return
selectedParameter
(
patchInfo
?.
parameters
);
return
selectedParameter
(
patchInfo
?.
children
);
}
},
[
patchInfo
,
selectedParameter
]);
},
[
activeFlowIndex
,
patchInfo
,
selectedParameter
]);
const
handleParams
=
()
=>
{
setOverviewActive
(
false
);
...
...
@@ -648,7 +644,7 @@ const ProjectSubmitWork = observer(() => {
)
}
{
activeFlowIndex
&&
(
<
div
className=
{
styles
.
suanziInfo
}
>
<
div
className=
{
styles
.
title
}
>
{
patchInfo
?.
title
}
</
div
>
<
MyTooltip
><
div
className=
{
styles
.
title
}
>
{
overviewInfo
?.
title
}
</
div
></
MyTooltip
>
<
div
className=
{
styles
.
tabs
}
>
<
div
className=
{
classNames
({
...
...
@@ -667,7 +663,7 @@ const ProjectSubmitWork = observer(() => {
// onClick=
{()
=
>
setOverviewActive(false)}
onClick=
{
()
=>
handleParams
()
}
>
{
selectNodeTitle
}
参数
</
div
>
</
div
>
{
overviewActive
&&
(
...
...
@@ -680,40 +676,40 @@ const ProjectSubmitWork = observer(() => {
[
styles
.
taskInfoValueShowAll
]:
true
,
})
}
>
{
patch
Info
?.
description
}
{
overview
Info
?.
description
}
</
div
>
</
div
>
<
div
className=
{
styles
.
taskInfoLi
}
>
<
div
className=
{
styles
.
taskInfoParams
}
>
算子版本
</
div
>
<
div
className=
{
styles
.
taskInfoValue
}
>
{
patch
Info
?.
version
||
"-"
}
{
overview
Info
?.
version
||
"-"
}
</
div
>
</
div
>
<
div
className=
{
styles
.
taskInfoLi
}
>
<
div
className=
{
styles
.
taskInfoParams
}
>
算子状态
</
div
>
<
div
className=
{
styles
.
taskInfoValue
}
>
{
patch
Info
?.
status
===
"Done"
&&
(
{
overview
Info
?.
status
===
"Done"
&&
(
<
img
className=
{
styles
.
taskInfoValueIcon
}
src=
{
jobSue
}
alt=
""
/>
)
}
{
patch
Info
?.
status
===
"Running"
&&
(
{
overview
Info
?.
status
===
"Running"
&&
(
<
img
className=
{
styles
.
taskInfoValueIcon
}
src=
{
jobRun
}
alt=
""
/>
)
}
{
patch
Info
?.
status
===
"Failed"
&&
(
{
overview
Info
?.
status
===
"Failed"
&&
(
<
img
className=
{
styles
.
taskInfoValueIcon
}
src=
{
jobFail
}
alt=
""
/>
)
}
{
statusMap
[
patch
Info
?.
status
as
IStatus
]
}
{
statusMap
[
overview
Info
?.
status
as
IStatus
]
}
</
div
>
</
div
>
</
div
>
...
...
src/views/Project/ProjectSubmitWork/ConfigForm/index.module.css
View file @
8095f30c
...
...
@@ -2,7 +2,7 @@
position
:
relative
;
}
.templateDescBox
{
margin-bottom
:
40
px
;
margin-bottom
:
24
px
;
}
.templateDescTitle
{
font-size
:
16px
;
...
...
@@ -81,11 +81,10 @@
}
.taskConfigBox
{
padding
:
16px
0px
4px
;
}
.flowTitle
{
line-height
:
16px
;
margin
:
3px
0
2
7
px
;
margin
:
3px
0
2
5
px
;
color
:
rgba
(
19
,
112
,
255
,
1
);
font-size
:
14px
;
font-weight
:
600
;
...
...
@@ -119,11 +118,11 @@
margin-left
:
16px
;
}
.bacthConfigBox
{
padding
:
0
24px
0
;
padding
:
16px
24px
4px
;
}
.flowConfigBox
{
border-bottom
:
1px
solid
rgba
(
235
,
237
,
240
,
1
);
padding
:
2
0
px
24px
12px
;
padding
:
2
4
px
24px
12px
;
}
.flowConfigBox
:nth-last-child
(
1
)
{
border-bottom
:
none
;
...
...
src/views/Project/ProjectSubmitWork/ConfigForm/index.tsx
View file @
8095f30c
...
...
@@ -492,12 +492,16 @@ const ConfigForm = (props: ConfigFormProps) => {
/>
</
div
>
<
div
className=
{
styles
.
taskConfigBox
}
>
<
div
className=
{
styles
.
bacthConfigBox
}
>
{
randerParameters
(
task
.
parameters
.
filter
((
parameter
)
=>
!
parameter
?.
thrown
),
task
.
id
)
}
</
div
>
{
task
.
parameters
.
filter
(
(
parameter
)
=>
!
parameter
?.
thrown
&&
!
parameter
.
hidden
).
length
!==
0
&&
(
<
div
className=
{
styles
.
bacthConfigBox
}
>
{
randerParameters
(
task
.
parameters
.
filter
((
parameter
)
=>
!
parameter
?.
thrown
),
task
.
id
)
}
</
div
>
)
}
{
task
.
flows
.
map
((
flow
)
=>
{
if
(
flow
.
parameters
.
filter
(
...
...
src/views/Project/ProjectSubmitWork/index.module.css
View file @
8095f30c
...
...
@@ -27,7 +27,7 @@
}
.swTemplateTitle
{
margin
:
0
19px
0
8px
;
line-height
:
2
2
px
;
line-height
:
2
0
px
;
font-size
:
14px
;
color
:
rgba
(
30
,
38
,
51
,
1
);
font-weight
:
700
;
...
...
@@ -51,11 +51,11 @@
}
.swFormBox
{
background-color
:
#fff
;
border-right
:
1
xp
solid
rgba
(
235
,
237
,
240
,
1
);
border-right
:
1
px
solid
rgba
(
235
,
237
,
240
,
1
);
width
:
608px
;
overflow-y
:
overlay
;
box-sizing
:
border-box
;
padding
:
36px
;
padding
:
3
2px
32px
1
6px
;
}
.swFlowBox
{
flex
:
1
;
...
...
src/views/Project/ProjectWorkbench/workbenchList/index.tsx
View file @
8095f30c
...
...
@@ -2,7 +2,7 @@
* @Author: 吴永生#A02208 yongsheng.wu@wholion.com
* @Date: 2022-05-31 10:18:13
* @LastEditors: 吴永生 15770852798@163.com
* @LastEditTime: 2022-09-0
2 14:45:04
* @LastEditTime: 2022-09-0
6 10:17:18
* @FilePath: /bkunyun/src/views/Project/ProjectSetting/index.tsx
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
...
...
@@ -41,6 +41,7 @@ import MyProgress from "@/components/mui/MyProgress";
import
SearchInput
from
"@/components/BusinessComponents/SearchInput"
;
import
MyCircularProgress
from
"@/components/mui/MyCircularProgress"
;
import
moment
from
"moment"
;
import
MyTooltip
from
"@/components/mui/MyTooltip"
;
import
styles
from
"./index.module.css"
;
...
...
@@ -400,7 +401,7 @@ const ProjectMembers = observer(() => {
onClick=
{
()
=>
rowClick
(
item
.
id
)
}
>
<
Box
className=
{
styles
.
tabBoxInfo
}
>
<
div
className=
{
styles
.
tabBoxTitle
}
>
{
item
.
name
}
</
div
>
<
MyTooltip
title=
{
item
.
name
}
><
div
className=
{
styles
.
tabBoxTitle
}
>
{
item
.
name
}
</
div
></
MyTooltip
>
<
Box
className=
{
styles
.
tabBoxDescInfo
}
>
<
div
className=
{
styles
.
tabBoxDesc
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment