Commit d8ea005a authored by 徐俊's avatar 徐俊

xujun

parent 66881409
...@@ -111,6 +111,12 @@ export default { ...@@ -111,6 +111,12 @@ export default {
return null; return null;
}, },
} }
},
totalFunding: {
type: Number,
default: () => {
return 0.00;
},
} }
}, },
data () { data () {
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
</a-modal> </a-modal>
<a-modal v-model="visibleEvaluation" title="评审专家须知" width="90%" :dialog-style="{ top: '5%' }" :footer="null" destroyOnClose> <a-modal v-model="visibleEvaluation" title="评审专家须知" width="90%" :dialog-style="{ top: '5%' }" :footer="null" destroyOnClose>
<!-- <evaluation-edit v-model="id" @close="closeWindow"></evaluation-edit> --> <!-- <evaluation-edit v-model="id" @close="closeWindow"></evaluation-edit> -->
<score v-model="id" :exportTime="exportTime" @close="closeWindow" ref="scoreEdit" /> <score v-model="id" :exportTime="exportTime" :totalFunding="totalFunding" @close="closeWindow" ref="scoreEdit" />
</a-modal> </a-modal>
<a-modal v-model="visibleStandard" title="专家评分标准" width="1000px" :dialog-style="{ top: '10%' }" :footer="null" destroyOnClose> <a-modal v-model="visibleStandard" title="专家评分标准" width="1000px" :dialog-style="{ top: '10%' }" :footer="null" destroyOnClose>
<pdf-view v-model="url.downloadUrl" :fileName="url.fileDownload"></pdf-view> <pdf-view v-model="url.downloadUrl" :fileName="url.fileDownload"></pdf-view>
...@@ -99,6 +99,7 @@ export default { ...@@ -99,6 +99,7 @@ export default {
}, },
visibleStandard: false, visibleStandard: false,
exportTime: { expertStart: null, expertEnd: null }, exportTime: { expertStart: null, expertEnd: null },
totalFunding: 0.00,
} }
}, },
created () { created () {
...@@ -158,6 +159,7 @@ export default { ...@@ -158,6 +159,7 @@ export default {
this.visibleEvaluationView = true this.visibleEvaluationView = true
} else if (type === 'eva') { } else if (type === 'eva') {
this.id = record.id this.id = record.id
console.log(record)
this.visibleEvaluation = true this.visibleEvaluation = true
} else if (type === 'pView') { } else if (type === 'pView') {
this.projectId = record.projId this.projectId = record.projId
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment