|
@@ -239,7 +239,7 @@
|
|
|
label="项目名称"
|
|
|
align="center"
|
|
|
prop="projectName"
|
|
|
- width="150"
|
|
|
+ width="300"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="投资负责人"
|
|
@@ -317,14 +317,16 @@
|
|
|
<span>{{ parseTime(scope.row.decisionDate, "{y}-{m}-{d}") }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="项目所属行业" align="center" prop="industry" />
|
|
|
+ <el-table-column label="项目所属行业" width="120" align="center" prop="industry" />
|
|
|
<el-table-column
|
|
|
label="项目所属公司"
|
|
|
+ width="300"
|
|
|
align="center"
|
|
|
prop="tProjectCompany.companyName"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="项目联系人"
|
|
|
+ width="120"
|
|
|
align="center"
|
|
|
prop="tProjectContacts.name"
|
|
|
/>
|
|
@@ -337,11 +339,20 @@
|
|
|
<el-table-column
|
|
|
label="项目融资阶段"
|
|
|
align="center"
|
|
|
+ width="120"
|
|
|
prop="financingStage"
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag
|
|
|
+ :options="dict.type.financing_stage"
|
|
|
+ :value="scope.row.financingStage"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
label="预期融资金额"
|
|
|
align="center"
|
|
|
+ width="120"
|
|
|
prop="financingMoney"
|
|
|
/>
|
|
|
<el-table-column
|
|
@@ -355,11 +366,32 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="投前估值" align="center" prop="investValuation" />
|
|
|
- <el-table-column label="预计投资金额" align="center" prop="investMoney" />
|
|
|
- <el-table-column label="投资类型" align="center" prop="investType" />
|
|
|
- <el-table-column label="投资策略" align="center" prop="investPloy" />
|
|
|
- <el-table-column label="投资价值" align="center" prop="investWorth" />
|
|
|
- <el-table-column label="创建人" align="center" prop="createBy" />
|
|
|
+ <el-table-column label="预计投资金额" width="120" align="center" prop="investMoney" />
|
|
|
+ <el-table-column label="投资类型" width="120" align="center" prop="investType">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag
|
|
|
+ :options="dict.type.invest_type"
|
|
|
+ :value="scope.row.investType"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="投资策略" align="center" prop="investPloy">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag
|
|
|
+ :options="dict.type.invest_ploy"
|
|
|
+ :value="scope.row.investPloy"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="投资价值" width="120" align="center" prop="investWorth">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag
|
|
|
+ :options="dict.type.invest_worth"
|
|
|
+ :value="scope.row.investWorth"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="创建人" width="120" align="center" prop="createBy" />
|
|
|
<el-table-column
|
|
|
label="创建时间"
|
|
|
align="center"
|
|
@@ -723,7 +755,15 @@ export default {
|
|
|
type: String,
|
|
|
},
|
|
|
},
|
|
|
- dicts: ["project_group", "project_stage", "project_state"],
|
|
|
+ dicts: [
|
|
|
+ "project_group",
|
|
|
+ "project_stage",
|
|
|
+ "project_state",
|
|
|
+ "invest_type",
|
|
|
+ "invest_ploy",
|
|
|
+ "invest_worth",
|
|
|
+ "financing_stage",
|
|
|
+ ],
|
|
|
components: { projectItem, fileItem, FlowUser },
|
|
|
data() {
|
|
|
const validateLogo = (rule, value, callback) => {
|