调整群组数据显示
This commit is contained in:
@@ -15,17 +15,17 @@
|
|||||||
<el-table-column prop="plugin_name" label="插件名称"></el-table-column>
|
<el-table-column prop="plugin_name" label="插件名称"></el-table-column>
|
||||||
<el-table-column prop="total_calls" label="调用次数" sortable>
|
<el-table-column prop="total_calls" label="调用次数" sortable>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ parseInt(scope.row.total_calls) || 0 }}
|
{% raw %}{{ parseInt(scope.row.total_calls) || 0 }}{% endraw %}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="success_calls" label="成功次数" sortable>
|
<el-table-column prop="success_calls" label="成功次数" sortable>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ parseInt(scope.row.success_calls) || 0 }}
|
{% raw %}{{ parseInt(scope.row.success_calls) || 0 }}{% endraw %}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="failed_calls" label="失败次数" sortable>
|
<el-table-column prop="failed_calls" label="失败次数" sortable>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ parseInt(scope.row.failed_calls) || 0 }}
|
{% raw %}{{ parseInt(scope.row.failed_calls) || 0 }}{% endraw %}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="成功率" sortable>
|
<el-table-column label="成功率" sortable>
|
||||||
|
|||||||
Reference in New Issue
Block a user