kun
This commit is contained in:
@@ -21,33 +21,32 @@
|
||||
<div class="bobb" v-if="sub == 0">
|
||||
<div class="left">
|
||||
<div class="time">
|
||||
<span>2019-09-01</span>
|
||||
<span>2019-09-01</span>
|
||||
<span>2019-09-01</span>
|
||||
<span>2019-09-01</span>
|
||||
<span>2019-09-01</span>
|
||||
<template v-for="(time,index) in zDate.date">
|
||||
<span v-if="index < 5" :key="index">{{time}}</span>
|
||||
</template>
|
||||
|
||||
</div>
|
||||
<div class="jdt">
|
||||
<!-- 已申报 -->
|
||||
<img class="sx0" :src="imgUrl.sx0" alt />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zt != 0" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zt == 0" />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zDate.type != 0" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zDate.type == 0" />
|
||||
<!-- 审核中 -->
|
||||
<img class="sx1" :src="imgUrl.sx1" alt />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zt != 1" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zt == 1" />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zDate.type != 1" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zDate.type == 1" />
|
||||
<!-- 审核通过 -->
|
||||
<img class="sx1" :src="imgUrl.sx1" alt />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zt != 2" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zt == 2" />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zDate.type != 5" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zDate.type == 5" />
|
||||
<!-- 评审中 -->
|
||||
<img class="sx1" :src="imgUrl.sx1" alt />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zt != 3" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zt == 3" />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zDate.type != 6" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zDate.type == 6" />
|
||||
<!-- 评审通过 -->
|
||||
<img class="sx1" :src="imgUrl.sx1" alt />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zt != 4" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zt == 4" />
|
||||
<img class="d0" :src="imgUrl.d0" v-if="zDate.type != 10" />
|
||||
<img class="d1" :src="imgUrl.d1" v-if="zDate.type == 10" />
|
||||
<!-- end -->
|
||||
<img class="sx1" :src="imgUrl.sx1" alt />
|
||||
</div>
|
||||
@@ -63,10 +62,10 @@
|
||||
<div class="div-v">
|
||||
<span>初筛审核通过</span>
|
||||
<img class="oo" :src="imgUrl.d0" alt />
|
||||
<!-- <section>
|
||||
<span style="color:#e60012;font-size:20px;">总分: 71分</span>
|
||||
<section v-if="zDate.type === 5">
|
||||
<span style="color:#e60012;font-size:20px;">总分: {{zDate.score}}分</span>
|
||||
<span style="color:#999;font-size:16px;">(及格分数: 70)</span>
|
||||
</section>-->
|
||||
</section>
|
||||
</div>
|
||||
<div>
|
||||
<span>立项评审中</span>
|
||||
@@ -75,6 +74,10 @@
|
||||
<div>
|
||||
<span>立项评审通过</span>
|
||||
<img class="oo" :src="imgUrl.d0" alt />
|
||||
<section v-if="zDate.type === 10">
|
||||
<span style="color:#e60012;font-size:20px;">总分: {{zDate.score}}分</span>
|
||||
<span style="color:#999;font-size:16px;">(及格分数: 70)</span>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -239,7 +242,8 @@ export default {
|
||||
"第四步:线下立项评审",
|
||||
"第五步:立项结果查询"
|
||||
],
|
||||
zData: []
|
||||
zData: [],
|
||||
zDate:[]
|
||||
};
|
||||
},
|
||||
computed: {},
|
||||
@@ -258,7 +262,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
download() {
|
||||
this.getPdf('pdfDom', '企业信用报告')
|
||||
this.getPdf('pdfDom', '项目信用报告')
|
||||
},
|
||||
preview() {
|
||||
this.popupStatus = !this.popupStatus
|
||||
@@ -279,6 +283,7 @@ export default {
|
||||
}).then(res => {
|
||||
if (res.data.data.code === 200) {
|
||||
_this.zData = res.data.data.data.ProjectDetails
|
||||
_this.zDate = res.data.data.data.ProjectReview
|
||||
console.log(res.data.data.data)
|
||||
} else {
|
||||
alert('请求失败!')
|
||||
|
||||
Reference in New Issue
Block a user