域名解析任务列表中增加集群解析页面链接/在域名解析--集群详情中显示正在执行的任务

This commit is contained in:
刘祥超
2021-09-21 10:56:29 +08:00
parent beb34f8264
commit 92777366ec
5 changed files with 117 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
// 使用Icon的链接方式
Vue.component("link-icon", {
props: ["href", "title"],
props: ["href", "title", "target"],
data: function () {
return {
vTitle: (this.title == null) ? "打开链接" : this.title
}
},
template: `<span><slot></slot>&nbsp;<a :href="href" :title="vTitle" class="link grey"><i class="icon linkify small"></i></a></span>`
template: `<span><slot></slot>&nbsp;<a :href="href" :title="vTitle" class="link grey" :target="target"><i class="icon linkify small"></i></a></span>`
})
// 带有下划虚线的连接