Karsa 10 сар өмнө
parent
commit
59df542615

+ 38 - 34
src/router/modules/customRoutes.js

@@ -280,45 +280,49 @@ export default [
       {
         path: "contactsList",
         component: () => import("@/views/custom_manage/contacts/contactsList.vue"),
-        name: "联系人列表",
+        name: "contactsList",
         hidden: false,
         meta: {
+          title: '联系人列表',
+          keepAlive: false,
+        },
+      },
+      {
+        path: "mutualList",
+        name: "mutualList",
+        component: () => import("@/views/custom_manage/contacts/mutualList.vue"),
+        hidden: true,
+        meta: {
+          title: '互动列表',
+          pathFrom: "contactsList",
+          pathName: "联系人列表",
+          keepAlive: false,
+        },
+      },
+      {
+        path: "organizationList",
+        name: "organizationList",
+        component: () => import("@/views/custom_manage/contacts/organizationList.vue"),
+        hidden: true,
+        meta: {
+          title: '互动列表',
+          pathFrom: "contactsList",
+          pathName: "联系人列表",
+          keepAlive: false,
+        },
+      },
+      {
+        path: "wholeOrganization",
+        name: "wholeOrganization",
+        component: () => import("@/views/custom_manage/contacts/wholeOrganization.vue"),
+        hidden: true,
+        meta: {
+          title: '互动列表',
+          pathFrom: "contactsList",
+          pathName: "联系人列表",
           keepAlive: false,
         },
       },
-      // {
-      //   path: "mutualList",
-      //   name: "互动列表",
-      //   component: () => import("@/views/custom_manage/contacts/mutualList.vue"),
-      //   hidden: true,
-      //   meta: {
-      //     pathFrom: "contactsList",
-      //     pathName: "联系人列表",
-      //     keepAlive: false,
-      //   },
-      // },
-      // {
-      //   path: "organizationList",
-      //   name: "机构互动列表",
-      //   component: () => import("@/views/custom_manage/contacts/organizationList.vue"),
-      //   hidden: true,
-      //   meta: {
-      //     pathFrom: "contactsList",
-      //     pathName: "联系人列表",
-      //     keepAlive: false,
-      //   },
-      // },
-      // {
-      //   path: "wholeOrganization",
-      //   name: "全机构互动列表",
-      //   component: () => import("@/views/custom_manage/contacts/wholeOrganization.vue"),
-      //   hidden: true,
-      //   meta: {
-      //     pathFrom: "contactsList",
-      //     pathName: "联系人列表",
-      //     keepAlive: false,
-      //   },
-      // },
       {
         path: "customerlistmatch",
         name: "customerListMatch",

+ 1 - 1
src/utils/parseData.js

@@ -1,7 +1,7 @@
 import ParserData from '@/api/crypto.js';
 /* 解密数据处理 */
 export function parseData(res) {
-  let result = process.env.NODE_ENV === "production"
+  let result = import.meta.env.MODE === "production"
   ? JSON.parse(ParserData.Des3Decrypt(res))
   : res;
   return result

+ 47 - 45
src/views/custom_manage/contacts/compontents/chartItem.vue

@@ -1,8 +1,53 @@
+
+<script setup>
+import { customInterence, equityContacts } from "@/api/api.js";
+import { computed,ref } from "vue";
+   
+const props = defineProps({
+  chartData: {
+    type: Object
+  },
+  companyName: {
+    type: String,
+    default: "",
+  },
+})
+
+
+function load() {
+  if (publicHaveMoveCompany.value && !props.chartData.IsEnd) {
+    page.value++;
+    nexttPage();
+  }
+}
+
+const page = ref(1)
+const pageSize = ref(18)
+const publicHaveMoveCompany = ref(true)
+const data = ref(props.chartData)
+async function nexttPage() {
+  const res = await equityContacts.getCygxMutualDetail({
+    UserId: props.chartData.UserId,
+    Source: 4,
+    PageSize: pageSize.value,
+    CurrentIndex: page.value,
+  });
+  if (res.Ret === 200) {
+    publicHaveMoveCompany.value = !res.Data.Paging.IsEnd;
+    data.value.ListChart = res.Data ? [...data.value.ListChart, ...res.Data.List] : [...data.value.ListChart];
+  }
+}
+
+function chartDetial(item) {
+  window.open(item.HttpUrl, "_blank");
+}
+</script>
+
 <template>
   <div class="chart-item-wrap">
-    <span class="synopsis-btn">{{ companyName ? companyName + "--" : "" }}{{ chartData.RealName }} -- {{ chartData.Mobile }}</span>
+    <span class="synopsis-btn">{{ companyName ? companyName + "--" : "" }}{{ data.RealName }} -- {{ data.Mobile }}</span>
     <div style="margin-top: 20px" class="chart-list" v-infinite-scroll="load" :infinite-scroll-distance="0">
-      <div class="chart-item" v-for="key in chartData.ListChart" :key="key.ChartId" @click="chartDetial(key)">
+      <div class="chart-item" v-for="key in data.ListChart" :key="key.ChartId" @click="chartDetial(key)">
         <img class="item-img" :src="key.BodyHtml" />
         <p class="text_twoLine title-chart">{{ key.Title }}</p>
         <div class="chart-tag">
@@ -16,49 +61,6 @@
   </div>
 </template>
 
-<script>
-import { customInterence, equityContacts } from "@/api/api.js";
-export default {
-  props: {
-    chartData: {},
-    companyName: {
-      type: "string",
-      default: "",
-    },
-  },
-  data() {
-    return {
-      page: 1,
-      pageSize: 18,
-      publicHaveMoveCompany: true,
-    };
-  },
-  methods: {
-    load() {
-      if (this.publicHaveMoveCompany && !this.chartData.IsEnd) {
-        this.page++;
-        this.nexttPage();
-      }
-    },
-    async nexttPage() {
-      const res = await equityContacts.getCygxMutualDetail({
-        UserId: this.chartData.UserId,
-        Source: 4,
-        PageSize: this.pageSize,
-        CurrentIndex: this.page,
-      });
-      if (res.Ret === 200) {
-        this.publicHaveMoveCompany = !res.Data.Paging.IsEnd;
-        this.chartData.ListChart = res.Data ? [...this.chartData.ListChart, ...res.Data.List] : [...this.chartData.ListChart];
-      }
-    },
-    chartDetial(item) {
-      window.open(item.HttpUrl, "_blank");
-    },
-  },
-};
-</script>
-
 <style lang="scss" scoped>
 .chart-item-wrap {
   @import "./details.scss";

+ 2 - 2
src/views/custom_manage/contacts/compontents/interactionDlg.vue

@@ -77,9 +77,9 @@ function handleRowClick(row, key) {
   if (key === "Title") {
     if (row.ArticleType == 1) {
       let url =
-        process.env.NODE_ENV === "production"
+        import.meta.env.MODE === "production"
           ? "https://details.hzinsights.com/cygx/report"
-          : process.env.NODE_ENV === "test"
+          : import.meta.env.MODE === "test"
           ? "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report"
           : "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report";
       let href = `${url}?id=${row.ArticleIdMd5}`;

+ 1 - 1
src/views/custom_manage/contacts/compontents/remindDlg.vue

@@ -60,7 +60,7 @@ async function remindBtnHandler() {
                 ? "单独取消此联系人的提醒"
                 : "对此联系人单独设置"
             }}</el-radio>
-            <el-radio :label="2" style="margin: 20px 0">{{
+            <el-radio :label="2">{{
               remindList.IsRemind
                 ? "对该机构下的联系人批量取消"
                 : "对该机构下的联系人批量设置"

+ 12 - 9
src/views/custom_manage/contacts/contactsList.vue

@@ -10,6 +10,7 @@ import LabelDlg from "./compontents/labelDlg.vue";
 import RemindDlg from "./compontents/remindDlg.vue";
 const router = useRouter();
 
+
 const defaultSalesProps = {
   multiple: true,
   label: "RealName",
@@ -319,14 +320,13 @@ export default defineComponent({
   <div class="container-contactsList">
     <div class="top-wrap">
       <el-input
-        style="width: 200px; margin-right: 20px"
+        :prefix-icon="Search"
         v-model="contactWay"
         placeholder="手机号/邮箱/姓名/公司名"
         clearable
+        style="width:200px"
       >
-        <template #prefix>
-          <el-icon class="el-input__icon"><search /></el-icon> </template
-      ></el-input>
+      </el-input>
       <el-select
         v-model="decisionValue"
         placeholder="是否KP"
@@ -372,7 +372,7 @@ export default defineComponent({
       <el-cascader
         v-model="sales"
         placeholder="请选择销售"
-        style="width: 200px; margin: 0 20px 20px 0"
+        style="width: 200px;"
         :options="salesArr"
         :props="defaultSalesProps"
         :show-all-levels="false"
@@ -383,7 +383,7 @@ export default defineComponent({
       >
       </el-cascader>
       <el-cascader
-        style="width: 200px; margin-right: 20px"
+        style="width: 200px;"
         v-model="clientStatus"
         :options="clientOptions"
         placeholder="请选择客户状态"
@@ -398,7 +398,6 @@ export default defineComponent({
       ></el-cascader>
       <el-autocomplete
         style="width: 200px; margin-bottom: 20px"
-        prefix-icon="el-icon-search"
         clearable
         class="inline-input"
         v-model="userLabel"
@@ -408,6 +407,9 @@ export default defineComponent({
         :trigger-on-focus="false"
         @select="handelGetData"
       >
+        <template #prefix>
+          <el-icon class="el-input__icon"><search /></el-icon>
+        </template>
         <template #default="scope">
           <div v-if="scope.item.IndustryName">
             {{ scope.item.IndustryName }}
@@ -661,8 +663,6 @@ export default defineComponent({
 .container-contactsList {
   .el-select {
     width: 200px;
-    margin-right: 20px;
-    margin-bottom: 20px;
   }
   .top-wrap {
     margin-bottom: 28px;
@@ -670,6 +670,9 @@ export default defineComponent({
     background: #fff;
     border: 1px solid #ececec;
     border-radius: 4px;
+    display: flex;
+    gap: 15px;
+    flex-wrap: wrap;
     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
   }
   .table-item {

+ 53 - 0
src/views/custom_manage/contacts/hooks/use-list.js

@@ -0,0 +1,53 @@
+import { ref } from 'vue';
+
+export function useList() {
+  const monthLabel = [
+    {
+      label: "近1个月",
+    },
+    {
+      label: "近3个月",
+    },
+  ]
+
+  /* 表格行的数据处理 */
+  function handleRowContent(row, key) {
+    if (key == "IsMeeting") {
+      return row[key] == 1 ? "已到会" : "未到会";
+    } else if (key == "Source") {
+      return row[key] == 1 ? "纪要" : row[key] == 2 ? "图表" : row[key] == 3 ? "纪要/图表" : row[key] == 4 ? "产业资源包" : row[key] == 5 ? "报告" : "活动";
+    } else if (key == "ActivityType") {
+      return row[key] == 1 ? "线上" : `线下(${row["City"]})`;
+    } else if (key == "RegisterPlatform") {
+      return row[key] == 1 ? "小程序" : row[key] == 2 ? "网页版" : row[key] == 3 ? "策略平台" : "";
+    } else {
+      return row[key];
+    }
+  }
+
+
+  return {
+    monthLabel,
+    handleRowContent
+  }
+}
+
+
+export function useVisibleActivity() {
+  const dialogVisibleActivity = ref(false) //专项调研
+  const specialDetailId = ref(null)
+  const dialogTitle = ref("")
+  
+  function themeDetails(id) {
+    dialogTitle.value = "活动详情";
+    specialDetailId.value = id;
+    dialogVisibleActivity.value = true;
+  }
+
+  return {
+    dialogVisibleActivity,
+    specialDetailId,
+    dialogTitle,
+    themeDetails
+  }
+}

+ 344 - 0
src/views/custom_manage/contacts/mutualList.vue

@@ -0,0 +1,344 @@
+<script setup>
+import { computed, reactive, ref,toRefs } from 'vue';
+import { Search } from '@element-plus/icons-vue';
+import { useRoute } from 'vue-router';
+import { customInterence, equityContacts } from "@/api/api.js";
+import { tableColums, screenList, meetingList } from "./compontents/contactsColums";
+import DatePicker from 'vue-datepicker-next'
+import mPage from "@/components/mPage.vue";
+import moment from 'moment';
+import _ from 'lodash'
+import { useList } from './hooks/use-list'
+
+
+const route = useRoute()
+
+const exportExcel = computed(() => {
+  let baseUrl = import.meta.env.VITE_APP_API_ROOT + "/cygx/user/export/interaction";
+  let token = localStorage.getItem("auth") || "";
+  let paramStr = "";
+  let params = {
+    UserId: Number(route.query.id),
+    Source: tableFilterState.activeName,
+    IsMeeting: tableFilterState.checkMeetingList.join(","),
+    MeetType: tableFilterState.checkActiveList.join(","),
+    EndDate: tableFilterState.end_date,
+    StartDate: tableFilterState.start_date,
+    KeyWord: tableFilterState.searchVal,
+  };
+  for (let key in params) {
+    paramStr = `${paramStr}&${key}=${params[key]}`;
+  }
+  return `${baseUrl}?${token}${paramStr}`;
+})
+
+const { monthLabel,handleRowContent } = useList()
+
+
+//获取基础数据
+const list = ref([])
+const userForm = ref({})
+async function getCygxMutualList() {
+  const res = await equityContacts.getCygxMutualList({
+    UserId: Number(route.query.id),
+  });
+  if (res.Ret === 200) {
+    list.value = res.Data.List || [];
+    userForm.value = res.Data;
+    getTableData();
+  }
+}
+getCygxMutualList()
+
+
+const tableLoading = ref(false)
+const colums = ref(tableColums(1))
+const tableData = ref([])
+const total = ref(0)
+const tableFilterState = reactive({
+  activeName: 1,
+  page_no: 1,
+  pageSize: 10,
+  publicHaveMove: true,
+  checkActiveList: [1, 2], //活动的方式
+  checkMeetingList: [1, 2], //是否到会
+  searchVal: "",
+  start_date: "",
+  end_date: "",
+  month: "",
+  date: [],
+})
+async function getTableData() {
+  tableLoading.value = true;
+  const res = await equityContacts.getCygxMutualDetail({
+    UserId: Number(route.query.id),
+    Source: tableFilterState.activeName,
+    PageSize: tableFilterState.pageSize,
+    CurrentIndex: tableFilterState.page_no,
+    IsMeeting: tableFilterState.checkMeetingList.join(","),
+    MeetType: tableFilterState.checkActiveList.join(","),
+    EndDate: tableFilterState.end_date,
+    StartDate: tableFilterState.start_date,
+    KeyWord: tableFilterState.searchVal,
+  });
+  if (res.Ret === 200) {
+    total.value = res.Data.Paging.Totals;
+    tableLoading.value = false;
+    tableData.value = res.Data.List || [];
+  }
+}
+
+
+
+const chartList = ref([])
+async function getChartData() {
+  const res = await equityContacts.getCygxMutualDetail({
+    UserId: Number(route.query.id),
+    Source: tableFilterState.activeName,
+    PageSize: tableFilterState.pageSize,
+    CurrentIndex: tableFilterState.page_no,
+  });
+  if (res.Ret === 200) {
+    tableFilterState.publicHaveMove = res.Data ? tableFilterState.page_no < res.Data.Paging.Pages : false;
+    chartList.value = res.Data ? (tableFilterState.page_no === 1 ? res.Data.List : [...chartList.value, ...res.Data.List]) : [];
+  }
+}
+
+/* 加载更多 */
+const listChartPage = ref([])
+const loadMorePublicChart = _.throttle(function (e) {
+  let scrollTop = listChartPage.value.scrollTop;
+  let clientHeight = listChartPage.value.clientHeight;
+  let scrollHeight = listChartPage.value.scrollHeight;
+  if (scrollTop + clientHeight >= scrollHeight - 10 && tableFilterState.publicHaveMove) {
+    tableFilterState.page_no++;
+    getChartData();
+  }
+}, 300)
+
+
+//一级的点击事件
+function handleTabsClick(item) {
+  if (tableFilterState.activeName != item.Source) {
+    tableFilterState.activeName = item.Source;
+    colums.value = tableColums(tableFilterState.activeName);
+  }
+  tableFilterState.checkActiveList = [1, 2]; //活动的方式
+  tableFilterState.checkMeetingList = [1, 2]; //是否到会
+  tableFilterState.month = '';
+  tableFilterState.date = [];
+
+  tableFilterState.end_date = "";
+  tableFilterState.start_date = "";
+  tableFilterState.searchVal = "";
+  chartList.value = [];
+  tableFilterState.page_no = 1;
+  if (tableFilterState.activeName !== 4) {
+    getTableData();
+  } else {
+    getChartData();
+  }
+}
+
+
+function chartDetial(item) {
+  window.open(item.HttpUrl, "_blank");
+}
+
+
+
+ /* 选择服务日期 */
+function dateChange(e) {
+  if (e[0]) {
+    tableFilterState.start_date = e[0];
+    tableFilterState.end_date = e[1];
+  } else {
+    tableFilterState.start_date = "";
+    tableFilterState.end_date = "";
+  }
+  tableFilterState.month = "";
+  tableFilterState.page_no = 1;
+  tableFilterState.searchVal = "";
+  getTableData();
+}
+
+ 
+/* 切换月份 */
+function toggleMonth(label) {
+  tableFilterState.month = label;
+  let days = label == "近1个月" ? -1 : label == "近3个月" ? -3 : 0;
+  filterDate(days);
+}
+/* 获取未来几个月的日期范围 */
+function filterDate(month) {
+  if (month) {
+    let date_now = moment().add(month, "M").format("YYYY-MM-DD");
+    let date_after = moment().format("YYYY-MM-DD");
+    let date = [date_now, date_after];
+    tableFilterState.start_date = date_now;
+    tableFilterState.end_date = date_after;
+    tableFilterState.date = date;
+    tableFilterState.page_no = 1;
+    tableFilterState.searchVal = "";
+    getTableData();
+  }
+}
+
+ // 搜索
+function handleSearch() {
+  tableFilterState.page_no = 1;
+  getTableData();
+}
+
+// 页码改变事件
+function handleCurrentChange(page, index) {
+  tableFilterState.page_no = page;
+  getTableData();
+}
+
+
+/* 表格行的样式 */
+function handleRowStyle(key) {
+  const style = {
+    Title: "color: #409eff; cursor: pointer",
+    ActivityName: "color: #409eff; cursor: pointer",
+  };
+  return style[key] && ([1,8].includes(tableFilterState.activeName)) ? style[key] : "";
+}
+
+
+/* 表格行的点击事件 */
+function handleRowClick(row, key) {
+  if (key === "Title") {
+    if (row.SpecialType > 0) {
+      let href = `${import.meta.env.VITE_CYGX_WEB}/column/detail/${row.ArticleId}`;
+      window.open(href, "_blank");
+      return;
+    }
+    if (row.ArticleType == 1) {
+      let url =
+        import.meta.env.MODE === "production"
+          ? "https://details.hzinsights.com/cygx/report"
+          : import.meta.env.MODE === "test"
+          ? "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report"
+          : "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report";
+      let href = `${url}?id=${row.ArticleIdMd5}`;
+      window.open(href, "_blank");
+    } else {
+      let href = `https://vmp.hzinsights.com/v2/articles/${row.ArticleId}`;
+      window.open(href, "_blank");
+    }
+  } else if (key === "ActivityName" && tableFilterState.activeName === 8) {
+    themeDetails(row.ActivityId);
+  }
+}
+
+
+const { 
+  activeName,
+  page_no,
+  pageSize,
+  checkActiveList, //活动的方式
+  checkMeetingList, //是否到会
+  searchVal,
+  month,
+  date } = toRefs(tableFilterState)
+
+
+</script>
+<template>
+  <div class="container-mutualList">
+    <el-card>
+      <span class="intro">{{ userForm.UserName }}-{{ userForm.Mobile }}-{{ userForm.ComapnyName }}</span>
+      <div class="tabs">
+        <span :class="['item', activeName == item.Source && 'active']" v-for="item in list" :key="item.Source" @click="handleTabsClick(item)">{{ item.PermissionName }} ({{ item.TotalNum }})</span>
+      </div>
+      <div class="son-box" v-if="activeName === 2 || activeName === 1">
+        <div style="display: flex; align-items: center" v-if="activeName === 2">
+          <el-checkbox-group v-model="checkActiveList" @change="handleSearch">
+            <el-checkbox :label="item.key" v-for="item in screenList" :key="item.key">{{ item.name }}</el-checkbox>
+          </el-checkbox-group>
+          <el-checkbox-group style="margin-left: 25px" v-model="checkMeetingList" @change="handleSearch">
+            <el-checkbox :label="item.key" v-for="item in meetingList" :key="item.key">{{ item.name }}</el-checkbox>
+          </el-checkbox-group>
+          <el-tooltip class="tooltip-item" effect="dark" content="线上活动设置预约外呼/会议提醒/预约纪要,线下活动报名/预约纪要,但实际未参会的活动" placement="top-start">
+            <i class="el-icon-info"></i>
+          </el-tooltip>
+        </div>
+        <div class="dataReport-top">
+          <date-picker
+            v-model:value="date"
+            type="date"
+            range
+            value-type="format"
+            :placeholder="activeName === 1 ? '阅读时间' : '活动时间'"
+            :editable="false"
+            @change="dateChange"
+            style="width: 200px; margin-right: 20px"
+          />
+          <button :class="['button-sty', { act: month === item.label }]" v-for="item in monthLabel" @click="toggleMonth(item.label)" :key="item.label">
+            {{ item.label }}
+          </button>
+          <el-input v-if="activeName === 2" placeholder="活动名称" v-model="searchVal" style="width: 200px" @input="handleSearch" clearable>
+            <template #prefix>
+              <el-icon class="el-input__icon"><search /></el-icon>
+            </template>
+          </el-input>
+          <a :href="exportExcel" download>
+            <button class="button-sty act">下载EXCEL</button>
+          </a>
+        </div>
+      </div>
+      <template v-if="activeName != 4">
+        <el-table style="margin-top: 20px" :data="tableData" v-loading="tableLoading" element-loading-text="数据加载中..." border>
+          <el-table-column v-for="item in colums" :key="item.label" :label="item.label" :width="item.widthsty" :min-width="item.minwidthsty" align="center">
+            <template #default="{ row }">
+              <span @click="handleRowClick(row, item.key)" :style="handleRowStyle(item.key)">{{ handleRowContent(row, item.key) }}</span>
+            </template>
+          </el-table-column>
+          <template #empty>
+            <div style="padding: 20px 0">
+              <img src="~@/assets/img/data_m/table_no.png" alt="" style="display: block; width: 135px; height: 90px; margin: 0 auto" />
+              <span>暂无数据</span>
+            </div>
+          </template>
+        </el-table>
+        <el-col :span="24" class="toolbar">
+          <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleCurrentChange" />
+        </el-col>
+      </template>
+      <template v-else>
+        <template v-if="chartList.length > 0">
+          <div style="margin-top: 20px" class="chart-list" ref="listChartPage" @scroll="loadMorePublicChart">
+            <div class="chart-item" v-for="item in chartList" :key="item.ChartId" @click="chartDetial(item)">
+              <img class="item-img" :src="item.BodyHtml" />
+              <p class="text_twoLine title-chart">{{ item.Title }}</p>
+              <div class="chart-tag">
+                <template v-if="item.CtagNamePc">
+                  <span class="tag-item" v-for="val in item.CtagNamePc.split(',')" :key="val">{{ val }}</span>
+                </template>
+              </div>
+              <p class="tiem">收藏时间:{{ item.CreateTime }}</p>
+            </div>
+          </div>
+        </template>
+        <template v-else>
+          <img src="~@/assets/img/data_m/table_no.png" alt="" style="display: block; width: 135px; height: 90px; margin: 30px auto" />
+          <p class="chart-no-data">暂无收藏的图表</p>
+        </template>
+      </template>
+    </el-card>
+  </div>
+</template>
+<style scoped lang="scss">
+.container-mutualList {
+  .intro {
+    display: inline-block;
+    padding: 10px 20px;
+    color: #2d8cf0;
+    background: #e8f3ff;
+    border-radius: 4px;
+  }
+  @import "./compontents/details.scss";
+}
+</style>

+ 380 - 0
src/views/custom_manage/contacts/organizationList.vue

@@ -0,0 +1,380 @@
+<script setup>
+import { computed, ref,reactive, toRefs } from 'vue';
+import { useRoute,useRouter } from 'vue-router'
+import { Search } from '@element-plus/icons-vue';
+import { organizationTableColums, screenList, meetingList } from "./compontents/contactsColums";
+import { customInterence, equityContacts } from "@/api/api.js";
+import mPage from "@/components/mPage.vue";
+import ChartItem from "./compontents/chartItem.vue";
+import DatePicker from 'vue-datepicker-next';
+import moment from 'moment';
+import _ from 'lodash';
+import { useList } from './hooks/use-list'
+
+
+const route = useRoute();
+const router = useRouter()
+
+const exportExcel = computed(()=> {
+  let baseUrl = import.meta.env.VITE_APP_API_ROOT + "/cygx/user/company/export/interaction";
+  let token = localStorage.getItem("auth") || "";
+  let paramStr = "";
+  let params = {
+    CompanyId: Number(route.query.CompanyId),
+    Source: tableFilterState.activeName,
+    IsMeeting: tableFilterState.checkMeetingList.join(","),
+    MeetType: tableFilterState.checkActiveList.join(","),
+    EndDate: tableFilterState.end_date,
+    StartDate: tableFilterState.start_date,
+    KeyWord: tableFilterState.searchVal,
+    ActivityName: tableFilterState.activityName,
+  };
+  for (let key in params) {
+    paramStr = `${paramStr}&${key}=${params[key]}`;
+  }
+  return `${baseUrl}?${token}${paramStr}`;
+})
+
+
+const { monthLabel,handleRowContent } = useList()
+
+
+//获取基础数据
+const list = ref([])
+const userForm = ref({})
+async function getCygxMutualList() {
+  const res = await equityContacts.getCompanyTableList({
+    CompanyId: Number(route.query.CompanyId),
+  });
+  if (res.Ret === 200) {
+    list.value = res.Data.List || [];
+    userForm.value = res.Data;
+    getTableData();
+  }
+}
+getCygxMutualList()
+
+//获取表格数据
+const tableLoading = ref(false)
+const tableColums = ref(organizationTableColums(1))
+const tableData = ref([])
+const total = ref(0)
+const tableFilterState = reactive({
+  activeName: 1,
+  page_no: 1,
+  pageSize: 10,
+  publicHaveMove: true,
+  checkActiveList: [1, 2], //活动的方式
+  checkMeetingList: [1, 2], //是否到会
+  searchVal: "",
+  start_date: "",
+  end_date: "",
+  month: "",
+  date: [],
+  activityName: ""
+})
+async function getTableData() {
+  tableLoading.value = true;
+  const res = await equityContacts.getCompanyInteractionDetail({
+    CompanyId: Number(route.query.CompanyId),
+    Source: tableFilterState.activeName,
+    PageSize: tableFilterState.pageSize,
+    CurrentIndex: tableFilterState.page_no,
+    IsMeeting: tableFilterState.checkMeetingList.join(","),
+    MeetType: tableFilterState.checkActiveList.join(","),
+    EndDate: tableFilterState.end_date,
+    StartDate: tableFilterState.start_date,
+    KeyWord: tableFilterState.searchVal,
+    ActivityName: tableFilterState.activityName,
+    
+  });
+  if (res.Ret === 200) {
+    total.value = res.Data.Paging.Totals;
+    tableLoading.value = false;
+    tableData.value = res.Data.List || [];
+  }
+}
+
+//一级的点击事件
+function handleTabsClick(item) {
+  if (tableFilterState.activeName != item.Source) {
+    tableFilterState.activeName = item.Source;
+    this.tableColums = organizationTableColums(tableFilterState.activeName);
+  }
+  tableFilterState.checkActiveList = [1, 2]; //活动的方式
+  tableFilterState.checkMeetingList = [1, 2]; //是否到会
+  tableFilterState.month = '';
+  tableFilterState.date = [];
+
+  tableFilterState.searchVal = "";
+  tableFilterState.activityName = "";
+  tableFilterState.chartList = [];
+  tableFilterState.end_date = "";
+  tableFilterState.start_date = "";
+  tableFilterState.page_no = 1;
+  if (tableFilterState.activeName !== 4) {
+    getTableData();
+  } else {
+    getChartData();
+  }
+}
+
+//获取图表
+const chartList = ref([])
+const publicHaveMoveCompany = ref(false)
+async function getChartData() {
+  const res = await equityContacts.getCompanyInteractionDetail({
+    CompanyId: Number(route.query.CompanyId),
+    Source: tableFilterState.activeName,
+    CurrentIndex: tableFilterState.page_no,
+    IdentityType: 2,
+    KeyWord: tableFilterState.searchVal,
+  });
+  if (res.Ret === 200) {
+    tableFilterState.publicHaveMove = res.Data ? tableFilterState.page_no < res.Data.Paging.Pages : false;
+    publicHaveMoveCompany.value = res.Data.List.length > 0;
+    chartList.value = res.Data ? (tableFilterState.page_no === 1 ? res.Data.List : [...chartList.value, ...res.Data.List]) : [];
+  }
+}
+
+
+//去往全机构详情
+function goWholeDetail() {
+  const { href } = router.resolve("/wholeOrganization");
+  window.open(href, "_blank");
+}
+
+
+//销售的选择
+function handleSalesChange() {
+  if (tableFilterState.activeName !== 4) return;
+  tableFilterState.page_no = 1;
+  getChartData();
+}
+
+
+const handleSearchActivity = _.debounce(function () {
+  tableFilterState.page_no = 1;
+  if (tableFilterState.activeName !== 4) {
+    getTableData();
+  } else {
+    chartList.value = [];
+    getChartData();
+  }
+}, 1000)
+
+
+/* 选择服务日期 */
+function dateChange(e) {
+  if (e[0]) {
+    tableFilterState.start_date = e[0];
+    tableFilterState.end_date = e[1];
+  } else {
+    tableFilterState.start_date = "";
+    tableFilterState.end_date = "";
+  }
+  tableFilterState.month = "";
+  tableFilterState.page_no = 1;
+  tableFilterState.searchVal = "";
+  getTableData();
+}
+
+/* 切换月份 */
+function toggleMonth(label) {
+  tableFilterState.month = label;
+  let days = label == "近1个月" ? -1 : label == "近3个月" ? -3 : 0;
+  filterDate(days);
+}
+/* 获取未来几个月的日期范围 */
+function filterDate(month) {
+  if (month) {
+    let date_now = moment().add(month, "M").format("YYYY-MM-DD");
+    let date_after = moment().format("YYYY-MM-DD");
+    let date = [date_now, date_after];
+    tableFilterState.start_date = date_now;
+    tableFilterState.end_date = date_after;
+    tableFilterState.date = date;
+    tableFilterState.page_no = 1;
+    tableFilterState.searchVal = "";
+    getTableData();
+  }
+}
+
+
+// 搜索
+function handleSearch() {
+  tableFilterState.page_no = 1;
+  getTableData();
+}
+
+// 页码改变事件
+function handleCurrentChange(page, index) {
+  tableFilterState.page_no = page;
+  getTableData();
+}
+
+
+/* 表格行的样式 */
+function handleRowStyle(key) {
+  const style = {
+    Title: "color: #409eff; cursor: pointer",
+    ActivityName: "color: #409eff; cursor: pointer",
+  };
+  return style[key] && ([1,8].includes(tableFilterState.activeName)) ? style[key] : "";
+}
+
+/* 表格行的点击事件 */
+function handleRowClick(row, key) {
+  if (key === "Title") {
+    if (row.SpecialType > 0) {
+      let href = `${import.meta.env.VITE_CYGX_WEB}/column/detail/${row.ArticleId}`;
+      window.open(href, "_blank");
+      return;
+    }
+    if (row.ArticleType == 1) {
+      let url =
+        import.meta.env.MODE === "production"
+          ? "https://details.hzinsights.com/cygx/report"
+          : import.meta.env.MODE === "test"
+          ? "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report"
+          : "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report";
+      let href = `${url}?id=${row.ArticleIdMd5}`;
+      window.open(href, "_blank");
+    } else {
+      let href = `https://vmp.hzinsights.com/v2/articles/${row.ArticleId}`;
+      window.open(href, "_blank");
+    }
+  } else if (key === "ActivityName" && tableFilterState.activeName === 8) {
+    themeDetails(row.ActivityId);
+  }
+}
+
+const { 
+  activeName,
+  page_no,
+  pageSize,
+  publicHaveMove,
+  checkActiveList, //活动的方式
+  checkMeetingList, //是否到会
+  searchVal,
+  month,
+  date,
+  activityName } = toRefs(tableFilterState)
+</script>
+<template>
+  <div class="container-organization">
+    <el-card>
+      <div class="introduce">
+        <span class="synopsis-btn">{{ userForm.ComapnyName }}</span>
+        <span class="attention">注:机构的互动详情,是截止至昨天24点的数据,非当前实时数据</span>
+        <span class="organization-details" @click="goWholeDetail">全机构互动详情>></span>
+      </div>
+      <div class="tabs">
+        <span :class="['item', activeName == item.Source && 'active']" v-for="item in list" :key="item.Source" @click="handleTabsClick(item)">{{ item.PermissionName }} ({{ item.TotalNum }})</span>
+      </div>
+      <div class="son-box">
+        <div style="display: flex; align-items: center" v-if="activeName == 2">
+          <el-checkbox-group v-model="checkActiveList" @change="handleSearch">
+            <el-checkbox :label="item.key" v-for="item in screenList" :key="item.key">{{ item.name }}</el-checkbox>
+          </el-checkbox-group>
+          <el-checkbox-group style="margin-left: 25px" v-model="checkMeetingList" @change="handleSearch">
+            <el-checkbox :label="item.key" v-for="item in meetingList" :key="item.key">{{ item.name }}</el-checkbox>
+          </el-checkbox-group>
+          <el-tooltip class="tooltip-item" effect="dark" content="线上活动设置预约外呼/会议提醒/预约纪要,线下活动报名/预约纪要,但实际未参会的活动" placement="top-start">
+            <i class="el-icon-info"></i>
+          </el-tooltip>
+        </div>
+        <div class="dataReport-top">
+          <template v-if="activeName == 1 || activeName == 2">
+            <date-picker
+              v-model:value="date"
+              type="date"
+              range
+              value-type="format"
+              :placeholder="activeName == 2 ? '活动时间' : '阅读时间'"
+              :editable="false"
+              @change="dateChange"
+              style="width: 200px; margin-right: 20px"
+            />
+            <button :class="['button-sty', { act: month === item.label }]" v-for="item in monthLabel" @click="toggleMonth(item.label)" :key="item.label">
+              {{ item.label }}
+            </button>
+          </template>
+          <el-input placeholder="手机号/邮箱/姓名" v-model="searchVal" style="width: 200px; margin-right: 20px" @input="handleSearchActivity" clearable>
+            <template #prefix>
+              <el-icon class="el-input__icon"><search /></el-icon>
+            </template>
+          </el-input>
+          <el-input v-if="activeName == 2" placeholder="活动名称" v-model="activityName" style="width: 200px" @input="handleSearchActivity" clearable>
+            <template #prefix>
+              <el-icon class="el-input__icon"><search /></el-icon>
+            </template>
+          </el-input>
+          <a :href="exportExcel" download v-if="activeName == 1 || activeName == 2">
+            <button class="button-sty act">下载EXCEL</button>
+          </a>
+        </div>
+      </div>
+      <template v-if="activeName != 4">
+        <el-table style="margin-top: 20px" :data="tableData" v-loading="tableLoading" element-loading-text="数据加载中..." border>
+          <el-table-column v-for="item in tableColums" :key="item.label" :label="item.label" :width="item.widthsty" :min-width="item.minwidthsty" align="center">
+            <template #default="{ row }">
+              <span @click="handleRowClick(row, item.key)" :style="handleRowStyle(item.key)">{{ handleRowContent(row, item.key) }}</span>
+            </template>
+          </el-table-column>
+          <template #empty>
+            <div style="padding: 20px 0">
+              <img src="~@/assets/img/data_m/table_no.png" alt="" style="display: block; width: 135px; height: 90px; margin: 0 auto" />
+              <span>暂无数据</span>
+            </div>
+          </template>
+        </el-table>
+        <el-col :span="24" class="toolbar">
+          <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleCurrentChange" />
+        </el-col>
+      </template>
+      <template v-else>
+        <template v-if="publicHaveMoveCompany">
+          <div v-for="item in chartList" :key="item.UserId">
+            <template v-if="item.ListChart">
+              <ChartItem :chartData="item" />
+            </template>
+          </div>
+        </template>
+        <template v-else>
+          <img src="~@/assets/img/data_m/table_no.png" alt="" style="display: block; width: 135px; height: 90px; margin: 30px auto" />
+          <p class="chart-no-data">暂无收藏的图表</p>
+        </template>
+      </template>
+    </el-card>
+  </div>
+</template>
+<style scoped lang="scss">
+.container-organization {
+  .introduce {
+    .attention {
+      font-size: 14px;
+      color: #999999;
+      display: inline-block;
+      margin: 0 20px;
+    }
+    .organization-details {
+      cursor: pointer;
+      font-size: 14px;
+      color: #3385ff;
+    }
+  }
+  @import "./compontents/details.scss";
+  .synopsis-btn {
+    margin-top: 20px;
+    display: inline-block;
+    height: 32px;
+    padding: 0 20px;
+    background: #eaf2ff;
+    border-radius: 2px;
+    border: 1px solid #3385ff;
+    color: #3385ff;
+    line-height: 30px;
+  }
+}
+</style>

+ 375 - 0
src/views/custom_manage/contacts/wholeOrganization.vue

@@ -0,0 +1,375 @@
+<script setup>
+import { computed, ref,reactive, toRefs } from 'vue';
+import { useRoute,useRouter } from 'vue-router'
+import { Search } from '@element-plus/icons-vue';
+import { wholeOrganizationTableColums, screenList, meetingList } from "./compontents/contactsColums";
+import { customInterence, equityContacts } from "@/api/api.js";
+import mPage from "@/components/mPage.vue";
+import ChartItem from "./compontents/chartItem.vue";
+import DatePicker from 'vue-datepicker-next';
+import moment from 'moment';
+import _ from 'lodash';
+import { useList } from './hooks/use-list'
+
+const route = useRoute();
+const router = useRouter()
+
+
+const exportExcel = computed(()=> {
+  let baseUrl = import.meta.env.VITE_APP_API_ROOT + "/cygx/user/companyList/export/interaction";
+  let token = localStorage.getItem("auth") || "";
+
+  let salesArr = [];
+  if (sales.value.length) {
+    salesArr = sales.map((item) => {
+      return item[item.length - 1];
+    });
+  }
+  let paramStr = "";
+  let params = {
+    Source: tableFilterState.activeName,
+    IsMeeting: tableFilterState.checkMeetingList.join(","),
+    MeetType: tableFilterState.checkActiveList.join(","),
+    EndDate: tableFilterState.end_date,
+    StartDate: tableFilterState.start_date,
+    KeyWord: tableFilterState.searchVal,
+    ActivityName: tableFilterState.activityName,
+  };
+  for (let key in params) {
+    paramStr = `${paramStr}&${key}=${params[key]}`;
+  }
+  return `${baseUrl}?${token}${paramStr}`;
+})
+
+
+const { handleRowContent } = useList()
+
+
+//获取基础数据
+const list = ref([])
+const userForm = ref({})
+async function getCygxMutualList() {
+  const res = await equityContacts.getUserTableCompanyList();
+  if (res.Ret === 200) {
+    list.value = res.Data.List || [];
+    userForm.value = res.Data;
+    getTableData();
+  }
+}
+getCygxMutualList()
+
+
+//获取表格数据
+const tableLoading = ref(false)
+const tableColums = ref(wholeOrganizationTableColums(1))
+const tableData = ref([])
+const total = ref(0)
+const tableFilterState = reactive({
+  activeName: 1,
+  page_no: 1,
+  pageSize: 10,
+  publicHaveMove: true,
+  checkActiveList: [1, 2], //活动的方式
+  checkMeetingList: [1, 2], //是否到会
+  searchVal: "",
+  start_date: "",
+  end_date: "",
+  month: "",
+  date: [],
+  activityName: "",
+  sales: ''
+})
+async function getTableData() {
+  let salesArr = [];
+  if (tableFilterState.sales.length) {
+    salesArr = tableFilterState.sales.map((item) => {
+      return item[item.length - 1];
+    });
+  }
+  tableLoading.value = true;
+  const res = await equityContacts.getUserCompanyList({
+    Source: tableFilterState.activeName,
+    PageSize: tableFilterState.pageSize,
+    CurrentIndex: tableFilterState.page_no,
+    IsMeeting: tableFilterState.checkMeetingList.join(","),
+    MeetType: tableFilterState.checkActiveList.join(","),
+    EndDate: tableFilterState.end_date,
+    StartDate: tableFilterState.start_date,
+    KeyWord: tableFilterState.searchVal,
+    ActivityName: tableFilterState.activityName,
+    AdminId: salesArr.join(","),
+    
+  });
+  if (res.Ret === 200) {
+    total.value = res.Data.Paging.Totals;
+    tableLoading.value = false;
+    tableData.value = res.Data.List || [];
+  }
+}
+
+
+/* 获取销售 */
+const defaultSalesProps = {
+  multiple: true,
+  label: "RealName",
+  children: "ChildrenList",
+  value: "AdminId",
+}
+const salesArr = ref([])
+function getSale() {
+  customInterence.getSale().then((res) => {
+    if (res.Ret === 200) {
+      salesArr.value = res.Data.List;
+    }
+  });
+}
+getSale()
+
+
+//一级的点击事件
+function handleTabsClick(item) {
+  if (tableFilterState.activeName != item.Source) {
+    tableFilterState.activeName = item.Source;
+    tableColums.value = wholeOrganizationTableColums(tableFilterState.activeName);
+  }
+  tableFilterState.checkActiveList = [1, 2]; //活动的方式
+  tableFilterState.checkMeetingList = [1, 2]; //是否到会
+  tableFilterState.month = '';
+  tableFilterState.date = [];
+
+  tableFilterState.searchVal = "";
+  tableFilterState.activityName = "";
+  tableFilterState.chartList = [];
+  tableFilterState.end_date = "";
+  tableFilterState.start_date = "";
+  tableFilterState.sales = "";
+  tableFilterState.page_no = 1;
+  if (tableFilterState.activeName !== 4) {
+    getTableData();
+  } else {
+    getChartData();
+  }
+}
+
+//获取图表
+const chartList = ref([])
+const publicHaveMoveCompany = ref(false)
+async function getChartData() {
+  let salesArr = [];
+  if (tableFilterState.sales.length) {
+    salesArr = tableFilterState.sales.map((item) => {
+      return item[item.length - 1];
+    });
+  }
+
+  const res = await equityContacts.getUserCompanyList({
+    Source: tableFilterState.activeName,
+    CurrentIndex: tableFilterState.page_no,
+    PageSize: tableFilterState.pageSize,
+    IdentityType: 2,
+    KeyWord: tableFilterState.searchVal,
+    AdminId: salesArr.join(","),
+  });
+  if (res.Ret === 200) {
+    tableFilterState.publicHaveMove = res.Data ? tableFilterState.page_no < res.Data.Paging.Pages : false;
+    publicHaveMoveCompany.value = res.Data.List.length > 0;
+    chartList.value = res.Data.List || [];
+    tableFilterState.total = res.Data.Paging.Totals;
+  }
+}
+
+function handleChartChange(page) {
+  tableFilterState.page_no = page;
+  getChartData();
+}
+
+// 页码改变事件
+function handleCurrentChange(page, index) {
+  tableFilterState.page_no = page;
+  getTableData();
+}
+
+
+function handleSearchActivity() {
+  tableFilterState.page_no = 1;
+  if (tableFilterState.activeName !== 4) {
+    getTableData();
+  } else {
+    chartList.value = [];
+    getChartData();
+  }
+}
+
+
+/* 选择服务日期 */
+function dateChange(e) {
+  if (e[0]) {
+    tableFilterState.start_date = e[0];
+    tableFilterState.end_date = e[1];
+  } else {
+    tableFilterState.start_date = "";
+    tableFilterState.end_date = "";
+  }
+  tableFilterState.month = "";
+  tableFilterState.page_no = 1;
+  tableFilterState.searchVal = "";
+  getTableData();
+}
+
+
+/* 表格行的样式 */
+function handleRowStyle(key) {
+  const style = {
+    Title: "color: #409eff; cursor: pointer",
+    ActivityName: "color: #409eff; cursor: pointer",
+  };
+  return style[key] && ([1,8].includes(tableFilterState.activeName)) ? style[key] : "";
+}
+
+/* 表格行的点击事件 */
+function handleRowClick(row, key) {
+  if (key === "Title") {
+    if (row.SpecialType > 0) {
+      let href = `${import.meta.env.VITE_CYGX_WEB}/column/detail/${row.ArticleId}`;
+      window.open(href, "_blank");
+      return;
+    }
+    if (row.ArticleType == 1) {
+      let url =
+        import.meta.env.MODE === "production"
+          ? "https://details.hzinsights.com/cygx/report"
+          : import.meta.env.MODE === "test"
+          ? "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report"
+          : "http://xcxh5test.hzinsights.com/xcx_h5/cygx/report";
+      let href = `${url}?id=${row.ArticleIdMd5}`;
+      window.open(href, "_blank");
+    } else {
+      let href = `https://vmp.hzinsights.com/v2/articles/${row.ArticleId}`;
+      window.open(href, "_blank");
+    }
+  } else if (key === "ActivityName" && tableFilterState.activeName === 8) {
+    themeDetails(row.ActivityId);
+  }
+}
+
+
+const { 
+  activeName,
+  page_no,
+  pageSize,
+  publicHaveMove,
+  checkActiveList, //活动的方式
+  checkMeetingList, //是否到会
+  searchVal,
+  month,
+  date,
+  sales,
+  activityName } = toRefs(tableFilterState)
+
+</script>
+<template>
+  <div class="container-whole-organization">
+    <el-card>
+      <div class="introduce">注:机构的互动详情,是截止至昨天24点的数据,非当前实时数据</div>
+      <div class="tabs">
+        <span :class="['item', activeName == item.Source && 'active']" v-for="item in list" :key="item.Source" @click="handleTabsClick(item)">{{ item.PermissionName }} ({{ item.TotalNum }})</span>
+      </div>
+      <div class="son-box">
+        <div style="display: flex; align-items: center" v-if="activeName == 2">
+          <el-checkbox-group v-model="checkActiveList" @change="dataChangeHandler">
+            <el-checkbox :label="item.key" v-for="item in screenList" :key="item.key">{{ item.name }}</el-checkbox>
+          </el-checkbox-group>
+          <el-checkbox-group style="margin-left: 25px" v-model="checkMeetingList" @change="dataChangeHandler">
+            <el-checkbox :label="item.key" v-for="item in meetingList" :key="item.key">{{ item.name }}</el-checkbox>
+          </el-checkbox-group>
+          <el-tooltip class="tooltip-item" effect="dark" content="线上活动设置预约外呼/会议提醒/预约纪要,线下活动报名/预约纪要,但实际未参会的活动" placement="top-start">
+            <i class="el-icon-info"></i>
+          </el-tooltip>
+        </div>
+        <div class="dataReport-top">
+          <template v-if="activeName == 1 || activeName == 2">
+            <date-picker
+              v-model:value="date"
+              type="date"
+              range
+              value-type="format"
+              :placeholder="activeName == 2 ? '活动时间' : '阅读时间'"
+              :editable="false"
+              @change="dateChange"
+              style="width: 200px; margin-right: 20px"
+            />
+          </template>
+          <el-cascader
+            v-model="sales"
+            placeholder="所属销售"
+            style="width: 200px; margin-right: 20px"
+            :options="salesArr"
+            :props="defaultSalesProps"
+            :show-all-levels="false"
+            collapse-tags
+            clearable
+            filterable
+            @change="handleSearchActivity"
+          >
+          </el-cascader>
+          <el-input placeholder="手机号/邮箱/姓名/公司名" v-model="searchVal" style="width: 220px; margin-right: 20px" @input="handleSearchActivity" clearable>
+            <template #prefix>
+              <el-icon class="el-input__icon"><search /></el-icon>
+            </template>
+          </el-input>
+          <el-input v-if="activeName == 2" placeholder="活动名称" v-model="activityName" style="width: 200px" @input="handleSearchActivity" clearable>
+            <template #prefix>
+              <el-icon class="el-input__icon"><search /></el-icon>
+            </template>
+          </el-input>
+          <a :href="exportExcel" download v-if="activeName == 1 || activeName == 2">
+            <button class="button-sty act">下载EXCEL</button>
+          </a>
+        </div>
+      </div>
+      <template v-if="activeName != 4">
+        <el-table style="margin-top: 20px" :data="tableData" v-loading="tableLoading" element-loading-text="数据加载中..." border>
+          <el-table-column v-for="item in tableColums" :key="item.label" :label="item.label" :width="item.widthsty" :min-width="item.minwidthsty" align="center">
+            <template #default="{ row }">
+              <span @click="handleRowClick(row, item.key)" :style="handleRowStyle(item.key)">{{ handleRowContent(row, item.key) }}</span>
+            </template>
+          </el-table-column>
+          <template #empty>
+            <div style="padding: 20px 0">
+              <img src="~@/assets/img/data_m/table_no.png" alt="" style="display: block; width: 135px; height: 90px; margin: 0 auto" />
+              <span>暂无数据</span>
+            </div>
+          </template>
+        </el-table>
+        <el-col :span="24" class="toolbar">
+          <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleCurrentChange" />
+        </el-col>
+      </template>
+      <template v-else>
+        <template v-if="publicHaveMoveCompany">
+          <div v-for="item in chartList" :key="item.UserId">
+            <template v-if="item.ListChart">
+              <ChartItem :chartData="item" :companyName="item.CompanyName" />
+            </template>
+          </div>
+          <el-col :span="24" class="toolbar">
+            <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleChartChange" />
+          </el-col>
+        </template>
+        <template v-else>
+          <img src="~@/assets/img/data_m/table_no.png" alt="" style="display: block; width: 135px; height: 90px; margin: 30px auto" />
+          <p class="chart-no-data">暂无收藏的图表</p>
+        </template>
+      </template>
+    </el-card>
+  </div>
+</template>
+<style scoped lang="scss">
+.container-whole-organization {
+  .introduce {
+    font-size: 14px;
+    color: #999999;
+  }
+  @import "./compontents/details.scss";
+}
+</style>