|
@@ -121,7 +121,7 @@ const AMForm = props => {
|
121
|
121
|
})(
|
122
|
122
|
<Select placeholder="销售状态">
|
123
|
123
|
{saleType.map((item, _) => (
|
124
|
|
- <Option value={item.id}>{item.name}</Option>
|
|
124
|
+ <Option value={item.id} key={item.id}>{item.name}</Option>
|
125
|
125
|
))}
|
126
|
126
|
</Select>,
|
127
|
127
|
)}
|
|
@@ -137,7 +137,7 @@ const AMForm = props => {
|
137
|
137
|
})(
|
138
|
138
|
<Select placeholder="户型">
|
139
|
139
|
{houseType.map((item, _) => (
|
140
|
|
- <Option value={item.id}>{item.name}</Option>
|
|
140
|
+ <Option value={item.id} key={item.id}>{item.name}</Option>
|
141
|
141
|
))}
|
142
|
142
|
</Select>,
|
143
|
143
|
)}
|