Commit 252123a0 by 蒋勇

d

parent 349181e2
......@@ -82,6 +82,7 @@ basecomp.forEach(function (comp) {
store:store,
data:function(){
return {
ismenuopen:true,
loading:true,
logins:[
......@@ -114,6 +115,17 @@ basecomp.forEach(function (comp) {
});
},
methods:{
showmenu(){
if(this.ismenuopen){
$("#leftmenuid").fadeOut(1500);
$("#clkhandle").css("left","25px");
this.ismenuopen=false;
}else{
$("#leftmenuid").fadeIn(1500);
$("#clkhandle").css("left","240px");
this.ismenuopen=true;
}
},
initWindowShow(){
var h=$(window).height();
var m=h-90;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment