var vue=new Vue({el:"#videoApp",data:{videoLst:[],showCon:!1,playVideoUrl:"",videoWidth:0},created:function(){$this=this;axios({method:"GET",url:"/Home/InstallVideoApi"}).then(function(n){n.status===200&&n.data.statecode===200?$this.videoLst=n.data.data:window.location.href="/Error/Index"}).catch(function(){window.location.href="/Error/Index"})},methods:{showVideo:function(n){this.showCon=!0;this.playVideoUrl=n},videoClose:function(){this.showCon=!1;this.playVideoUrl="";this.videoWidth=0}}})