const _delete = (array,index) => {
 // 补全代码
   var newArr=JSON.parse(JSON.stringify(array))
   newArr.splice(index,1)
   return newArr
 }