|
@@ -164,7 +164,25 @@ export default {
|
|
|
customRender: (record, text) => {
|
|
|
return record ? (record.rubbishWeight ? (record.rubbishWeight + 'g/' + record.goleNum + '个') : '不兑换') : '不兑换'
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '废旧玻璃',
|
|
|
+ dataIndex: 'glass',
|
|
|
+ width: 100,
|
|
|
+ align: 'center',
|
|
|
+ customRender: (record, text) => {
|
|
|
+ return record ? (record.rubbishWeight ? (record.rubbishWeight + 'g/' + record.goleNum + '个') : '不兑换') : '不兑换'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '可回收物',
|
|
|
+ dataIndex: 'recycling',
|
|
|
+ width: 100,
|
|
|
+ align: 'center',
|
|
|
+ customRender: (record, text) => {
|
|
|
+ return record ? (record.rubbishWeight ? (record.rubbishWeight + 'g/' + record.goleNum + '个') : '不兑换') : '不兑换'
|
|
|
+ }
|
|
|
+ }
|
|
|
]
|
|
|
},
|
|
|
{
|