| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673 |
- <template>
- <!--后续加按钮 生成订单 为0时才显示 hasGeneratedOrder:0,-->
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <div class="switch">
- <div class="switch_left">
- <ul>
- <li
- v-for="item in tabOptions"
- :key="item.key"
- :class="{ active: activeComp == item.key }"
- @click="activeComp = item.key"
- >
- {{ item.name }}
- </li>
- </ul>
- </div>
- </div>
- <ele-split-layout
- width="210px"
- allow-collapse
- :right-style="{ overflow: 'hidden' }"
- v-if="activeComp == 'myContact'"
- >
- <div>
- <div
- class="ele-border-lighter sys-organization-list"
- style="margin-left: 10px"
- >
- <AssetTree
- @handleNodeClick="handleNodeClick"
- :defaultExpandedKeys="defaultExpandedKeys"
- :defaultExpandAll="false"
- id="17"
- :isFirstRefreshTable="false"
- ref="treeList"
- />
- </div>
- </div>
- <template v-slot:content>
- <div
- class="ele-border-lighter form-content"
- v-loading="loading"
- style="margin-right: 10px"
- >
- <contact-search @search="reload"> </contact-search>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 365px)"
- style="margin-bottom: 15px"
- full-height="calc(100vh - 116px)"
- tool-class="ele-toolbar-form"
- :selection.sync="selection"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- :page-size="20"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <!-- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit('新建', {})"
- >
- 新建
- </el-button> -->
- <el-button
- size="small"
- type="danger"
- el-icon-delete
- class="ele-btn-icon"
- @click="allDelBtn"
- :disabled="selection?.length === 0"
- >
- 批量删除
- </el-button>
- <el-button
- v-if="$hasPermission('eom:contact:push')"
- size="small"
- type="primary"
- class="ele-btn-icon"
- @click="allPushBtn"
- :disabled="selection?.length === 0"
- >
- 批量推送
- </el-button>
- </template>
- <template v-slot:name="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openDetail(row)"
- >
- {{ row.name }}</el-link
- >
- </template>
- <template v-slot:qrCode="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="setCode(row)"
- >
- 二维码</el-link
- >
- </template>
- <template v-slot:enterpriseScale="{ row }">
- {{ getDictValue('企业规模', row.enterpriseScale) }}
- </template>
- <template v-slot:enterpriseHonor="{ row }">
- {{ getDictValue('企业荣誉', row.enterpriseHonor) }}
- </template>
- <template v-slot:taxpayerQualification="{ row }">
- {{ getDictValue('纳税人资质', row.taxpayerQualification) }}
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="addOppo('add', row)"
- >
- 生成商机
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="addFollowDialog(row)"
- >
- 跟进
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('编辑', row)"
- >
- 修改
- </el-link>
- <el-link
- v-if="row.status != 1"
- type="primary"
- :underline="false"
- icon="el-icon-check"
- @click="enableOption(row)"
- >
- 启用
- </el-link>
- <el-link
- v-if="row.status === 1"
- type="primary"
- :underline="false"
- icon="el-icon-close"
- @click="disableOption(row)"
- >
- 禁用
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此信息吗?"
- @confirm="remove(row)"
- >
- <template v-slot:reference>
- <el-link
- type="danger"
- :underline="false"
- icon="el-icon-delete"
- >
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- </div>
- </template>
- </ele-split-layout>
- <contactList
- v-if="
- activeComp == 'contactList' && $hasPermission('eom:contact:staff')
- "
- ></contactList>
- <contactListAdmin
- v-else-if="activeComp == 'contactList'"
- ></contactListAdmin>
- </el-card>
- <AddContactDialog
- ref="addContactDialogRef"
- :categoryTreeList="treeList"
- @done="reload"
- ></AddContactDialog>
- <ContactDetailDialog ref="contactDetailDialogRef"></ContactDetailDialog>
- <!-- 多选删除弹窗 -->
- <pop-modal
- :visible.sync="delVisible"
- content="是否确定删除?"
- @done="commitBtn"
- />
- <add-opportunity-dialog
- ref="opportunityRef"
- :categoryTreeList="treeList"
- @done="reload"
- ></add-opportunity-dialog>
- <drawer ref="drawerRef"></drawer>
- <ele-modal
- :visible.sync="visible"
- title="跟进记录"
- :close-on-click-modal="false"
- :append-to-body="true"
- width="70%"
- @close="visible = false"
- :maxable="true"
- :resizable="true"
- >
- <followList ref="followListRef" @success="followListSuccess"></followList>
- </ele-modal>
- <myqsCode ref="qsCodeRef"></myqsCode>
- </div>
- </template>
- <script>
- import tabMixins from '@/mixins/tableColumnsMixin';
- import addOpportunityDialog from '@/views/saleManage/businessOpportunity/components/addOpportunityDialog.vue';
- import ContactSearch from './components/contactSearch.vue';
- import AddContactDialog from './components/addContactDialog.vue';
- import ContactDetailDialog from './components/contactDetailDialog.vue';
- import myqsCode from './components/qsCode.vue';
- import drawer from './components/drawer.vue';
- import contactList from './contactList.vue';
- import contactListAdmin from './contactListAdmin.vue';
- import popModal from '@/components/pop-modal';
- import AssetTree from '@/components/AssetTree';
- import followList from './components/darwerComponents/followList.vue';
- import {
- contactDelete,
- contactPage,
- contactTypeTree,
- updateStatus,
- contactDetail,
- customerAdd
- } from '@/api/saleManage/contact';
- import dictMixins from '@/mixins/dictMixins';
- export default {
- mixins: [dictMixins, tabMixins],
- components: {
- AssetTree,
- ContactSearch,
- popModal,
- AddContactDialog,
- ContactDetailDialog,
- contactListAdmin,
- contactList,
- addOpportunityDialog,
- drawer,
- followList,
- myqsCode
- },
- data() {
- return {
- activeComp: 'myContact',
- tabOptions: [
- { key: 'myContact', name: '我的' },
- { key: 'contactList', name: '公海' }
- ],
- selection: [],
- defaultExpandedKeys: [],
- delVisible: false,
- text: '',
- // 加载状态
- loading: false,
- columns: [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '编码',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140,
- fixed: 'left'
- },
- {
- prop: 'name',
- label: '名称',
- align: 'center',
- slot: 'name',
- showOverflowTooltip: true,
- minWidth: 200,
- fixed: 'left'
- },
- {
- label: '二维码',
- align: 'center',
- slot: 'qrCode',
- showOverflowTooltip: true,
- minWidth: 80
- },
- {
- prop: 'serialNo',
- label: '代号',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'phone',
- label: '电话',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'addressName',
- label: '注册地址',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.addressName ? _row.addressName.replaceAll(',', '') : '') +
- (_row.address || '')
- );
- }
- },
- {
- prop: 'otherAddressName',
- label: '联系地址',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.otherAddressName
- ? _row.otherAddressName.replaceAll(',', '')
- : '') + (_row.otherAddress || '')
- );
- }
- },
- {
- prop: 'linkName',
- label: '联系人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'linkPhone',
- label: '联系人电话',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'enterpriseScale',
- label: '企业规模',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- slot: 'enterpriseScale'
- },
- {
- prop: 'lastFollowThroughTime',
- label: '最近跟进时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'enterpriseHonor',
- label: '企业荣誉',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- slot: 'enterpriseHonor'
- },
- {
- prop: 'taxpayerQualification',
- label: '纳税人资质',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- slot: 'taxpayerQualification'
- },
- {
- prop: 'companyCategoryName',
- label: '企业类型',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'parentName',
- label: '上级单位',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'externalId',
- label: '是否推送',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- formatter: (_row, _column, cellValue) => {
- return _row.externalId? '已推送' : '未推送';
- }
- },
- {
- prop: 'status',
- label: '状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return _row.status === 1 ? '启用' : '禁用';
- }
- },
- {
- prop: 'createUsername',
- label: '创建人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 160,
- formatter: (_row, _column, cellValue) => {
- return this.$util.toDateString(cellValue);
- }
- },
- {
- prop: 'updateTime',
- label: '修改时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 160,
- formatter: (_row, _column, cellValue) => {
- return this.$util.toDateString(cellValue);
- }
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 300,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ],
- current: {},
- curNodeData: {},
- treeList: [],
- treeLoading: false,
- formData: {},
- rootTreeId: null,
- defaultProps: {
- children: 'children',
- label: 'name'
- },
- showEdit: true,
- visible: false,
- codeVisible: false,
- cacheKeyUrl: 'eos-6c810d8f-saleManage-contact',
- contactId: ''
- };
- },
- provide() {
- return {
- contactId: () => this.contactId
- };
- },
- computed: {},
- created() {
- console.log(this.$hasPermission('eom:contact:staff'));
- console.log(this.$hasPermission('eom:contact:admin'));
- this.requestDict('状态');
- this.getTreeData();
- },
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- return contactPage({
- pageNum: page,
- size: limit,
- type: 1,
- salesmanId: this.$store.state.user.info.userId,
- ...where,
- categoryId: this.curNodeData.id
- });
- },
- async addFollowDialog(row) {
- this.contactId = row.id;
- const data = await contactDetail(row.id);
- this.visible = true;
- this.$nextTick(() => {
- this.$refs.followListRef.init(data);
- });
- },
- followListSuccess() {
- this.visible = false;
- },
- async getTreeData() {
- try {
- this.treeLoading = true;
- const res = await contactTypeTree({ id: '17' });
- this.treeLoading = false;
- if (res?.code === '0') {
- this.treeList = res.data;
- this.$nextTick(() => {
- // console.log(this.treeList);
- this.defaultExpandedKeys = this.treeList?.map(
- (item) => item.id
- ) || [17];
- // 默认高亮第一级树节点
- // if (this.treeList[0]) {
- // this.rootTreeId = this.treeList[0].id;
- // this.getDetail(this.treeList[0].id);
- // }
- });
- return this.treeList;
- }
- } catch (error) {}
- this.treeLoading = false;
- },
- handleNodeClick(data, node) {
- this.curNodeData = data;
- this.reload({ categoryId: data.id });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- },
- openEdit(row, type) {
- this.current = row;
- this.showEdit = true;
- this.$refs.addContactDialogRef.open(row, type, this.curNodeData.id);
- this.$refs.addContactDialogRef.$refs.form &&
- this.$refs.addContactDialogRef.$refs.form.clearValidate();
- },
- addOppo(type, row) {
- this.$refs.opportunityRef.open(type, row, row.id);
- this.$refs.opportunityRef.$refs.form &&
- this.$refs.opportunityRef.$refs.form.clearValidate();
- },
- //批量删除
- allDelBtn() {
- if (this.selection.length === 0) return;
- this.delVisible = true;
- },
- allPushBtn() {
- const dataId = this.selection.map((v) => v.id);
- customerAdd(dataId).then((res) => {
- this.$message.success('推送成功!');
- this.reload();
- });
- },
- commitBtn() {
- console.log(this.selection);
- const dataId = this.selection.map((v) => v.id);
- contactDelete(dataId).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- remove(row) {
- contactDelete([row.id]).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- setCode(row) {
- this.$nextTick(() => {
- this.$refs.qsCodeRef.open(row);
- });
- },
- /** 启用 */
- enableOption(row) {
- updateStatus(row.id, 1)
- .then((msg) => {
- this.$message.success('启用成功');
- this.reload();
- })
- .catch((e) => {
- this.$message.error(e.message);
- });
- },
- /** 禁用 */
- disableOption(row) {
- updateStatus(row.id, 2)
- .then((msg) => {
- this.$message.success('禁用成功');
- this.reload();
- })
- .catch((e) => {
- this.$message.error(e.message);
- });
- },
- openDetail(row) {
- // this.$refs.contactDetailDialogRef.open(row);
- this.$refs.drawerRef.open(row, 'myList');
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- :deep .el-card__body {
- padding: 0;
- }
- :deep(.el-link--inner) {
- margin-left: 0px !important;
- }
- .sys-organization-list {
- height: calc(100vh - 264px);
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
- .sys-organization-list :deep(.el-tree-node__content) {
- height: 40px;
- & > .el-tree-node__expand-icon {
- margin-left: 10px;
- }
- }
- .switch_left ul .active {
- border-top: 4px solid var(--color-primary);
- color: var(--color-primary-5);
- }
- .switch {
- padding-bottom: 20px;
- }
- </style>
|