|
@@ -21,7 +21,7 @@
|
|
|
<template #stepvalue="{ text }">
|
|
<template #stepvalue="{ text }">
|
|
|
<span>{{(text* 100).toFixed(0)}}</span>
|
|
<span>{{(text* 100).toFixed(0)}}</span>
|
|
|
</template>
|
|
</template>
|
|
|
- <template #handlestatus="{ text }">
|
|
|
|
|
|
|
+ <template #stepstatus="{ text }">
|
|
|
<span>{{getPerformanceStatusName(text)}}</span>
|
|
<span>{{getPerformanceStatusName(text)}}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</a-table>
|
|
</a-table>
|
|
@@ -47,7 +47,7 @@ const columns = [
|
|
|
{ title: '步骤值(%)', dataIndex: 'stepvalue', key: 'stepvalue', align: 'center', slots: { customRender: 'stepvalue' } },
|
|
{ title: '步骤值(%)', dataIndex: 'stepvalue', key: 'stepvalue', align: 'center', slots: { customRender: 'stepvalue' } },
|
|
|
{ title: '距离上一步', dataIndex: 'stepdays', key: 'stepdays', align: 'center' },
|
|
{ title: '距离上一步', dataIndex: 'stepdays', key: 'stepdays', align: 'center' },
|
|
|
{ title: '自动', dataIndex: 'isauto', key: 'isauto', align: 'center', slots: { customRender: 'isauto' } },
|
|
{ title: '自动', dataIndex: 'isauto', key: 'isauto', align: 'center', slots: { customRender: 'isauto' } },
|
|
|
- { title: '当前状态', dataIndex: 'handlestatus', key: 'handlestatus', align: 'center', slots: { customRender: 'handlestatus' } },
|
|
|
|
|
|
|
+ { title: '当前状态', dataIndex: 'stepstatus', key: 'stepstatus', align: 'center', slots: { customRender: 'stepstatus' } },
|
|
|
];
|
|
];
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|