var vms = Vue.component("amplify-qysj", { template: `
`, props: {}, data() { return { show: false, //质量目标 qualityTargetData:[ { title:'创优目标', text:'获得陕西省“双优”工地,创AAA级国家安全文明标准化工地', images:'/images/quality_target_1.png', } ], } }, mounted() { let that = this // let url1 = "http://127.0.0.1:9004/system/qualityTarget/list1" let url2 = "/system/qualityTarget/list1" $.post(url2,{},res => { that.qualityTargetData = res[JSON.parse(localStorage.getItem("data")).id] console.log(that.qualityTargetData[JSON.parse(localStorage.getItem("data")).id]); }) }, methods: { openAmplify() { this.show = true // this.getProject() }, closeAmplify() { this.show = false }, closeAmplifyAll(e) { if (e.target.className == 'amplify-fixed') { this.show = false } } }, watch: {}, })