提交代码

This commit is contained in:
jiang 2024-11-29 09:39:52 +08:00
parent 1faa3b88cc
commit 08db6b1862
2 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@
:max-height="tableHeight"
>
<el-table-column label="序号" align="center" width="80" type="index">
<template scope="scope">
<template slot-scope="scope">
<span>{{ (listQuery.pageNum - 1) * listQuery.pageSize + scope.$index + 1 }}</span>
</template>
</el-table-column>

View File

@ -58,7 +58,7 @@
:max-height="tableHeight"
>
<el-table-column label="序号" align="center" width="80" type="index">
<template scope="scope">
<template slot-scope="scope">
<span>{{ (listQuery.pageNum - 1) * listQuery.pageSize + scope.$index + 1 }}</span>
</template>
</el-table-column>
@ -69,8 +69,8 @@
<el-table-column label="操作类型" align="center" prop="operType" />
<el-table-column label="操作详情" align="center" prop="operateDetail" />
<el-table-column label="操作结果" align="center" prop="result">
<template slot-scope="{ row }">
{{ row.result}}
<template slot-scope="scope">
{{ scope.row.result}}
</template>
</el-table-column>
<el-table-column label="操作参数" align="center" prop="params" />