Commit 52649c8f authored by liwei's avatar liwei

加了图标按钮提示信息

parent 1641ff74
......@@ -91,21 +91,25 @@
<TableAction
:actions="[
{
tooltip:'查看详情',
icon: 'ant-design:file-search-outlined',
// label: '查看详情',
onClick: detailButton.bind(null, record),
},
{
tooltip:'重命名',
icon: 'ant-design:edit-outlined',
// label: '编辑',
onClick: resetNameButton.bind(null, record),
},
{
tooltip:'启动',
icon: 'ant-design:caret-right-outlined',
// label: '启动',
onClick: startButton.bind(null, record),
},
{
tooltip:'暂停',
icon: 'ant-design:pause-outlined',
// label: '暂停',
onClick: stopButton.bind(null, record),
......
......@@ -120,15 +120,18 @@
<TableAction
:actions="[
{
tooltip:'任务定位',
icon:'teenyicons:location-outline',
onClick: locationButton.bind(null, record),
},
{
tooltip:'查看日志',
icon:'ix:log',
onClick: lookLogButton.bind(null, record),
},
{
//重跑
tooltip:'重跑',
icon:'material-symbols-light:not-started-outline',
onClick: runAgainButton.bind(null, record),
},
......
......@@ -253,11 +253,13 @@
:actions="[
{
//查看详情
tooltip:'查看详情',
icon:'ant-design:file-search-outlined',
onClick: detailButton.bind(null, record),
},
{
//重跑
tooltip:'重跑',
icon:'material-symbols-light:not-started-outline',
onClick: runAgainButton.bind(null, record),
// ifShow: record.eventType === '系统异常',
......@@ -265,6 +267,7 @@
{
//错误恢复
icon:'ix:error',
tooltip:'错误恢复',
popConfirm: {
title: '是否确认恢复',
placement: 'left',
......@@ -274,6 +277,7 @@
{
//取消执行
icon:'jam:stop-sign',
tooltip:'执行',
popConfirm: {
title: '是否取消执行',
placement: 'left',
......@@ -282,6 +286,7 @@
},
{
//查看日志
tooltip:'查看日志',
icon:'ix:log',
onClick: lookLogButton.bind(null, record),
},
......
......@@ -29,12 +29,14 @@
<TableAction
:actions="[
{
tooltip:'补数配置',
icon: 'icon-park-twotone:setting',
// label: '补数配置',
onClick: SupplyNumberSettingButton.bind(null, record),
},
{
icon: 'jam:stop-sign',
tooltip:'取消',
// label: '取消',
popConfirm: {
title: '是否确认取消',
......@@ -43,6 +45,7 @@
},
},
{
tooltip:'删除',
icon: 'material-symbols:delete-outline',
// label: '删除',
popConfirm: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment