123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945 |
- <template>
- <div class="app-container">
- <el-form
- v-if="type !== '2'"
- :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-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"
- v-if="type === '2' && stage == '4' ? false : true"
- >
- <el-col :span="1.5">
- <el-button
- v-if="type === '1' && stage == '1'"
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['invest:pool:add']"
- >新增</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- :disabled="multiple"
- plain
- type="success"
- v-if="stage === '1'"
- size="mini"
- icon="el-icon-edit"
- @click="handleSelectData(1)"
- v-hasPermi="['invest:pool:edit']"
- >修改</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- :disabled="multiple"
- plain
- type="primary"
- size="mini"
- icon="el-icon-edit"
- v-if="stage === '2'"
- @click="handleSelectData(5)"
- v-hasPermi="['invest:pool:assess']"
- >上传评估意见</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="warning"
- v-if="stage == '3'"
- size="mini"
- icon="el-icon-document"
- @click="handleSelectData(6)"
- v-hasPermi="['invest:pool:lx:apply']"
- >立项申请</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="warning"
- v-if="stage == '3'"
- size="mini"
- icon="el-icon-chat-line-round"
- @click="handleSelectData(7, 'LX')"
- v-hasPermi="['invest:pool:lx:meeting']"
- >发起立项会议</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="primary"
- v-if="stage == '3'"
- size="mini"
- icon="el-icon-document-checked"
- @click="handleSelectData(8)"
- >上传打分表</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="warning"
- v-if="stage == '4'"
- 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"
- v-if="stage == '4'"
- size="mini"
- icon="el-icon-document-checked"
- @click="handleSelectData(10)"
- >上传尽调报告</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="warning"
- v-if="stage == '5'"
- size="mini"
- icon="el-icon-document"
- @click="handleSelectData(11)"
- v-hasPermi="['invest:pool:tj:apply']"
- >投决申请</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="warning"
- v-if="stage == '5'"
- size="mini"
- icon="el-icon-chat-line-square"
- @click="handleSelectData(12, 'TJ')"
- v-hasPermi="['invest:pool:tj:meeting']"
- >发起投决会议</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- plain
- :disabled="multiple"
- type="primary"
- v-if="stage == '5'"
- size="mini"
- icon="el-icon-document-checked"
- @click="handleSelectData(13)"
- >上传打分表</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- :disabled="multiple"
- plain
- type="success"
- v-if="stage !== '0'"
- 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)"
- v-if="type === '1' && stage !== '0'"
- type="danger"
- plain
- icon="el-icon-switch-button"
- size="mini"
- :disabled="multiple"
- v-hasPermi="['invest:pool:remove']"
- >终止</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- v-if="type === '1' && stage == '0'"
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['invest:pool:export']"
- >导出</el-button
- >
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- <el-table
- ref="dataTable"
- @row-click="clickRow"
- class="tableWrapper"
- :class="{ hideHeaderCheckBox: stage !== '0' }"
- 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="projectState" width="120">
- <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"
- v-if="stage !== '1'"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.projectDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="投决通过日期"
- align="center"
- prop="decisionDate"
- v-if="stage !== '1'"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.decisionDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <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">
- <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" v-if="false">
- <template slot-scope="scope">
-
-
-
- <el-button
- v-if="scope.row.delFlag !== '1' && stage !== '0'"
- class="custom-red-color"
- size="mini"
- type="text"
- icon="el-icon-switch-button"
- @click="handleDelete(scope.row)"
- v-hasPermi="['invest:pool:remove']"
- >终止</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
-
- <businessUpdate @getList="getList" ref="businessUpdate"></businessUpdate>
-
-
-
-
-
-
-
-
- </div>
- </template>
- <script>
- import { listPool, delPool, editStage } from "@/api/invest/pool";
- import { selectByFlowKey } from "@/api/flowable/definition";
- import { listChannel } from "@/api/invest/channel";
- import dueDiligenceList from "./dueDiligenceList";
- import followList from "./followList";
- import meetingList from "./meetingList";
- import businessUpdate from "./businessUpdate";
- import { mapGetters } from "vuex";
- export default {
- props: {
- type: {
- type: String,
- default: "1",
- },
- stage: {
- type: String,
- default: "0",
- },
- projectId: {
- type: String,
- },
- },
- dicts: ["project_group", "project_stage", "project_state", "CUSTOMER_TRADE"],
- components: {
- dueDiligenceList,
- followList,
- meetingList,
- businessUpdate,
- },
- data() {
- return {
-
- 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() {
-
- if (this.stage != "0") {
- this.queryParams.projectStage = this.stage;
- }
- if (this.projectId) {
- this.queryParams.id = this.projectId;
- }
- this.getList();
-
- listChannel({
- pageNum: 1,
- pageSize: 100,
- }).then((response) => {
- this.channelList = response.rows;
- });
- },
- activated() {
-
- if (this.stage != "0") {
- this.queryParams.projectStage = this.stage;
- }
- this.getList();
- },
- methods: {
-
- getList() {
- this.loading = true;
- listPool(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) {
- if (this.stage !== "0") {
- if (selection.length > 1) {
-
- selection.shift();
-
- this.$refs.dataTable.clearSelection();
-
- this.$refs.dataTable.toggleRowSelection(selection[0]);
- }
- }
- this.ids = selection.map((item) => item.id);
- 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 (row.investHead === this.user.nickName) {
-
- if (type === 1) {
-
- this.handleUpdate(row);
- } else if (type === 2) {
-
- this.handleDetail(row);
- } else if (type === 3) {
- if (row.projectState !== "1") {
-
- this.$refs.businessUpdate.handleBusinessUpdate(row);
- } else {
- this.$message({
- message: "暂存时不能设置项目阶段",
- duration: 1500,
- type: "warning",
- });
- }
- } else if (type === 4) {
-
- this.handleDelete(row);
- }
- } 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;
- }
- }
- /**找到表头那一行,然后把里面的复选框隐藏掉**/
- .hideHeaderCheckBox
- ::v-deep
- .el-table__header-wrapper
- .el-table__header
- .el-checkbox {
- display: none;
- }
- </style>
|