|
|
@@ -130,28 +130,6 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="公司名称"
|
|
|
- align="center"
|
|
|
- prop="tProjectCompany.companyName"
|
|
|
- >
|
|
|
- <template slot-scope="scope">
|
|
|
- <div :title="scope.row.tProjectCompany.companyName">
|
|
|
- {{ scope.row.tProjectCompany.companyName }}
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="项目所属城市"
|
|
|
- align="center"
|
|
|
- prop="tProjectCompany.registeredAddress"
|
|
|
- >
|
|
|
- <template slot-scope="scope">
|
|
|
- <div :title="scope.row.tProjectCompany.registeredAddress">
|
|
|
- {{ scope.row.tProjectCompany.registeredAddress }}
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="所属行业" align="center" prop="industry"
|
|
|
><template slot-scope="scope">
|
|
|
<dict-tag
|
|
|
@@ -168,30 +146,6 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <!-- <el-table-column label="项目状态" align="center" prop="projectState">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :options="dict.type.project_state"
|
|
|
- :value="scope.row.projectState"
|
|
|
- />
|
|
|
- </template>
|
|
|
- </el-table-column> -->
|
|
|
- <el-table-column
|
|
|
- label="备案时间"
|
|
|
- align="center"
|
|
|
- prop="tProjectCompany.filingTime"
|
|
|
- >
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{
|
|
|
- parseTime(scope.row.tProjectCompany.filingTime, "{y}-{m}-{d}")
|
|
|
- }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="立项通过日期" align="center" prop="projectDate">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{ parseTime(scope.row.projectDate, "{y}-{m}-{d}") }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column
|
|
|
label="已发起尽调申请"
|
|
|
align="center"
|
|
|
@@ -217,35 +171,50 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="项目编号" align="center" prop="projectCode" /> -->
|
|
|
- <el-table-column
|
|
|
- label="渠道"
|
|
|
- align="center"
|
|
|
- prop="tProjectChannel.channelName"
|
|
|
- >
|
|
|
+ <el-table-column label="尽调名称" align="center" prop="investigateName">
|
|
|
<template slot-scope="scope">
|
|
|
- <div
|
|
|
- v-if="
|
|
|
- scope.row.tProjectChannel && scope.row.tProjectChannel.channelName
|
|
|
- "
|
|
|
- :title="scope.row.tProjectChannel.channelName"
|
|
|
- >
|
|
|
- {{ scope.row.tProjectChannel.channelName }}
|
|
|
+ <div :title="scope.row.investigateName">
|
|
|
+ {{ scope.row.investigateName }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <!-- delFlag -->
|
|
|
- <el-table-column
|
|
|
- label="状态"
|
|
|
- align="center"
|
|
|
- prop="investHead"
|
|
|
- width="50px"
|
|
|
- >
|
|
|
+ <el-table-column label="尽调地点" align="center" prop="investigatePlace">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div :title="scope.row.investigatePlace">
|
|
|
+ {{ scope.row.investigatePlace }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="状态" align="center" prop="investHead">
|
|
|
<template slot-scope="scope">
|
|
|
<div :title="scope.row.delFlag === '1' ? '终止' : '正常'">
|
|
|
{{ scope.row.delFlag === "1" ? "终止" : "正常" }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="申请人" align="center" prop="startUserName">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div :title="scope.row.startUserName">
|
|
|
+ {{ scope.row.startUserName }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="申请日期" align="center" prop="createTime">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d}") }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="流程状态" align="center" prop="status">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div :title="scope.row.status">
|
|
|
+ <span v-if="scope.row.status === 0">暂存</span>
|
|
|
+ <span v-else-if="scope.row.status === 1">已提交</span>
|
|
|
+ <span v-else-if="scope.row.status === 2">审批中</span>
|
|
|
+ <span v-else-if="scope.row.status === 3">审批完成</span>
|
|
|
+ <span v-else-if="scope.row.status === 4">关闭</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
<pagination
|
|
|
@@ -271,6 +240,7 @@ import {
|
|
|
listInvestigateList,
|
|
|
delPool,
|
|
|
} from "@/api/invest/pool";
|
|
|
+import { getAllInvestigateList } from "@/api/project/investigate/pool";
|
|
|
import { listChannel } from "@/api/invest/channel";
|
|
|
import dueDiligenceList from "../investigate/dueDiligenceList";
|
|
|
import businessUpdate from "../../invest/components/businessUpdate";
|
|
|
@@ -353,10 +323,10 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
methods: {
|
|
|
- /** 查询项目池列表 */
|
|
|
+ /** 查询所有尽职背调流程列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- listInvestigateList(this.queryParams).then((response) => {
|
|
|
+ getAllInvestigateList(this.queryParams).then((response) => {
|
|
|
this.poolList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|