// map循环改变数组类型生成新的对象添加进数组
this.cityList = datacity.map((item, index) => {
return {
value: item.name,
label: item.name
}
})
所以通过map循环出来再从新合成新的数组