|
@@ -1,32 +1,32 @@
|
|
|
<template>
|
|
|
<div class="cmain">
|
|
|
- <el-descriptions border :labelStyle="{'width':'150px'}" column="2">
|
|
|
+ <el-descriptions border :labelStyle="{'width':'150px'}" :column="2">
|
|
|
<el-descriptions-item label="项目名称">{{
|
|
|
- form.article.atvName
|
|
|
+ form.atvName
|
|
|
}}</el-descriptions-item>
|
|
|
<el-descriptions-item label="建设规模">
|
|
|
- <el-tag v-if="form.article.scale == 1" type="success"
|
|
|
+ <el-tag v-if="form.scale == 1" type="success"
|
|
|
>小型</el-tag
|
|
|
>
|
|
|
- <el-tag v-else-if="form.article.scale == 2" type="success"
|
|
|
+ <el-tag v-else-if="form.scale == 2" type="success"
|
|
|
>中型</el-tag
|
|
|
>
|
|
|
- <el-tag v-else-if="form.article.scale == 3" type="success"
|
|
|
+ <el-tag v-else-if="form.scale == 3" type="success"
|
|
|
>大型</el-tag
|
|
|
>
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
<el-descriptions-item label="年度投资计划(万)">{{
|
|
|
- form.article.plan
|
|
|
+ form.plan
|
|
|
}}</el-descriptions-item>
|
|
|
<el-descriptions-item label="实际投资金额(万)">{{
|
|
|
- form.article.reality
|
|
|
+ form.reality
|
|
|
}}</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
|
|
|
<el-descriptions border :labelStyle="{'width':'150px'}" style="">
|
|
|
<el-descriptions-item label="建设内容" :contentStyle="{'padding': '20px'}">{{
|
|
|
- form.article.content
|
|
|
+ form.content
|
|
|
}}</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
|
|
@@ -34,7 +34,7 @@
|
|
|
<span style="font-size: 22px;font-weight: bold;">实际投资金额详情</span>
|
|
|
</div>
|
|
|
|
|
|
- <el-table :data="form.dataFillingList" style="width: 100%;margin-top: 20px;">
|
|
|
+ <el-table :data="tableData" style="width: 100%;margin: 20px 0;">
|
|
|
<el-table-column prop="month" label="日期">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="price" label="金额">
|
|
@@ -73,8 +73,8 @@ export default {
|
|
|
mounted() {
|
|
|
if (this.param.id) {
|
|
|
getPriceInfo(this.param.id).then((response) => {
|
|
|
- this.form = response.data;
|
|
|
- console.log(this.form);
|
|
|
+ this.form = response.data.article
|
|
|
+ this.tableData = response.data.dataFillingList
|
|
|
});
|
|
|
}
|
|
|
},
|
|
@@ -87,6 +87,7 @@ export default {
|
|
|
],
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
+ tableData:[],
|
|
|
};
|
|
|
},
|
|
|
|