|
@@ -142,6 +142,16 @@
|
|
|
},
|
|
|
|
|
|
{
|
|
|
+ title: t('routes.scenes.status'),
|
|
|
+ dataIndex: 'payStatus',
|
|
|
+ width: 180,
|
|
|
+ customRender: ({ record }) => {
|
|
|
+ const enable = record.payStatus == 1;
|
|
|
+ const text = enable ? t('routes.scenes.statusText.1') : t('routes.scenes.statusText.0');
|
|
|
+ return text;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
title: t('routes.scenes.livestreamStatus'),
|
|
|
dataIndex: 'livestreamStatus',
|
|
|
width: 180,
|