|
|
@@ -57,9 +57,9 @@
|
|
|
<el-button type="primary" @click="handleExport()">导出数据</el-button>
|
|
|
</template>
|
|
|
<el-table height="calc(100vh - 500px)" :data="operationLogList" v-loading="loading">
|
|
|
- <el-table-column label="日志编号" width="100" prop="id" />
|
|
|
- <el-table-column label="账号" prop="realName" />
|
|
|
- <el-table-column label="姓名" prop="operatorName" />
|
|
|
+ <el-table-column type="index" width="100" label="日志编号"/>
|
|
|
+ <el-table-column label="账号" prop="operatorName" />
|
|
|
+ <el-table-column label="姓名" prop="realName" />
|
|
|
<el-table-column label="应用侧" prop="platform" >
|
|
|
<template #default="{ row }">
|
|
|
{{ row.platform === 'ADMIN' ? '管理侧' : '平台侧' }}
|