This commit is contained in:
孟帅
2023-07-20 18:01:10 +08:00
parent 9113fc5297
commit 373d9627fb
492 changed files with 12170 additions and 6982 deletions

View File

@@ -2,7 +2,7 @@
<div>
<div class="n-layout-page-header">
<n-card :bordered="false" title="服务日志">
在这里开发者可以快速定位服务端在运行时产生的重要日志方便排查系统异常和日常运维工作
在这里开发者可以快速定位重要的运行时日志以便更方便排查系统异常和进行日常运维
</n-card>
</div>
<n-card :bordered="false" class="proCard">
@@ -130,12 +130,6 @@
return h(TableAction as any, {
style: 'button',
actions: [
{
label: '访问日志',
onClick: handleView.bind(null, record),
ifShow: record.sysLogId > 0,
type: 'default',
},
{
label: '堆栈',
onClick: handleStack.bind(null, record),
@@ -146,6 +140,12 @@
onClick: handleDelete.bind(null, record),
auth: ['/serveLog/delete'],
},
{
label: '访问日志',
onClick: handleView.bind(null, record),
ifShow: record.sysLogId > 0,
type: 'default',
},
],
});
},