Vue.component("quality-objectives-safety", {
template: `
{{item.title}}
{{item.text}}
`,
props: {
},
data() {
return {
//质量目标
qualityTargetData:[
// {
// title:'创优目标',
// text:'获得陕西省“双优”工地,创AAA级国家安全文明标准化工地',
// images:'/images/quality_target_1.png',
// }
],
}
},
mounted(){
let that = this
$.post("/weixin/saftTarget/list1",{},res => {
that.qualityTargetData = res[JSON.parse(localStorage.getItem("data")).id]
})
},
methods: {
},
watch:{
},
})