const _delete = (array,index) => {
                // 补全代码
                return array.filter((item, index1) => index1 != index);
  }