|
@@ -59,21 +59,30 @@
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
|
<el-table ref="tables" border v-loading="loading" :data="list" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="handleSortChange">
|
|
<el-table ref="tables" border v-loading="loading" :data="list" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="handleSortChange">
|
|
- <el-table-column label="操作人员" align="left" prop="operName"/>
|
|
|
|
- <el-table-column label="操作内容" align="left" prop="businessType" :formatter="typeFormat"/>
|
|
|
|
- <el-table-column label="操作模块" align="left" prop="title" />
|
|
|
|
- <el-table-column label="操作页面" align="left" prop="title" />
|
|
|
|
- <el-table-column label="登录IP" align="left" prop="operIp"/>
|
|
|
|
- <el-table-column label="操作日期" align="left" prop="operTime">
|
|
|
|
|
|
+ <el-table-column label="主题" align="left" prop="title" width="200" show-overflow-tooltip/>
|
|
|
|
+ <el-table-column label="类型" align="left" prop="businessType" width="80" :formatter="typeFormat" show-overflow-tooltip/>
|
|
|
|
+ <el-table-column label="接口地址" align="left" prop="operUrl" width="200" show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span>{{ parseTime(scope.row.operTime) }}</span>
|
|
|
|
|
|
+ <p @click="clickCopy(scope.row.operUrl,'接口地址')" style="cursor:pointer;">{{scope.row.operUrl}}</p>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="ip" align="left" prop="operIp" width="120" show-overflow-tooltip/>
|
|
|
|
+ <el-table-column label="参数" align="left" prop="operParam" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <p @click="clickCopy(scope.row.operParam,'参数')" style="cursor:pointer;">{{scope.row.operParam}}</p>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="状态" align="left" prop="status">
|
|
|
|
|
|
+ <el-table-column label="状态" align="left" prop="status" width="80" show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{scope.row.status==0?'正常':'异常'}}
|
|
{{scope.row.status==0?'正常':'异常'}}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column label="操作人" align="left" prop="operName" width="140" show-overflow-tooltip/>
|
|
|
|
+ <el-table-column label="操作日期" align="left" prop="operTime" width="180" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ parseTime(scope.row.operTime) }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
|
|
|
|
<pagination :page-sizes="[20, 30, 40, 50]"
|
|
<pagination :page-sizes="[20, 30, 40, 50]"
|