【订单管理】普通商品订单,无平台批次号,应该展示“-”
This commit is contained in:
parent
fd462e8c13
commit
cf5a7157ac
|
@ -120,7 +120,7 @@ const Column = [
|
||||||
{
|
{
|
||||||
title: '平台批次号',
|
title: '平台批次号',
|
||||||
name: 'channel_activity_id',
|
name: 'channel_activity_id',
|
||||||
type: 'normal',
|
type: 'slot',
|
||||||
prop: 'channel_activity_id',
|
prop: 'channel_activity_id',
|
||||||
width: 'auto'
|
width: 'auto'
|
||||||
},
|
},
|
||||||
|
@ -733,6 +733,9 @@ export default class orderlist extends React.Component {
|
||||||
if (com === 'type_text') {
|
if (com === 'type_text') {
|
||||||
return <span>{rowData.type === 1 ? '商品' : '立减金'}</span>
|
return <span>{rowData.type === 1 ? '商品' : '立减金'}</span>
|
||||||
}
|
}
|
||||||
|
if(com=='channel_activity_id'){
|
||||||
|
return <span>{rowData.channel_activity_id?rowData.channel_activity_id : '-'}</span>
|
||||||
|
}
|
||||||
if (com == 'opearo') {
|
if (com == 'opearo') {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
Loading…
Reference in New Issue