diff --git a/src/views/tradingPairs/index.vue b/src/views/tradingPairs/index.vue index 3561007..3abc46e 100644 --- a/src/views/tradingPairs/index.vue +++ b/src/views/tradingPairs/index.vue @@ -110,7 +110,7 @@ const columns: TableBaseColumns = [ align: 'center' }, { - title: '是否支持现货交易', + title: '是否激活', key: 'isActive', width: 140, align: 'center', @@ -121,7 +121,7 @@ const columns: TableBaseColumns = [ type: row.isActive ? 'success' : 'error' }, { - default: () => (row.isActive ? '支持' : '不支持') + default: () => (row.isActive ? '激活' : '未激活') } ); }