123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- <template>
- <div class="app-container">
-
- <el-form
- :model="queryParams"
- ref="queryForm"
- size="small"
- :inline="true"
- v-show="showSearch"
- label-width="90px"
- style="margin-left: -22px"
- >
- <el-form-item label="项目名称" prop="projectName">
- <el-input
- v-model.trim="queryParams.projectName"
- placeholder="请输入项目名称"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="项目负责人" prop="investHead">
- <el-input
- v-model.trim="queryParams.investHead"
- placeholder="请输入项目负责人"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="公司联系人" prop="projectContacts">
- <el-input
- v-model.trim="queryParams.projectContacts"
- placeholder="请输入公司联系人"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="渠道" prop="channel">
- <el-select v-model="queryParams.channel" placeholder="全部" clearable>
- <el-option
- v-for="item in channelList"
- :key="item.id"
- :label="item.channelName"
- :value="item.id"
- />
- <el-option
- label="无"
- value="-1"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="所属组别" prop="projectGroup">
- <el-select
- v-model="queryParams.projectGroup"
- placeholder="全部"
- clearable
- >
- <el-option
- v-for="dict in dict.type.project_group"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="项目公司" prop="company">
- <el-input
- v-model.trim="queryParams.company"
- placeholder="请输入项目所属公司"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item class="searchWrapper">
- <el-button
- type="primary"
- icon="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索</el-button
- >
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
- >重置</el-button
- >
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="warning"
- size="mini"
- icon="el-icon-tickets"
- @click="handleSelectData(9)"
- v-hasPermi="['invest:pool:due']"
- >尽调申请</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="primary"
- size="mini"
- icon="el-icon-document-checked"
- @click="handleSelectData(10)"
- >上传尽调报告</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- :disabled="multiple"
- plain
- type="success"
- size="mini"
- icon="el-icon-setting"
- v-hasPermi="['invest:pool:stage']"
- @click="handleSelectData(3)"
- >设置项目阶段</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- @click="handleSelectData(4)"
- type="danger"
- plain
- icon="el-icon-switch-button"
- size="mini"
- :disabled="multiple"
- v-hasPermi="['invest:pool:remove']"
- >终止</el-button
- >
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- <el-table
- ref="dataTable"
- @row-click="clickRow"
- class="tableWrapper"
- v-loading="loading"
- border
- :data="poolList"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="40" align="center" />
- <el-table-column
- type="index"
- label="序号"
- width="50"
- align="center"
- ></el-table-column>
-
- <el-table-column label="项目名称" align="center" prop="projectName">
- <template slot-scope="scope">
- <div
- :title="scope.row.projectName"
- class="public-text-blue public-cursor"
- @click.stop="handleDetail(scope.row)"
- >
- {{ scope.row.projectName }}
- </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
- :options="dict.type.CUSTOMER_TRADE"
- :value="scope.row.industry"
- />
- </template>
- </el-table-column>
- <el-table-column label="项目阶段" align="center" prop="projectStage">
- <template slot-scope="scope">
- <dict-tag
- :options="dict.type.project_stage"
- :value="scope.row.projectStage"
- />
- </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"
- prop="investigateFlag"
- >
- <template slot-scope="scope">
- <div>
- {{ scope.row.investigateFlag === "1" ? "是" : "否" }}
- </div>
- </template>
- </el-table-column>
-
- {{ parseTime(scope.row.decisionDate, "{y}-{m}-{d}") }}
- <el-table-column label="项目负责人" align="center" prop="investHead">
- <template slot-scope="scope">
- <div :title="scope.row.investHead">
- {{ scope.row.investHead }}
- </div>
- </template>
- </el-table-column>
-
- <el-table-column
- label="渠道"
- align="center"
- prop="tProjectChannel.channelName"
- >
- <template slot-scope="scope">
- <div
- v-if="
- scope.row.tProjectChannel && scope.row.tProjectChannel.channelName
- "
- :title="scope.row.tProjectChannel.channelName"
- >
- {{ scope.row.tProjectChannel.channelName }}
- </div>
- </template>
- </el-table-column>
-
-
- {{ scope.row.tProjectContacts.name }}
-
-
- <el-table-column
- label="状态"
- align="center"
- prop="investHead"
- width="50px"
- >
- <template slot-scope="scope">
- <div :title="scope.row.delFlag === '1' ? '终止' : '正常'">
- {{ scope.row.delFlag === "1" ? "终止" : "正常" }}
- </div>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
-
- <dueDiligenceList
- ref="dueDiligenceLists"
- :projectId="projectId"
- @getList="getList"
- ></dueDiligenceList>
-
- <businessUpdate @getList="getList" ref="businessUpdate"></businessUpdate>
- </div>
- </template>
- <script>
- import {
- listInvestigateList,
- delPool,
- editStage,
- addInvestigate,
- } from "@/api/invest/pool";
- import { selectByFlowKey } from "@/api/flowable/definition";
- import { listChannel } from "@/api/invest/channel";
- import dueDiligenceList from "../components/dueDiligenceList";
- import businessUpdate from "../components/businessUpdate";
- import { mapGetters } from "vuex";
- export default {
- name: "Pool4",
- dicts: ["project_group", "project_stage", "project_state", "CUSTOMER_TRADE"],
- components: {
- dueDiligenceList,
- businessUpdate,
- },
- data() {
- return {
- projectId: "",
-
- loading: false,
-
- ids: [],
- idsName: [],
-
- single: true,
-
- multiple: true,
-
- selectRowList: [],
-
- showSearch: false,
-
- total: 0,
-
- poolList: [],
-
- queryParams: {
- id: null,
- pageNum: 1,
- pageSize: 10,
- projectName: null,
- projectGroup: "",
- projectCode: null,
- channel: null,
- contactDate: null,
- projectDate: null,
- decisionDate: null,
- industry: null,
- company: null,
- projectContacts: null,
- investHead: null,
- previousFinancing: null,
- financingStage: null,
- financingMoney: null,
- financingDate: null,
- investValuation: null,
- investMoney: null,
- investType: null,
- investPloy: null,
- investWorth: null,
- projectStage: null,
- projectState: null,
- orderByColumn: "createTime",
- isAsc: "desc",
- createTime: null,
- },
- channelList: [],
- };
- },
- computed: {
- ...mapGetters(["user"]),
- },
- created() {},
- mounted() {
- this.getList();
-
- listChannel({
- pageNum: 1,
- pageSize: 100,
- }).then((response) => {
- this.channelList = response.rows;
- });
- },
- methods: {
-
- getList() {
- this.loading = true;
- listInvestigateList(this.queryParams).then((response) => {
- this.poolList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
-
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
-
- resetQuery() {
- this.resetForm("queryForm");
- this.queryParams.orderByColumn = "createTime";
- this.queryParams.isAsc = "desc";
- this.handleQuery();
- },
-
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.id);
- if (selection.length > 1) {
-
- selection.shift();
-
- this.$refs.dataTable.clearSelection();
-
- this.$refs.dataTable.toggleRowSelection(selection[0]);
- }
- this.idsName = selection.map((item) => item.projectName);
- this.single = selection.length !== 1;
- this.multiple = !selection.length;
- this.selectRowList = selection;
- },
- clickRow(row) {
- this.$refs.dataTable.toggleRowSelection(row);
- },
-
- handleAdd() {
- this.$router.push({ path: "/invest/pool/add" });
- },
- handleSelectData(type, otherData) {
-
-
-
-
- if (this.selectRowList.length == 1) {
- const row = this.selectRowList[0];
-
- if (row.delFlag === "1") {
- this.$message({
- message: "项目已终止",
- duration: 1500,
- type: "error",
- });
- } else if (type === 10) {
-
- if (row.investigateFlag === "1") {
-
- if (
- row.tProjectInvestigate &&
- row.tProjectInvestigate.investigatePerson.indexOf(
- this.user.nickName
- ) > -1
- ) {
-
- if (!row.tProjectInvestigatePerson) {
-
- this.$refs.dueDiligenceLists.handleShowReportPop(row);
- } else {
- this.$message({
- message: "您已上传尽调报告,无需重复操作",
- duration: 1500,
- type: "warning",
- });
- }
- } else {
- this.$message({
- message: "无权限",
- duration: 1500,
- type: "error",
- });
- }
- } else {
- if (row.investHead === this.user.nickName) {
- this.$message({
- message: "请先尽调申请",
- duration: 1500,
- type: "warning",
- });
- } else {
- this.$message.warning("无权限");
- }
- }
- } else if (row.investHead === this.user.nickName) {
-
- if (type === 2) {
-
- this.handleDetail(row);
- } else if (type === 3) {
-
- this.$refs.businessUpdate.handleBusinessUpdate(row);
- } else if (type === 4) {
- this.handleDelete(row);
- } else if (type === 9) {
-
- if (row.investigateFlag === "0") {
-
- this.$refs.dueDiligenceLists.handleShowApplyPop(row);
- } else {
- this.$message({
- message: "您已发起尽调申请,无需重复操作",
- duration: 1500,
- type: "warning",
- });
- }
- }
- } else {
- this.$message({
- message: "无权限",
- duration: 1500,
- type: "error",
- });
- }
- } else {
- this.$message({
- message: "只能选择一条数据",
- duration: 1500,
- type: "warning",
- });
- }
- },
- handleDetail(row) {
- const id = row.id || this.ids;
- this.$router.push({ path: "/invest/pool/detail", query: { id: id } });
- },
-
- handleUpdate(row) {
- const id = row.id;
- this.$router.push({ path: "/invest/pool/add", query: { id: id } });
- },
-
- handleDelete(row) {
- const ids = row.id || this.ids;
- const idsName = row.projectName ? row.projectName : this.idsName;
- this.$modal
- .confirm('是否终止"' + idsName + '"项目?')
- .then(function () {
- return delPool(ids);
- })
- .then(() => {
- this.getList();
- this.$modal.msgSuccess("已终止");
- })
- .catch(() => {});
- },
-
- handleExport() {
- this.download(
- "invest/pool/export",
- {
- ...this.queryParams,
- },
- `pool_${new Date().getTime()}.xlsx`
- );
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .tableWrapper {
- font-size: 12px;
- color: #000;
- ::v-deep .el-table__header-wrapper th {
- font-size: 12px;
- font-weight: bolder;
- color: #000;
- }
- ::v-deep td.el-table__cell:not(:last-child) div {
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- }
- /**找到表头那一行,然后把里面的复选框隐藏掉**/
- .tableWrapper::v-deep .el-table__header-wrapper .el-table__header .el-checkbox {
- display: none;
- }
- </style>
|