Vue.component("quality-objectives", {
template: `
{{item.title}}
{{item.text}}
`,
props: {
},
data() {
return {
//质量目标
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: {
},
watch:{
},
})