mirror of https://github.com/shunfei/cronsun
修复日志查询 301 和日志详细信息用户前面的 attention 图标
parent
c4fa959ac6
commit
7fae9ad316
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -125,7 +125,7 @@ export default {
|
|||
fetchList(query){
|
||||
this.loading = true;
|
||||
var vm = this;
|
||||
this.$rest.GET('/logs?'+query)
|
||||
this.$rest.GET('logs?'+query)
|
||||
.onsucceed(200, (resp)=>{
|
||||
vm.list = resp.list;
|
||||
vm.total = resp.total;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<p>节点:{{log.node}}</p>
|
||||
</div>
|
||||
<div class="ui segment">
|
||||
<p>用户:<i class="attention warning icon" if="log.user=='root' || log.user == ''"></i> {{log.user}}</p>
|
||||
<p>用户:<i class="attention warning icon" v-if="log.user == 'root' || log.user == ''"></i> {{log.user}}</p>
|
||||
</div>
|
||||
<div class="ui segment">
|
||||
<p>时间:{{log.beginTime}} 到 {{log.endTime}}</p>
|
||||
|
|
Loading…
Reference in New Issue