How do the background fields in antdesgin correspond to multiple select selected values one by one?

clipboard.png

select
clipboard.png
how to match the background fields with the selected state of select.
my operation is to splice the value. Is there a simple way
< Select style= {{width: 120}} onChange= {this.handleselect.bind (this)} >

                      {
                        this.state.actionTypeFindAll.map((item)=>(
                          <Option value={item.id+"@"+item1}>{item.name}</Option>
                        ))
                      }
                    </Select>
                  
Mar.14,2021
Menu