|
@@ -6,7 +6,7 @@
|
|
|
/>
|
|
|
<div class="title">共享驿站</div>
|
|
|
</div>
|
|
|
- <div class="dialog-cont">
|
|
|
+ <div class="dialog-cont" v-if="flag >= 3">
|
|
|
<div class="dialog-left">
|
|
|
<div class="dialog-list">
|
|
|
<div class="dialog-item">
|
|
@@ -149,6 +149,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ flag: 0,
|
|
|
//建设完成达标率
|
|
|
constructionQuantityNum: {name: '', value: 0},
|
|
|
// 服务内容
|
|
@@ -209,6 +210,7 @@ export default {
|
|
|
this.constructionQuantityNum = res.data.constructionQuantityNum;
|
|
|
this.completedNum = res.data.completedNum;
|
|
|
this.participateProportionRate = res.data.participateProportionRate;
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -227,6 +229,7 @@ export default {
|
|
|
if (Number(res.code) === 200) {
|
|
|
this.serviceContent = res.data;
|
|
|
this.fwData = res.data;
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -235,6 +238,7 @@ export default {
|
|
|
getPropertyList(this.$props.appOrg).then((res) => {
|
|
|
if (Number(res.code) === 200) {
|
|
|
this.unitDataList = res.data
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|