久保同学不放过我

雪森宁宁

爱情

久保同学不放过我漫画 ,人都忽视了你,我也能将你找出来。 因为「无法成为特别的你」,是我「最特别的人」——。
更多

评分

03-02

更新时间

连载中

漫画评分

请输入正确的数字
稍后再评分

漫画吐槽

页面内容已过期,前往最新页面

确定 取消

未注册用户只能收藏3部漫画,注册用户不受限制

前往注册 取消

MIP.util.platform.start() if(window.location.origin != 'https://m.happymh.com'){ MIP.setData({sys:{isHost:false}}); } MIP.setData({"sys":{"linkType":"html"}}) var storage = MIP.util.customStorage(0); var user = storage.get("_u"); var uBookcase = storage.get("_bc"); var uHistory = storage.get("_ht"); var bc_time = storage.get("_bc_time"); if(user !== null){ user = JSON.parse(user) uBookcase = JSON.parse(uBookcase) uHistory = JSON.parse(uHistory) MIP.setData({"user":{"detail":user,"uHistory":uHistory ? uHistory : [],"uBookcase": uBookcase ? uBookcase : [],"bc_time":bc_time}}); } MIP.watch('user.changeTime', function (newVal, oldVal) { if(newVal !== 0){ var user = MIP.getData("user"); var detail = user.detail; var bookcase = user.uBookcase; var history = user.uHistory; storage.set("_u",JSON.stringify(detail)); storage.set("_bc",JSON.stringify(bookcase)); storage.set("_ht",JSON.stringify(history)); storage.set("_bc_time",user.bc_time); } }) MIP.watch('user.action', function (newVal, oldVal) { if(newVal === 'exit'){ var expireOld = new Date((new Date()).getTime() - 24 * 3600000 * 365); var host = location.host; var mainHost = host.replace('m.', '.'); document.cookie = "sf_token=; expires=" + expireOld+"; Path=/ ; domain="+mainHost; document.cookie = "sf_token=; expires=" + expireOld+"; Path=/"; storage.clear(); } }) MIP.watch('sys.toastMsg.visible', function (newVal, oldVal) { var toastConfig = MIP.getData("sys.toastMsg"); if(newVal === true){ setTimeout(function(){ MIP.setData({sys:{toastMsg:{visible:false}}}) },toastConfig.timeout) } })
var storage = MIP.util.customStorage(0); var marrange = storage.get("_marrange"); if(marrange === null){ marrange = []; }else{ marrange = JSON.parse(marrange); } var serie_code = MIP.getData('serie_code'); var hasMarrange = marrange.findIndex( vv => vv.serie_code == serie_code); if(hasMarrange >=0){; MIP.setData({chapterArrangeLine:marrange[hasMarrange].chapterArrangeLine}); } MIP.watch("chapterArrangeLine", function(newVal, oldVal){ var storage = MIP.util.customStorage(0); var marrange = storage.get("_marrange"); if(marrange === null){ marrange = []; }else{ marrange = JSON.parse(marrange); } var serie_code = MIP.getData('serie_code'); var hasMarrange = marrange.findIndex( vv => vv.serie_code == serie_code); if(hasMarrange >=0){ marrange[hasMarrange] = {'serie_code':serie_code,'chapterArrangeLine':newVal}; }else{ marrange.push({'serie_code':serie_code,'chapterArrangeLine':newVal}); } storage.set("_marrange", JSON.stringify(marrange)); }) MIP.setData({nowtime:(new Date).getTime()}); setTimeout(function(){ var serie_code = MIP.getData('serie_code'); var uHistory = MIP.getData('user.uHistory'); var sys = MIP.getData('sys'); var hasInHistory = uHistory.find( vv => vv.serie_code == serie_code); if(hasInHistory){ MIP.setData({ history: { chapterId: hasInHistory.read_chapter_id, chapterUrl: sys.origin+'/reads/'+serie_code+'/'+ hasInHistory.read_chapter_id, chapterName: '续看'+hasInHistory.read_chapter_name } }); } var user = MIP.getData('user'); var time = (new Date()).getTime(); MIP.setData({ hotCommentsUrl:'https://m.happymh.com/apis/m/hotComments?m_id=1617'+'&s='+time+'&token='+(user.detail.token ? user.detail.token : '') }) },500); MIP.watch("allComments", function(newVal, oldVal){ if(newVal.length < 10){ MIP.setData({hideMore:true}); }else{ MIP.setData({hideMore:false}); } }) setTimeout(function(){ var uBookcase = MIP.getData('user.uBookcase'); var serie_code = MIP.getData('serie_code'); var hasCollect = uBookcase.find(vv => vv.serie_code == serie_code); if(hasCollect){ MIP.setData({inBookcase: true}); } },500) MIP.watch("jumpConfirm", function(newVal, oldVal) { if(newVal == true){ var originUrl = MIP.getData('originUrl'); MIP.viewer.open(originUrl,{isMipLink:false}); } }) MIP.watch("bookcaseAction", function(newVal, oldVal) { var user = MIP.getData('user.detail'); if(user.type == 1){ var code = MIP.getData('serie_code'); var ch_id = 0; var token = MIP.getData('user.detail.token'); var formData = new FormData(); formData.append('code', code); formData.append('ch_id', ch_id); formData.append('token', token); formData.append('action', newVal); fetch('https://m.happymh.com/apis/m/collect', { 'method': 'post', 'body': formData }).then( function(res){ return res.json(); }).then(function(result){ if(result.status != 0){ MIP.setData({sys:{toastMsg:{content:result.msg, visible:true}}}); } }).catch(function(error){ console.log(error.message); }); } }) var hasDownSet = false; var hasUpSet = false; MIP.viewport.on('scroll',function () { var scrolledTop = MIP.viewport.getScrollTop(); if(scrolledTop <=152 && !hasUpSet){ MIP.setData({zOpacity: {"opacity":1}}) hasDownSet=false; hasUpSet=true; } if(scrolledTop>152 && !hasDownSet){ MIP.setData({zOpacity: {"opacity":0}}) hasDownSet = true; hasUpSet = false; } }); // 点赞异步提交 MIP.watch('praiseForm.changeTag', function (newVal, oldVal) { var praiseForm = MIP.getData('praiseForm'); var formData = new FormData(); var user = MIP.getData('user'); formData.append('cid',praiseForm.cid); formData.append('ac',praiseForm.ac); formData.append('token', user.detail.token ? user.detail.token : ''); fetch('https://m.happymh.com/apis/m/praiseComment', { 'method':'post', 'body':formData }).then(function(res){ return res.json(); }).then(function(response){ if(response.status != 0){ //MIP.setData({sys:{toastMsg:{content:response.msg, visible:true}}}); } if(!praiseForm.isHot){ var allComments = MIP.getData('allComments'); MIP.setData({ submiting: false, user: Object.keys(response.u).length ? {changeTime:response.u.login_time,detail:response.u} : {}, allComments: allComments.map( obj => (obj.id != praiseForm.cid ? obj : Object.assign({}, Object.assign(obj,{praiseNum: (obj.hasPraised ? parseInt(obj.praiseNum)-1 : parseInt(obj.praiseNum)+1), hasPraised: !obj.hasPraised}))) ) }); }else{ var hotComments = MIP.getData('hotComments'); MIP.setData({ submiting: false, user: Object.keys(response.u).length ? {changeTime:response.u.login_time,detail:response.u} : {}, hotComments: hotComments.map( obj => (obj.id != praiseForm.cid ? obj : Object.assign({}, Object.assign(obj,{praiseNum: (obj.hasPraised ? parseInt(obj.praiseNum)-1 : parseInt(obj.praiseNum)+1), hasPraised: !obj.hasPraised}))) ) }); } }) })