Ben Lin
2024-07-31 08d4018e84039c5a9d400790704fa931afdc861b
src/views/tigerprojects/tsk/tsk_job/index.vue
@@ -10,24 +10,28 @@
            {
              icon: 'clarity:info-standard-line',
              tooltip: '查看任务详情',
              onClick: handleView.bind(null, record),
              onClick: __VLS_ctx.handleView.bind(null, record),
              name: undefined
            },
            {
              //立即开始
              tooltip: '立即开始',
              icon: 'start|svg',
              onClick: handleStart.bind(null, record),
              onClick: __VLS_ctx.handleStart.bind(null, record),
              name: undefined
            },
            {
              //停止运行
              tooltip: '停止运行',
              icon: 'stop|svg',
              onClick: handleStop.bind(null, record),
              onClick: __VLS_ctx.handleStop.bind(null, record),
              name: undefined
            },
            {
              tooltip: '编辑',
              icon: 'clarity:note-edit-line',
              onClick: handleEdit.bind(null, record),
              onClick: __VLS_ctx.handleEdit.bind(null, record),
              name: undefined
            },
            {
              tooltip: '删除',
@@ -36,8 +40,9 @@
              popConfirm: {
                title: '是否确认删除?',
                placement: 'left',
                confirm: handleDelete.bind(null, record),
                confirm: __VLS_ctx.handleDelete.bind(null, record),
              },
              name: undefined
            },
          ]"
        />