import Vue from 'vue'
Vue.component("quality-objectives", {
template: `
{{item.title}}
{{item.text}}
`,
props: {
},
data() {
return {
//质量目标
qualityTargetData:[
{
title:'创优目标',
text:'获得陕西省“双优”工地,创AAA级国家安全文明标准化工地',
images:'images/quality_target_2.png',
},
{
title:'质量管理目标',
text:'确保"西安市建筑工程雁塔杯"奖,力争"长安杯"奖。',
images:'images/quality_target_1.png',
}
],
}
},
mounted(){
let that = this
let url1 = "http://127.0.0.1:9004/system/qualityTarget/list1"
let url2 = "https://szh.makalu.cc/system/qualityTarget/list1"
//$.post(url2,{},res => {
//that.qualityTargetData = res[JSON.parse(localStorage.getItem("data1")).id]
//console.log(that.qualityTargetData[JSON.parse(localStorage.getItem("data1")).id]);
//})
//that.qualityTargetData=JSON.parse('[{"searchValue":null,"createBy":null,"createTime":"2023-07-22 17:58:28","updateBy":null,"updateTime":"2023-07-22 17:58:28","remark":null,"params":{},"id":7,"projectId":"","title":"质量管理目标","text":"确保"西安市建筑工程雁塔杯"奖,力争"长安杯"奖。","images":"https://szh.makalu.cc/images/quality_target_2.png","delFlag":"0","updateUserId":"297","createUserId":"297","projectName":null,"deptId":null,"projectList":null}]');
},
methods: {
},
watch:{
},
})