This commit is contained in:
2025-10-30 18:24:09 +08:00
parent 1acc3f7a9a
commit 136a64d8cb

View File

@@ -511,6 +511,12 @@
</template>
</el-table-column>
<el-table-column label="商品ID" prop="productId" width="150"/>
<el-table-column label="执行日志" prop="execLog" min-width="220">
<template slot-scope="scope">
<span style="white-space: pre-wrap;" v-if="scope.row.execLog">{{ scope.row.execLog }}</span>
<span v-else style="color:#909399">-</span>
</template>
</el-table-column>
<el-table-column label="错误信息" prop="errorMessage" min-width="200" :show-overflow-tooltip="true"/>
</el-table>
@@ -601,6 +607,12 @@
<span v-else>-</span>
</template>
</el-table-column>
<el-table-column label="执行日志" prop="execLog" min-width="220">
<template slot-scope="scope">
<span style="white-space: pre-wrap;" v-if="scope.row.execLog">{{ scope.row.execLog }}</span>
<span v-else style="color:#909399">-</span>
</template>
</el-table-column>
<el-table-column label="错误信息" prop="errorMessage" min-width="200" :show-overflow-tooltip="true"/>
</el-table>
</el-dialog>