|
|
|
@ -8,31 +8,30 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div style="display: block; margin-top: 7px;"> |
|
|
|
<div style="background-color: #fff; padding: 15px; border-radius: 8px"> |
|
|
|
<el-table :data="tableData" :height="window.pageHeight < 600 ? 480 : window.pageHeight - 175"> |
|
|
|
<el-table-column prop="userName" label="用户名" width="70" align="center"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="httpStatusCode" label="状态" width="50" align="center"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="url" label="地址" min-width="180"> </el-table-column> |
|
|
|
<el-table-column prop="clientIpAddress" label="ip地址" width="120" align="center"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="clientId" label="客户端id" min-width="80" align="center"></el-table-column> |
|
|
|
<el-table-column prop="httpMethod" label="请求方法" min-width="80" align="center"></el-table-column> |
|
|
|
<el-table-column prop="executionTime" label="时间" min-width="150" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ scope.row.executionTime | dateFormat }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="browserInfo" label="浏览器信息" min-width="150"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="操作" width="120" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button type="" @click="inquireabout(scope.row)" class="commonbutton">查看</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<el-table :data="tableData" :height="window.pageHeight < 600 ? 480 : window.pageHeight - 175" border> |
|
|
|
<el-table-column prop="userName" label="用户名" width="70" align="center"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="httpStatusCode" label="状态" width="50" align="center"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="url" label="地址" min-width="180"> </el-table-column> |
|
|
|
<el-table-column prop="clientIpAddress" label="ip地址" width="120" align="center"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="clientId" label="客户端id" min-width="80" align="center"></el-table-column> |
|
|
|
<el-table-column prop="httpMethod" label="请求方法" min-width="80" align="center"></el-table-column> |
|
|
|
<el-table-column prop="executionTime" label="执行时间" min-width="150" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ scope.row.executionTime | dateFormat }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="executionDuration" label="耗时" min-width="60" align="center"></el-table-column> |
|
|
|
<el-table-column prop="browserInfo" label="浏览器信息" min-width="150" show-overflow-tooltip> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="操作" width="120" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button type="" @click="inquireabout(scope.row)" class="commonbutton">查看</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" |
|
|
|
:page-sizes="[10, 20, 30, 50]" :page-size="pages.maxResultCount" |
|
|
|
|