Skip to content

Commit

Permalink
bugfix: 步骤执行详情导出日志的那个confirm弹窗现在显示不出来了 TencentBlueKing#1690
Browse files Browse the repository at this point in the history
  • Loading branch information
hLinx committed Jan 31, 2023
1 parent a6a996e commit c7c0004
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

<template>
<div
ref="download"
v-bk-tooltips="{
content: $t('history.分发文件步骤不支持日志导出'),
disabled: !isFile,
Expand All @@ -36,7 +35,11 @@
}"
class="step-execute-log-export"
@click="handleShow">
<div>{{ $t('history.导出日志') }}</div>
<div
ref="download"
style="padding: 0 15px;">
{{ $t('history.导出日志') }}
</div>
<div
v-if="isShowThumProcess"
class="thum-precess-bar"
Expand Down Expand Up @@ -89,8 +92,10 @@
<div
v-if="packageStatus === 4"
class="package-result-tips">
<!-- eslint-disable-next-line max-len -->
<span>{{ $t('history.日志压缩包已准备就绪,') }}{{ $t('history.是否') }}<a @click="handleDownload">{{ $t('history.直接下载') }}</a></span>
<span>
<span>{{ $t('history.日志压缩包已准备就绪,') }}{{ $t('history.是否') }}</span>
<a @click="handleDownload">{{ $t('history.直接下载') }}</a>
</span>
<bk-button
style="margin-top: -5px; margin-left: auto;"
theme="primary"
Expand Down Expand Up @@ -322,7 +327,6 @@
.step-execute-log-export {
position: relative;
height: 32px;
padding: 0 15px;
margin-left: 10px;
font-size: 14px;
line-height: 32px;
Expand Down

0 comments on commit c7c0004

Please sign in to comment.