fix:禁用 issueTab

This commit is contained in:
zhangyu
2022-09-07 10:19:50 +08:00
parent 682f01bb80
commit 0aa908d866
2 changed files with 4 additions and 4 deletions

View File

@@ -50,9 +50,9 @@ dev_build:
- export FILE_NAME=nz-gui-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA.zip
# 生成 git log 日志文件
- sed -i 's+</body>+<a style="position:fixed;bottom:20px;left:40px;z-index:999;color:white;" target="_blank" href="/static/git-log.html">更新记录</a>\n</body>+g' ./index.html;
- echo "<pre>" > /static/git-log.html
- echo "<pre>" > ./static/git-log.html
- "git log -100 --pretty=format:'%ad : %s' >> ./static/git-log.html"
- echo "</pre>" >> /static/git-log.html
- echo "</pre>" >> ./static/git-log.html
- zip -q -r $FILE_NAME ./*
# 将 dist zip 上传到 minio

View File

@@ -67,7 +67,7 @@
<!--alertRule Tab-->
<alertMessageTabNew v-if="from === fromRoute.alertSilence && targetTab === 'alertMessageTab'" v-show="subResizeShow" :from="from" :obj="obj" :tabs="tabs.alertSilence" @changeTab="changeTab" :targetTab.sync="targetTab"></alertMessageTabNew>
<!--issue Tab-->
<issueTab v-if="from === fromRoute.issue && targetTab === 'issue'" v-show="subResizeShow" :from="from" :obj="obj" :tabs="tabs.alertSilence" @changeTab="changeTab" :targetTab.sync="targetTab"></issueTab>
<!-- <issueTab v-if="from === fromRoute.issue && targetTab === 'issue'" v-show="subResizeShow" :from="from" :obj="obj" :tabs="tabs.alertSilence" @changeTab="changeTab" :targetTab.sync="targetTab"></issueTab>-->
</div>
</div>
</div>
@@ -274,7 +274,7 @@ export default {
{ prop: 'alertMessageTab', name: this.$t('overall.alert'), active: true }
],
issue: [
{ prop: 'issue', name: this.$t('overall.issue'), active: true }
// { prop: 'issue', name: this.$t('overall.issue'), active: true }
]
}
}