DNS支持TSIG

This commit is contained in:
GoEdgeLab
2021-07-25 15:08:11 +08:00
parent e21e76e872
commit 75795ae879
9 changed files with 107 additions and 4 deletions

View File

@@ -34,5 +34,8 @@ Vue.component("ns-access-log-box", {
},
template: `<div class="access-log-row" :style="{'color': (accessLog.nsRecordId == null || accessLog.nsRecordId == 0) ? '#dc143c' : ''}" ref="box">
<span v-if="accessLog.region != null && accessLog.region.length > 0" class="grey">[{{accessLog.region}}]</span> <keyword :v-word="vKeyword">{{accessLog.remoteAddr}}</keyword> [{{accessLog.timeLocal}}] [{{accessLog.networking}}] <em>{{accessLog.questionType}} <keyword :v-word="vKeyword">{{accessLog.questionName}}</keyword></em> -&gt; <em>{{accessLog.recordType}} <keyword :v-word="vKeyword">{{accessLog.recordValue}}</keyword></em><!-- &nbsp; <a href="" @click.prevent="showLog" title="查看详情"><i class="icon expand"></i></a>-->
<div v-if="accessLog.error != null && accessLog.error.length > 0">
<i class="icon warning circle"></i>错误:[{{accessLog.error}}]
</div>
</div>`
})