mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-12-03 20:48:44 +08:00
[Pipeline] Add executor logo
This commit is contained in:
parent
a479b2bfa8
commit
aed50bece9
BIN
core/datacap-web/public/static/images/executor/Seatunnel.png
Normal file
BIN
core/datacap-web/public/static/images/executor/Seatunnel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 218 KiB |
@ -14,6 +14,14 @@
|
|||||||
<Table :loading="loading"
|
<Table :loading="loading"
|
||||||
:columns="headers"
|
:columns="headers"
|
||||||
:data="finalData?.content">
|
:data="finalData?.content">
|
||||||
|
<template #executor="{row}">
|
||||||
|
<Tooltip transfer
|
||||||
|
:content="row.executor">
|
||||||
|
<Avatar :src="`/static/images/executor/${row.executor}.png`"
|
||||||
|
size="small">
|
||||||
|
</Avatar>
|
||||||
|
</Tooltip>
|
||||||
|
</template>
|
||||||
<template #from="{row}">
|
<template #from="{row}">
|
||||||
<Tooltip transfer :content="row.from.name">
|
<Tooltip transfer :content="row.from.name">
|
||||||
<Avatar :src="'/static/images/plugin/' + row.from.type + '.png'" size="small"/>
|
<Avatar :src="'/static/images/plugin/' + row.from.type + '.png'" size="small"/>
|
||||||
|
@ -50,6 +50,7 @@ const createHeaders = (i18n: any) => {
|
|||||||
key: 'executor',
|
key: 'executor',
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
tooltip: true,
|
tooltip: true,
|
||||||
|
slot: 'executor',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 100
|
width: 100
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user