|
|
@@ -257,7 +257,7 @@
|
|
|
|
|
|
<div class="create-body" v-if="!isModifyMode">
|
|
|
<div class="title h2">报告列表</div>
|
|
|
- <report-list/>
|
|
|
+ <report-list v-bind:reports="project.reportList"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -339,7 +339,34 @@ export default {
|
|
|
datetime: "2018-11-11 11:11:01",
|
|
|
worker: ""
|
|
|
}
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ reportList: [
|
|
|
+ {
|
|
|
+ id: 1,
|
|
|
+ type: '项目可行性报告',
|
|
|
+ file: []
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2,
|
|
|
+ type: '项目测试方案(汇总)',
|
|
|
+ file: [{name: 'report2', url: 'report2.excel'}]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 3,
|
|
|
+ type: '项目测试报告(汇总)',
|
|
|
+ file: [{name: 'report3', url: 'report3.excel'}]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 4,
|
|
|
+ type: '项目缺陷报告(汇总)',
|
|
|
+ file: [{name: 'report4', url: 'report4.excel'}]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 5,
|
|
|
+ type: '项目用例报告(汇总)',
|
|
|
+ file: [{name: 'report5', url: 'report5.excel'}]
|
|
|
+ }
|
|
|
+ ],
|
|
|
},
|
|
|
analyseDemandList: [
|
|
|
{
|
|
|
@@ -350,6 +377,15 @@ export default {
|
|
|
url: "feasibilityReport.docx"
|
|
|
},
|
|
|
priceAuditReport: { name: "价格审核告", url: "priceAuditReport.docx" }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "1",
|
|
|
+ institution: "上软",
|
|
|
+ feasibilityReport: {
|
|
|
+ name: "可行性分析报告",
|
|
|
+ url: "feasibilityReport.docx"
|
|
|
+ },
|
|
|
+ priceAuditReport: { name: "价格审核告", url: "priceAuditReport.docx" }
|
|
|
}
|
|
|
],
|
|
|
pickerOptions: {
|