mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 22:30:28 +08:00
改进界面
This commit is contained in:
12
web/public/js/components/common/node-log-row.js
Normal file
12
web/public/js/components/common/node-log-row.js
Normal file
@@ -0,0 +1,12 @@
|
||||
Vue.component("node-log-row", {
|
||||
props: ["v-log", "v-keyword"],
|
||||
data: function () {
|
||||
return {
|
||||
log: this.vLog,
|
||||
keyword: this.vKeyword
|
||||
}
|
||||
},
|
||||
template: `<div>
|
||||
<pre class="log-box" style="margin: 0; padding: 0"><span :class="{red:log.level == 'error', orange:log.level == 'warning'}"><span v-if="!log.isToday">[{{log.createdTime}}]</span><strong v-if="log.isToday">[{{log.createdTime}}]</strong><keyword :v-word="keyword">[{{log.tag}}]{{log.description}}</keyword></span> <span v-if="log.count > 0" class="ui label tiny" :class="{red:log.level == 'error', orange:log.level == 'warning'}">共{{log.count}}条</span></pre>
|
||||
</div>`
|
||||
})
|
||||
Reference in New Issue
Block a user