|
@@ -222,10 +222,18 @@ export default {
|
|
|
{
|
|
|
columnAttributes: {
|
|
|
label: '属性',
|
|
|
- prop: 'isRecyc'
|
|
|
+ prop: 'pgOrderProductRecycles'
|
|
|
},
|
|
|
render: (h, { row, column, index }) => {
|
|
|
- return <div style="padding-left:10px">{row.isRecyc ? '回收' : '不回收'}</div>
|
|
|
+ return (
|
|
|
+ <div style="padding-left:10px">
|
|
|
+ {row.pgOrderProductRecycles
|
|
|
+ .map(item => {
|
|
|
+ return `${item.categoryName}-${item.dictName}`
|
|
|
+ })
|
|
|
+ .join(',')}
|
|
|
+ </div>
|
|
|
+ )
|
|
|
}
|
|
|
},
|
|
|
{
|