data(){return{
isPrev:true,
isNext:false,
active:0};},activated(){this.sanNew()this.currentId()},
methods:{sanNew(){//获取文章数据的接口},previousPage(){//上一篇var index =this.totals.map(item=> item.id).indexOf(+this.id)if(index !=-1&& index !=0){this.id =this.totals[index -1].id
this.sanNew()}this.currentId()},nextPage(){//下一篇var index =this.totals.map(item=> item.id).indexOf(+this.id)if(index !=-1&& index !=this.totals.length -1){this.id =this.totals[index +1].id
this.sanNew()}this.currentId()},currentId(){for(let i inthis.totals){if(this.totals[i].id ==this.id){this.active = i
this.isPrev = i ==0?false:truethis.isNext = i ==this.totals.length -1?false:true}}}}