Commit 252123a0 by 蒋勇

d

parent 349181e2
...@@ -82,6 +82,7 @@ basecomp.forEach(function (comp) { ...@@ -82,6 +82,7 @@ basecomp.forEach(function (comp) {
store:store, store:store,
data:function(){ data:function(){
return { return {
ismenuopen:true,
loading:true, loading:true,
logins:[ logins:[
...@@ -114,6 +115,17 @@ basecomp.forEach(function (comp) { ...@@ -114,6 +115,17 @@ basecomp.forEach(function (comp) {
}); });
}, },
methods:{ 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(){ initWindowShow(){
var h=$(window).height(); var h=$(window).height();
var m=h-90; 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