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