var vms = Vue.component("amplify-xmkg", { template: `
`, props: { }, data() { return { show:false, projectId:JSON.parse(localStorage.getItem("data")).id, companyData:{} } }, mounted(){ }, methods: { openAmplify(){ this.show = true this.getProject() }, closeAmplify(){ this.show = false }, getProject() { axios({ method: 'post', url: "/api/project/info", data: { "project_id":this.projectId } }).then(res => { this.companyData = res.data.data }).catch(err => { }) }, closeAmplifyAll(e){ if(e.target.className == 'amplify-fixed'){ this.show = false } } }, watch:{ }, })