this.tabledatatable = [[1,2,3],[4,5,6]]
var json=[];
this.tabledatatable.forEach(function(item){
var temp={};
item.forEach(function(value,index){
temp['name'+index]=value;
});
temp.check = false
json.push(temp);
})
console.log(json)