|
@@ -267,7 +267,7 @@ function columns12(
|
|
|
title: '是否退游', dataIndex: 'is_remove_game', label: '客户运营操作', align: 'center', width: 50,
|
|
|
render: (a: any, b: any) => {
|
|
|
// return <IsTrue value={a ? '1' : '0'} onChange={(value) => handleIsTrue(value, b, 'isRemoveGame')} />
|
|
|
- return a ? <Badge status="error" text="是" /> : <Badge status="processing" text="否"/>
|
|
|
+ return a ? <Badge status="error" text="是" /> : a === 0 ? <Badge status="processing" text="否"/> : '--'
|
|
|
},
|
|
|
},
|
|
|
{
|