|
@@ -64,9 +64,15 @@ const Lockstore = props => {
|
|
|
width: 350,
|
|
width: 350,
|
|
|
render: text => {
|
|
render: text => {
|
|
|
const productArr = text.split('+')
|
|
const productArr = text.split('+')
|
|
|
- productArr.map((item) => {
|
|
|
|
|
- return <Tag key={item} color="#886ab5">{item}</Tag>
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return (
|
|
|
|
|
+ <div>
|
|
|
|
|
+ {productArr.map((item, index) => (
|
|
|
|
|
+ <Tag key={index} color="#886ab5">
|
|
|
|
|
+ {item}
|
|
|
|
|
+ </Tag>
|
|
|
|
|
+ ))}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ )
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|