feat:【订单列表】新增字段“商品类型”
This commit is contained in:
parent
b3a9895c51
commit
a0976834b5
|
@ -147,10 +147,17 @@ const Column = [
|
||||||
width: "auto"
|
width: "auto"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "订单类型",
|
title: "商品类型",
|
||||||
name: "type_text",
|
name: "type_text",
|
||||||
prop: "type_text",
|
prop: "type_text",
|
||||||
width: "50px",
|
width: "50px",
|
||||||
|
type: "normal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "订单类型",
|
||||||
|
name: "order_type",
|
||||||
|
prop: "order_type",
|
||||||
|
width: "50px",
|
||||||
type: "slot"
|
type: "slot"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -840,9 +847,6 @@ export default class orderlist extends React.Component {
|
||||||
</p>
|
</p>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (com === "type_text") {
|
|
||||||
return <span>虚拟</span>
|
|
||||||
}
|
|
||||||
if (com == "channel_activity_id") {
|
if (com == "channel_activity_id") {
|
||||||
return (
|
return (
|
||||||
<span>
|
<span>
|
||||||
|
@ -852,6 +856,9 @@ export default class orderlist extends React.Component {
|
||||||
</span>
|
</span>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
if (com == "order_type") {
|
||||||
|
return <span>虚拟</span>
|
||||||
|
}
|
||||||
if (com == "opearo") {
|
if (com == "opearo") {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
Loading…
Reference in New Issue