Browse Source

销售To Do统计模块

hbchen 11 months ago
parent
commit
82fcb51955

+ 41 - 47
src/router/modules/sellerRoutes.js

@@ -71,53 +71,47 @@ export default [
 				},
 				hidden: true
 			},
-			// {
-			// 	path: 'sellerTodoTask',
-			// 	component: () => import('@/views/dataReport_manage/statistic/todoTask.vue'),
-			// 	name: '销售To Do统计',
-			// 	hidden: false
-			// },
-			// {
-			// 	path: 'todoTaskList',
-			// 	component: () => import('@/views/dataReport_manage/statistic/todoTaskList.vue'),
-			// 	name: '客户任务列表',
-			// 	meta: {
-			// 		pathFrom: 'sellerTodoTask',
-			// 		pathName: '销售To Do统计'
-			// 	},
-			// 	hidden: true
-			// },
-			// {
-			// 	path: 'undoneTaskList',
-			// 	/* component: () => import('@/views/dataReport_manage/statistic/undoneTaskList.vue'), */
-			// 	component: () => import('@/views/dataReport_manage/statistic/todoTaskList.vue'),
-			// 	name: '未完成任务列表',
-			// 	meta: {
-			// 		pathFrom: 'sellerTodoTask',
-			// 		pathName: '销售To Do统计'
-			// 	},
-			// 	hidden: true
-			// },
-			// {
-			// 	path: 'doingTaskList',
-			// 	component: () => import('@/views/dataReport_manage/statistic/todoTaskList.vue'),
-			// 	name: '进行中任务列表',
-			// 	meta: {
-			// 		pathFrom: 'sellerTodoTask',
-			// 		pathName: '销售To Do统计'
-			// 	},
-			// 	hidden: true
-			// },
-			// {
-			// 	path: 'tryList',
-			// 	component: () => import('@/views/dataReport_manage/statistic/newCustomlist.vue'),
-			// 	name: '试用客户列表',
-			// 	meta: {
-			// 		pathFrom: 'sellerTodoTask',
-			// 		pathName: '销售To Do统计'
-			// 	},
-			// 	hidden: true
-			// },
+			{
+				path: 'sellerTodoTask',
+				component: () => import('@/views/dataReport_manage/statistic/todoTask.vue'),
+				name: 'sellerTodoTask',
+				meta: {
+					title:'销售To Do统计'
+				},
+			},			
+			{
+				path: 'todoTaskList',
+				component: () => import('@/views/dataReport_manage/statistic/todoTaskList.vue'),
+				name: 'todoTaskList',
+				meta: {
+					pathFrom: 'sellerTodoTask',
+					pathName: '销售To Do统计',
+					title:'客户任务列表'
+				},
+				hidden: true
+			},
+			{
+				path: 'undoneTaskList',
+				component: () => import('@/views/dataReport_manage/statistic/todoTaskList.vue'),
+				name: 'undoneTaskList',
+				meta: {
+					pathFrom: 'sellerTodoTask',
+					pathName: '销售To Do统计',
+					title:'未完成任务列表'
+				},
+				hidden: true
+			},
+			{
+				path: 'doingTaskList',
+				component: () => import('@/views/dataReport_manage/statistic/todoTaskList.vue'),
+				name: 'doingTaskList',
+				meta: {
+					pathFrom: 'sellerTodoTask',
+					pathName: '销售To Do统计',
+					title:'进行中任务列表'
+				},
+				hidden: true
+			},
 			{
 				path:"ficcProductStatistic",
 				component: () => import('@/views/dataReport_manage/statistic/ficcProduct.vue'),

+ 180 - 0
src/views/custom_manage/components/CheckToDoDialog.vue

@@ -0,0 +1,180 @@
+<script setup>
+import { ref, watch } from "vue"
+import moment from "moment";
+
+import { customInterence } from '@/api/api.js'
+
+const props = defineProps({
+  ischeckToDoDialogShow: {
+    type: Boolean,
+    default: false,
+  },//控制弹窗展示
+  todoInfo: {
+    type: Object,
+  },//todo的info
+})
+
+const emits=defineEmits(['check','update:ischeckToDoDialogShow'])
+
+const textarea=ref("") //任务描述
+const remake=ref("")//任务备注
+const todoData=ref([])//表格数据
+const todoId=ref(0)//任务的id
+
+watch(()=>props.ischeckToDoDialogShow,()=>{
+  if(!props.ischeckToDoDialogShow) return 
+    //获取历史记录
+    customInterence.getHistory({
+      CompanyId:props.todoInfo.CompanyId
+    }).then(res=>{
+      if(res.Ret===200){
+        todoData.value = res.Data
+      }
+    })
+    //获取最新记录
+    customInterence.getToDoItem({
+        CompanyId:props.todoInfo.CompanyId
+      }).then(res=>{
+        if(res.Ret===200&&res.Data){
+          textarea.value = res.Data[0].Content
+          todoId.value = res.Data[0].Id
+          remake.value = res.Data[0].Remark||''
+        }
+    })
+})
+
+const closeDia=(type)=>{
+  if(type==='confirm'){
+    emits('check',{Id:todoId.value,Remark:remake.value})
+  }else{
+    emits("update:ischeckToDoDialogShow", false);
+  }
+  textarea.value= ""
+  remake.value=""
+  todoData.value=[]
+  todoId.value=0
+}
+const isLast=(info)=>{
+  if(info.$index===todoData.value.length-1){
+    return true
+  }else{
+    return false
+  }
+}
+
+</script>
+
+<template>
+  <el-dialog
+    v-if="props.ischeckToDoDialogShow"
+    :model-value="props.ischeckToDoDialogShow"
+    :close-on-click-modal="false"
+    :modal-append-to-body="false"
+    @close="closeDia"
+    width="889px"
+    v-dialogDrag
+    center
+  >
+    <template #header>
+      <div style="display: flex; align-items: center">
+        <span style="font-size: 16px"
+        >{{ props.todoInfo ? props.todoInfo.CompanyName : "" }}——任务审核详情</span>
+      </div>
+    </template>
+    <div class="dialog-container">
+      <div class="input-container">
+        <span>任务描述:</span>
+        <el-input
+          type="textarea"
+          disabled
+          :rows="2"
+          resize="none"
+          v-model="textarea"
+        >
+        </el-input>
+      </div>
+      <div class="input-container">
+        <span>备注:</span>
+        <el-input
+          type="textarea"
+          placeholder="请输入备注"
+          :rows="2"
+          resize="none"
+          v-model="remake"
+        >
+        </el-input>
+      </div>
+    </div>
+    <div class="foot-container">
+      <el-button type="primary" @click="closeDia('confirm')">确 定</el-button>
+      <el-button @click="closeDia('cancel')">取 消</el-button>
+    </div>
+    <div class="table-container">
+        <el-table
+			:data="todoData"
+      v-if="todoData"
+			border
+			max-height="300"
+			style="width: 100%; margin-top: 20px;margin-bottom: 20px">
+            <el-table-column label="任务描述" align="center" prop="Content">
+              <template #default="scope">
+                {{scope.row['Content']||'--'}}
+              </template>
+            </el-table-column>
+            <el-table-column label="创建时间" align="center" prop="CreateTime" :min-width="120">
+              <template #default="{row}">
+                <span>
+                  {{row['CreateTime']==='0001-01-01T00:00:00Z'?'':moment(row['CreateTime']).format('YYYY-MM-DD HH:mm:ss')}}
+                </span>
+              </template>
+            </el-table-column>
+            <el-table-column label="截止日期" align="center" prop="EndTimeStr" :min-width="120">
+              <template #default="scope">
+                  <span :style="{color:isLast(scope)&&scope.row['EndTimeStr']?'red':'#606266'}">
+                   {{scope.row['EndTimeStr']||'--'}}
+                  </span>
+              </template>
+            </el-table-column>
+            <el-table-column label="备注" align="center" prop="Remark" :min-width="120">
+              <template #default="scope">
+                  <span>
+                   {{scope.row['Remark']||'--'}}
+                  </span>
+              </template>
+            </el-table-column>
+        </el-table>
+    </div>
+  </el-dialog>
+</template>
+
+<style scoped lang="scss">
+.el-dialog {
+  .dialog-container {
+    .input-container {
+      display: flex;
+      align-items: center;
+      font-size: 16px;
+      margin-bottom: 30px;
+      span{
+        width:80px;
+        font-size: 14px;
+      }
+      .el-textarea {
+        font-size: 16px;
+      }
+    }
+  }
+  .foot-container {
+    display: flex;
+    justify-content: center;
+    margin-bottom: 20px;
+    .el-button {
+      width: 224px;
+      height: 40px;
+    }
+  }
+  // .table-container{
+
+  // }
+}
+</style>

+ 129 - 0
src/views/custom_manage/components/HistoryToDoDialog.vue

@@ -0,0 +1,129 @@
+<script setup>
+import { ref, watch } from "vue"
+import moment from "moment";
+
+import { customInterence } from '@/api/api.js'
+
+const props = defineProps({
+  isHistoryDialogShow: {
+    type: Boolean,
+    default: false,
+  },//控制弹窗展示
+  todoInfo: {
+    type: Object,
+  },//todo的info
+})
+
+const emits=defineEmits(['update:isHistoryDialogShow'])
+
+const todoData=ref([])//表格数据
+const tableLabel=[
+    {
+        label:'任务描述',
+        key:'Content',
+        widthsty:150
+    },
+    {
+        label:'客户类型',
+        key:'ProductId',
+        widthsty:80
+    },
+    {
+        label:'创建人',
+        key:'CreateUserName'
+    },
+    {
+        label:'创建时间',
+        key:'CreateTime',
+        minwidthsty:150
+    },
+    {
+        label:'截止日期',
+        key:'EndTimeStr',
+        minwidthsty:120
+    },
+    {
+        label:'备注',
+        key:'Remark',
+        widthsty:150
+    },
+    {
+        label:'审核人',
+        key:'ApproveUserName'
+    },
+    {
+        label:'审核时间',
+        key:'ApproveTime',
+        minwidthsty:150
+    }
+]
+
+watch(()=>props.isHistoryDialogShow,()=>{
+  if(!props.isHistoryDialogShow) return 
+    //获取历史记录
+    customInterence.getHistory({
+      CompanyId:props.todoInfo.CompanyId
+    }).then(res=>{
+      if(res.Ret===200&&res.Data){
+        todoData.value = res.Data
+      }
+    })
+})
+
+const closeDia=()=>{
+  todoData.value=[]
+  emits("update:isHistoryDialogShow", false);
+}
+
+</script>
+
+<template>
+  <el-dialog
+    v-if="props.isHistoryDialogShow"
+    :model-value="props.isHistoryDialogShow"
+    :close-on-click-modal="false"
+    :modal-append-to-body="false"
+    @close="closeDia"
+    width="1020px"
+    v-dialogDrag
+    center
+  >
+    <template #header>
+      <div style="display: flex; align-items: center">
+        <span style="font-size: 16px"
+          >{{ props.todoInfo ? props.todoInfo.CompanyName : "" }}——任务历史记录</span
+        >
+      </div>
+    </template>
+
+    <div class="dialog-container">
+        <div class="table-container">
+            <el-table
+                v-if="todoData"
+                :data="todoData"
+                border
+                max-height="600"
+                style="width: 100%; margin-bottom: 20px">
+                <el-table-column align="center"
+                    v-for="item in tableLabel" :key="item.key"
+                    :label="item.label"
+                    :prop="item.prop"
+                    :width="item.widthsty" 
+                    :min-width="item.minwidthsty"
+                >
+                <template #default="{row}">
+                  <span v-if="['CreateTime','ApproveTime'].includes(item.key)">
+                   {{row[item.key]==='0001-01-01T00:00:00Z'?'--':moment(row[item.key]).format('YYYY-MM-DD HH:mm:ss')}}
+                  </span>
+                  <span v-else-if="item.key==='ProductId'">{{row[item.key]===1?'ficc':'权益'}}</span>
+                  <span v-else>{{row[item.key]||'--'}}</span>
+                </template>
+                </el-table-column>
+            </el-table>
+        </div>
+    </div>
+  </el-dialog>
+</template>
+
+<style scoped lang="scss">
+</style>

+ 265 - 0
src/views/custom_manage/components/ModifyToDoDialog.vue

@@ -0,0 +1,265 @@
+
+<script setup>
+import { ref, watch,computed } from "vue"
+import { ElMessage } from 'element-plus'
+
+import { customInterence } from '@/api/api.js'
+
+const props = defineProps({
+  type:{
+    type:String,
+    default:'add'
+  },//是新增还是修改
+  isModifyDialogShow: {
+    type: Boolean,
+    default: false,
+  },//控制弹窗展示
+  todoInfo: {
+    type: Object,
+  },//todo的info
+})
+
+const emits=defineEmits(['modify','update:isModifyDialogShow'])
+
+const textarea=ref("") //任务描述
+const activeTab=ref(1)
+const Tabs=[
+  {
+    label: "FICC任务",
+    key: 1,
+    textarea: "FiccTextarea",
+  },
+  {
+    label: "权益任务",
+    key: 2,
+    textarea: "qyTextarea",
+  },
+] //任务类型
+const todoId=ref(0)//编辑时有用,任务的id
+const todoList=ref(null)//编辑时有用,任务的列表
+const editTabs=ref([])
+const modiDate=ref(null)//截止时间
+const pickerOptions={
+    disabledDate(time) {
+      return time.getTime() < Date.now() - 24*60*60*1000;
+    }
+}
+const Role=computed(()=>{
+  return localStorage.getItem("Role");
+})
+const isTabsShow=computed(()=>{
+  if(Role.value==='admin'&&props.todoInfo.IsShared&&props.type==='add'){
+    return true
+  }else{
+    return false
+  }  
+})
+const ProductId=computed(()=>{
+  if(props.todoInfo.IsShared){
+    return activeTab.value
+  }else{
+    return props.todoInfo.CompanyType==='ficc'?1:2
+  }
+})
+
+watch(()=>props.isModifyDialogShow,()=>{
+  if(props.type==='edit'&&props.isModifyDialogShow){
+    //获取最新记录
+    customInterence.getToDoItem({
+      CompanyId:props.todoInfo.CompanyId
+    }).then(res=>{
+      if(res.Ret===200){
+        if(!props.todoInfo.IsShared){
+          textarea.value = res.Data[0].Content
+          modiDate.value = res.Data[0].EndTimeStr
+          todoId.value = res.Data[0].Id
+          editTabs.value=[]
+        }else{
+          todoList.value = res.Data
+          if(todoList.value.length>1){
+            editTabs.value = Tabs.value
+          }else{
+            editTabs.value = Tabs.value?.filter(i=>i.key===todoList.value[0].ProductId)
+          }
+          if(Role.value!=='admin'){
+            editTabs.value=[]
+          }
+          activeTab.value = todoList.value[0].ProductId
+          textarea.value = todoList.value[0].Content
+          modiDate.value = res.Data[0].EndTimeStr
+          todoId.value = todoList.value[0].Id
+        }  
+      }
+    })
+  }
+})
+
+const closeDia=(type)=>{
+  if(type==='confirm'){
+    if(!checkInput()) return
+    emits('modify',{
+      type:props.type,
+      Description:textarea.value,
+      ProductId:ProductId.value,
+      CompanyId:props.todoInfo.CompanyId,
+      Id:todoId.value,
+      EndTime:modiDate.value
+    })
+    textarea.value=''
+    modiDate.value=null
+    activeTab.value=1
+    editTabs.value=[]
+  }else{
+    activeTab.value=1
+    textarea.value=''
+    modiDate.value=null
+    editTabs.value=[]
+    emits("update:isModifyDialogShow", false);
+  }
+}
+const changeTabs=({ key, textarea })=>{
+  if (key === activeTab.value) return;
+  activeTab.value = key;
+  if(props.type==='add'){
+    textarea.value = "";
+    modiDate.value=null
+  }else{
+    textarea.value = todoList.value.filter(i=>i.ProductId===key)[0].Content
+    modiDate.value = todoList.value.filter(i=>i.ProductId===key)[0].EndTimeStr
+    todoId.value = todoList.value.filter(i=>i.ProductId===key)[0].Id
+  }     
+}
+const checkInput=()=>{
+  let flag = true
+  if(!textarea.value.length){
+      ElMessage.error('请输入任务描述')
+      flag = false
+  }else if(props.type==='add'&!modiDate.value){
+    ElMessage.error('请输入截止时间')
+    flag=false
+  }
+  return flag
+}
+
+</script>
+
+<template>
+  <el-dialog
+    v-if="props.isModifyDialogShow"
+    :model-value="props.isModifyDialogShow"
+    :close-on-click-modal="false"
+    :modal-append-to-body="false"
+    @close="closeDia"
+    width="889px"
+    v-dialogDrag
+    center
+  >
+    <template #header>
+      <div style="display: flex; align-items: center">
+        <span style="font-size: 16px"
+          >{{ props.todoInfo ? props.todoInfo.CompanyName : "" }}——任务详情</span
+        >
+      </div>
+    </template>
+    <div class="dialog-container">
+      <div class="tabs" v-if="isTabsShow">
+        <span
+          class="tab-item"
+          v-for="item in Tabs"
+          :key="item.key"
+          @click="changeTabs(item)"
+          :style="activeTab === item.key ? 'color:#409EFF;' : ''"
+          >{{ item.label }}</span
+        >
+      </div>
+      <div class="tabs" v-if="props.type==='edit'">
+        <span
+          class="tab-item"
+          v-for="item in editTabs"
+          :key="item.key"
+          @click="changeTabs(item)"
+          :style="activeTab === item.key ? 'color:#409EFF;' : ''"
+          >{{ item.label }}</span
+        >
+      </div>
+      <div class="input-container">
+        <div class="input-item">
+          <span>*</span>
+          <el-input
+            type="textarea"
+            :rows="12"
+            placeholder="请输入任务描述"
+            v-model="textarea"
+            required
+          >
+        </el-input>
+        </div>
+        <div class="input-item">
+          <span>*</span>
+          <el-date-picker
+            style="width: 220px;"
+            v-model="modiDate"
+            type="date"
+            format="YYYY-MM-DD"
+            value-format="yyyy-MM-dd"
+            :picker-options="pickerOptions"
+            placeholder="截止日期">
+          </el-date-picker>
+        </div>
+      </div>
+    </div>
+    <template #footer>
+      <div class="foot-container">
+        <el-button type="primary" @click="closeDia('confirm')">确 定</el-button>
+        <el-button @click="closeDia('cancel')">取 消</el-button>
+      </div>
+    </template>
+  </el-dialog>
+</template>
+
+<style scoped lang="scss">
+.el-dialog {
+  .dialog-container {
+    .tabs {
+      margin-bottom: 10px;
+      .tab-item {
+        font-size: 14px;
+        color: #999999;
+        cursor: pointer;
+        margin-right: 20px;
+      }
+    }
+    .input-container {
+      font-size: 16px;
+      margin-bottom: 30px;
+      .el-textarea {
+        font-size: 16px;
+      }
+      .input-item{
+        display: flex;
+        margin-bottom:20px;
+        font-size: 14px;
+        span{
+          color: red;
+          margin-right: 5px;
+          &.time{
+            margin-left: 5px;
+            align-self: center;
+          }
+          &.empty{
+            color: #606266;
+          }
+        }
+      }
+      
+    }
+  }
+  .foot-container {
+    margin-bottom: 20px;
+    .el-button {
+      width: 224px;
+      height: 40px;
+    }
+  }
+}
+</style>

+ 62 - 0
src/views/custom_manage/components/accumulativeFrequencyDlg.vue

@@ -0,0 +1,62 @@
+<script setup>
+import { ref, watch } from "vue"
+
+import { customInterence } from "@/api/api.js";
+
+const props = defineProps({
+  accumulativeFrequencyDlg: {
+    type: Boolean,
+    default: false,
+  },
+  accumulativeFrequencyItem: {
+    type: Object,
+    default: {},
+  },
+})
+const emits=defineEmits(['update:accumulativeFrequencyDlg','update:accumulativeFrequencyItem'])
+
+const tableData=ref([])
+
+watch(()=>props.accumulativeFrequencyDlg,(newval)=>{
+  if (newval) {
+    roadShowList();
+  }
+})
+
+const closeDia=()=>{
+  emits("update:accumulativeFrequencyDlg", false);
+  emits("update:accumulativeFrequencyItem", {});
+}
+const roadShowList=async()=>{
+  const res = await customInterence.roadShowList({
+    CompanyId: props.accumulativeFrequencyItem.CompanyId,
+  });
+  if (res.Ret === 200) {
+    tableData.value = res.Data || [];
+  }
+}
+
+</script>
+
+<template>
+  <div class="container-accumulativeFrequency">
+    <el-dialog :model-value="props.accumulativeFrequencyDlg" :close-on-click-modal="false" :modal-append-to-body="false" @close="closeDia" width="800px" v-dialogDrag center>
+      <template #header>
+        <div style="display: flex; align-items: center">
+          <span style="font-size: 16px">{{ props.accumulativeFrequencyItem.CompanyName }}-路演详情</span>
+        </div>
+      </template>
+      <div>累计路演次数:{{ props.accumulativeFrequencyItem.RoadShowTotal }}</div>
+      <div>
+        <el-table :data="tableData" height="350" style="width: 100%; margin: 20px 0 30px" border>
+          <el-table-column prop="RoadShowTime" label="路演日期" align="center"> </el-table-column>
+          <el-table-column prop="RoadshowType" label="路演形式" align="center"> </el-table-column>
+          <el-table-column prop="RoadshowPlatform" label="路演平台" align="center"> </el-table-column>
+          <el-table-column prop="Researchers" label="研究员" align="center"> </el-table-column>
+          <el-table-column prop="SysUserRealName" label="对接销售" align="center"> </el-table-column>
+        </el-table>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+<style scoped lang="less"></style>

+ 0 - 20
src/views/dataReport_manage/statistic/ficcProduct.vue

@@ -10,10 +10,6 @@ import {dataReportStatisticHook} from './hook.js';
 
 const $router=useRouter()
 
-const tipMap=new Map([
-	['试用','在所选时间段内,新建的或转为试用状态的客户数量(正式转试用的除外)'],
-	['正式','首次申请转正的审批通过时间,在所选时间段内的客户数'],
-])
 const productOpts=ref([])
 const selectProductIndex=ref(0)
 
@@ -227,25 +223,9 @@ getProductOpts()
 							<template v-for="(item,index) in new Array(6).fill('')">
 								<td>
 									正式
-									<!-- <el-tooltip 
-										effect="rk" 
-										placement="top-start" 
-										v-if="index === 0"
-										:content="tipMap.get('正式')"
-									>
-										<i class="el-icon-info"/>
-									</el-tooltip> -->
 								</td>
 								<td>
 									试用
-								<!-- <el-tooltip 
-									effect="dark" 
-									placement="top-start" 
-									v-if="index === 0"
-									:content="tipMap.get('试用')"
-								>
-									<i class="el-icon-info"/>
-								</el-tooltip> -->
 								</td>
 								<td>
 									合计

+ 468 - 0
src/views/dataReport_manage/statistic/todoTask.vue

@@ -0,0 +1,468 @@
+<script setup>
+import { ref,computed,nextTick } from "vue";
+import { useRouter} from 'vue-router';
+import _ from 'lodash'
+import DatePicker from 'vue-datepicker-next';
+import { InfoFilled,ArrowDown,ArrowUp } from '@element-plus/icons-vue'
+
+import { dataMainInterface } from '@/api/api.js';
+import {dataReportStatisticHook} from './hook'
+
+const $router = useRouter()
+
+const productionTabs=[
+	{
+		label:'FICC',
+		key:1
+	},{
+		label:'权益',
+		key:2
+	}
+]
+const default_productionTab=ref('FICC')
+const activeTab=ref(1)
+const tbodyShow=ref(false)
+const DoingExpiredAllNum=ref(0)
+const DoingAllNum=ref(0) //进行中的总合计数量
+const FinishAllNum=ref(0)
+
+const ProductId = computed(()=>{
+	if(['admin'].includes(Role.value)){
+		if(localStorage.getItem("todoStatisicSection")){
+			activeTab.value = Number(localStorage.getItem("todoStatisicSection"))
+			default_productionTab.value=productionTabs[activeTab.value-1].label
+			localStorage.removeItem("todoStatisicSection")
+		}
+		return activeTab.value
+	}else if(Role.value.includes('ficc')){
+		return 1
+	}else if(Role.value.includes('rai')){
+		return 2
+	}
+})
+const contractTableThead = computed(()=>{
+	if(['周度统计表','月度统计表'].includes(default_tab.value)){
+		return tableTheadColumns.value
+	}
+	return  ['新建To Do','完成To Do']
+})
+
+/* 获取表格数据 */
+const getTableData=()=>{
+	dataLoading.value = false;
+	dataMainInterface.todoStatistic({
+		DataType: default_tab.value === '周度统计表' ? 'week' : default_tab.value === '月度统计表' ? 'month' : 'time_interval',
+		ProductId:ProductId.value,
+		StartDate: select_date.value ? select_date.value[0] : '',
+		EndDate: select_date.value ? select_date.value[1] : '',
+	}).then(res => {
+		const { Data,Ret } = res;
+		if(Ret !== 200) return
+		//如果没有数据
+		if(!Data.CompanyTodoReportRecordNumList.length){
+			tbodyShow.value = false
+		}else{
+			tbodyShow.value = true
+		}
+		//总合计数据处理
+		totalGroupArr.value = filterTableData(Data.CompanyTodoReportRecordNumList);
+		DoingExpiredAllNum.value = Data.DoingExpiredAllNum
+		DoingAllNum.value = Data.DoingAllNum
+		FinishAllNum.value = Data.FinishAllNum
+		//处理数据结构
+		let data = _.cloneDeep(Data.List).sort((a,b) => b.Item.length - a.Item.length);
+		if(!['admin','ficc_admin'].includes(Role.value)) data = data.sort((a,b) => b.Item.length - a.Item.length);
+
+		data.forEach(item => {
+			if(Role.value.includes('admin')){
+				item.showDetail=false 
+			}else{
+				item.showDetail=true
+			}
+			
+			let groupDataArr = filterTableData(item.CompanyTodoReportRecordNumList,{
+				rs_name: item.Name + '合计'
+			});
+			item.subGroupArr=groupDataArr
+			
+			item.Item && item.Item.forEach(sub_item => {
+				let dataArr = filterTableData(sub_item.CompanyTodoReportRecordNumList ,{
+					rs_name : sub_item.Name,
+
+				})
+				sub_item.dataArr=dataArr
+			})
+		})
+
+		datalist.value = data;
+		nextTick(() => {
+			dataLoading.value = true;
+		})
+	})
+}
+
+/* 进入列表 */
+const goList=({ ids, key, rs_name, value },index, parent,sub_index= "")=>{
+	if(!parent.length || !value) return
+	if(sub_index && (!value[sub_index] || !parent.length)) return
+
+	let column_title = getColumnTitle(index);
+
+	let title =  encodeURIComponent(`${column_title}/${rs_name}/${key}`);
+
+	//console.log(`${column_title}/${rs_name}/${key}`)
+	//console.log('sub_index',sub_index,'ids',ids)
+	if(['admin'].includes(Role.value)){
+		localStorage.setItem('todoStatisicSection',activeTab.value)
+	}
+	const {href}=$router.resolve({
+		path: 'todoTaskList',
+		query: {
+			ids: sub_index !== '' ? encodeURIComponent(ids[sub_index]) : encodeURIComponent(ids),
+			title
+		}
+	})
+	window.open(href,'_blank')
+}
+/* 点击销售员/未完成/进行中 进入列表 */
+const goList2=(type,data)=>{
+	let routerINS=null
+	if(['admin'].includes(Role.value)){
+		localStorage.setItem('todoStatisicSection',activeTab.value)
+	}
+	if(type==='name'){
+		routerINS=$router.resolve({
+			path: 'customList',
+			query: {
+				adminId:data.AdminId
+			}
+		})
+		window.open(routerINS.href,'_blank')
+	}else if(type === 'num'){
+		if(data.DoingExpiredNum===0) return
+		routerINS=$router.resolve({
+			path: 'undoneTaskList',
+			query: {
+				ids: data.DoingExpiredCompanyIds,
+				title:`${data.Name}/未完成`
+			}
+		})
+		window.open(routerINS.href,'_blank')
+	}else{
+		console.log(type,data);
+		if(data.DoingNum===0) return
+		routerINS=$router.resolve({
+			path: 'doingTaskList',
+			query: {
+				ids: data.DoingCompanyIds,
+				title:`${data.Name}/进行中`
+			}
+		})
+		window.open(routerINS.href,'_blank')
+	}
+}
+/* 获取数据对应表头 */
+const getColumnTitle=(index)=>{
+	let title = '';
+
+	if(['周度统计表','月度统计表'].includes(default_tab.value)) {
+		title = [2,3].includes(index) 
+		? tableTheadColumns.value[0] 
+		: [4,5].includes(index) 
+		? tableTheadColumns.value[1] 
+		: [6,7].includes(index) 
+		? tableTheadColumns.value[2] 
+		: [8,9].includes(index) 
+		? tableTheadColumns.value[3]
+		: [10,11].includes(index) 
+		? tableTheadColumns.value[4]
+		: [12,13].includes(index) 
+		? tableTheadColumns.value[5] 
+		: '';
+	} else {
+		title = default_tab.value || `${select_date.value[0]}~${select_date.value[1]}`;
+	}
+	
+	return title
+}
+const changeProdTabHandle=(tab)=>{
+	if(tab.label=== default_productionTab.value) return
+	default_productionTab.value = tab.label
+	activeTab.value = tab.key
+	getTableData();
+}
+
+//重写一下这个方法
+const filterTableData=(data,other_param={})=>{
+	let list = data.map(item => ([
+		{
+			key: '新建To Do',
+			value: item.AddMap,
+			ids: item.AddIdMap,
+			...other_param
+		},
+		{
+			key: '完成To Do',
+			value: item.ApproveMap,
+			ids: item.ApproveIdMap,
+			...other_param
+		}
+	]))
+	
+	return list.flat(Infinity);
+}
+
+const HOOK = dataReportStatisticHook({getTableData})
+const {dataLoading,default_tab,select_date,totalGroupArr,datalist,tableTheadColumns,staticTabs}=HOOK.datas
+const {Role}=HOOK.computeds
+const {dateChange,changeTabHandle}=HOOK.functions
+
+getTableData();
+
+</script>
+
+<template>
+	<div class="statistic-container">
+		<ul class="custom-tab-box" v-if="Role==='admin'">
+			<li v-for="tab in productionTabs" :key="tab.key" class="custom-tab" :class="{activeTab: tab.label=== default_productionTab}" @click="changeProdTabHandle(tab)">{{ tab.label }}</li>
+		</ul>
+		<div class="frequency-cont">
+			<ul class="frequency-ul">
+				<li v-for="tab in staticTabs" :key="tab" :class="{act: tab=== default_tab}" @click="changeTabHandle(tab)">{{ tab }}</li>
+			</ul>
+			<date-picker
+			v-model:value="select_date"
+			type="date" 
+			range
+			value-type="format"
+			:clearable="false"
+			@change="dateChange"
+			placeholder="请选择统计时间"/>
+    </div>
+		<div class="table-cont" v-show="dataLoading">
+			<div class="table-body-wrapper">
+				<table v-if="tbodyShow" >
+					<thead>
+						<tr>
+							<td rowspan="2" class="thead-rs" v-if="Role.includes('admin')">
+								<div class="thead-rs-div">组别</div>
+							</td>
+							<td rowspan="2" class="thead-rs">
+								<div class="thead-rs-div">销售</div>
+							</td>
+							<td rowspan="2" class="thead-rs">
+								<div class="thead-rs-finish">
+									未完成
+									<el-tooltip 
+										effect="dark" 
+										placement="top-start"
+										content="截止日期小于等于今天的未完成To Do任务统计"
+									>
+										<el-icon :size="14" style="vertical-align: text-top;"><InfoFilled /></el-icon>
+									</el-tooltip>
+								</div>	
+							</td>
+							<td rowspan="2" class="thead-rs">
+								<div class="thead-rs-finish">
+									进行中
+									<el-tooltip 
+										effect="dark" 
+										placement="top-start"
+										content="进行中且未到截止日期的To Do任务统计"
+									>
+										<el-icon :size="14" style="vertical-align: text-top;"><InfoFilled /></el-icon>
+									</el-tooltip>
+								</div>	
+							</td>
+							<td rowspan="2" class="thead-rs">
+								<div class="thead-rs-finish">
+									累计完成
+									<el-tooltip 
+										effect="dark" 
+										placement="top-start"
+										content="该销售累计完成To Do任务数量"
+									>
+										<el-icon :size="14" style="vertical-align: text-top;"><InfoFilled /></el-icon>
+									</el-tooltip>
+								</div>	
+							</td>
+							<td
+								:colspan="['周度统计表','月度统计表'].includes(default_tab) ? 2 : 1"
+								v-for="item in contractTableThead"
+								:key="item" 
+								class="head-column"
+							>
+								{{item}}
+							</td>	
+						</tr>
+						<tr v-if="['周度统计表','月度统计表'].includes(default_tab)">
+							<template v-for="(item,index) in new Array(6).fill('')">
+								<td>
+									<div style="display:inline-block;">
+										新建To Do
+									</div>
+								</td>
+								<td>
+									<div style="display:inline-block;">
+										完成To Do
+									</div>
+								</td>
+							</template>
+						</tr>
+					</thead>
+					<tbody v-for="item in datalist" :key="item.Name">
+							<tr v-if="Role.includes('admin')">
+								<td colspan="2" @click="item.showDetail=!item.showDetail">{{item.Name}}合计
+									<el-icon :size="14" style="vertical-align: text-top;" v-if="item.Item.length">
+										<ArrowUp v-show="item.showDetail" />
+										<ArrowDown v-show="!item.showDetail" />
+									</el-icon>
+								</td>
+								<td>{{item.DoingExpiredGroupNum}}</td>
+								<td>{{item.DoingNum}}</td>
+								<td>{{item.FinishNum}}</td>
+								<td 
+									v-for="(group_data,group_data_key) in item.subGroupArr" 
+									:key="group_data_key"
+									:class="{link: item.Item.length}"
+								>
+
+									<span 
+										@click="goList(group_data,group_data_key,item.Item)" 
+										v-if="Object.prototype.toString.call(group_data.value) === '[object Number]'"
+									>
+										{{ group_data.value !== 0 ? group_data.value : '' }}
+									</span>
+
+									<span 
+										v-else 
+										v-for="(sub_data_value,sub_index) in group_data.value" 
+										@click="goList(group_data,group_data_key,item.Item,sub_index)" 
+										:key="sub_index" 
+										:style=" sub_data_value ? '' : 'color:#666'"
+									>
+										{{sub_data_value}} 
+										<span style="color:#666">{{ sub_index === group_data.value.length - 1 ? '' : '/' }}</span>
+									</span>
+								</td>
+							</tr>
+							<template v-if="item.Item.length">
+								<!-- List[0] -->
+								<tr v-if="Role.includes('admin')" v-show="item.showDetail">
+									<td :rowspan="item.Item.length+1" class="thead-rs">
+										<div class="thead-rs-div">{{item.Name}}</div>
+									</td>
+								</tr>
+								<!-- List[0].Item[0] -->
+								<tr v-for="rs in item.Item" :key="rs.AdminId" v-show="item.showDetail">
+									<td class="thead-rs" :class="[{link: item.Item.length}]">
+										<!-- {{rs.Name}} -->
+										<div class="thead-rs-div" @click="goList2('name',rs)" style="cursor:pointer;">{{rs.Name}}</div>
+									</td>
+									<!-- 未完成列 -->
+									<td class="thead-rs" 
+										:style="rs.DoingExpiredNum?'cursor: pointer':''"
+										:class="[{link: item.Item.length&&rs.DoingExpiredNum>0}]" @click="goList2('num',rs)">
+										<div class="thead-rs-finish">{{rs.DoingExpiredNum}}</div>
+									</td>
+									<!-- 进行中列 -->
+									<td class="thead-rs" 
+										:style="rs.DoingNum?'cursor: pointer':''"
+										:class="[{link: item.Item.length&&rs.DoingNum>0}]" @click="goList2('doingNum',rs)">
+										<div class="thead-rs-finish">{{rs.DoingNum}}</div>
+									</td>
+									<!-- 累计完成列 -->
+									<td class="thead-rs" >
+										<div class="thead-rs-finish">{{rs.FinishNum}}</div>
+									</td>
+									<td 
+										:class="['data-cell',{link: item.Item.length}]" 
+										v-for="(data,data_key) in rs.dataArr" 
+										:key="data_key"
+									>
+										
+										<span 
+											style="display:inline-block;"
+											@click="goList(data,data_key,item.Item)" 
+											v-if="Object.prototype.toString.call(data.value) === '[object Number]'"
+										>
+											{{ data.value !== 0 ? data.value : '' }}
+										</span>
+
+										<span 
+											style="display:inline-block;"
+											v-else 
+											v-for="(sub_data_value,sub_index) in data.value" 
+											:key="sub_index" 
+											:style=" sub_data_value ? '' : 'color:#666'" 
+											@click="goList(data,data_key,item.Item,sub_index)"
+										>
+											{{sub_data_value}} 	
+											<span style="color:#666">{{ sub_index === data.value.length - 1 ? '' : '/' }}</span>
+										</span>
+									</td>
+								</tr>
+							</template>	
+					</tbody>
+
+					<tfoot>
+						<tr v-if="Role.includes('admin')">
+							<td colspan="2">{{ProductId===1?'ficc':'权益'}}总合计</td>
+							<td>{{DoingExpiredAllNum}}</td>
+							<td>{{DoingAllNum}}</td>
+							<td>{{FinishAllNum}}</td>
+							<td v-for="(total_data,total_data_key) in totalGroupArr" :key="total_data_key">
+
+								<span v-if="Object.prototype.toString.call(total_data.value) === '[object Number]'">
+									{{ total_data.value !== 0 ? total_data.value : '' }}
+								</span>
+
+								<span v-else v-for="(sub_data_value,sub_index) in total_data.value" :key="sub_index">
+									{{sub_data_value}} 
+									<span>{{ sub_index === total_data.value.length - 1 ? '' : '/' }}</span>
+								</span>
+							</td>
+						</tr>
+					</tfoot>
+				</table>
+				<div style="line-height:44px;margin:60px 0;color:#999;text-align:center;" v-else>
+					<img src="~@/assets/img/cus_m/nodata.png" alt="" style="display:block;width:160px;height:128px;margin: auto;">
+					<span>暂无数据</span>
+				</div>
+			</div>	
+		</div>
+	</div>
+</template>
+
+<style lang='scss' scoped>
+*{ box-sizing: border-box;}
+@import './index.scss';
+.table-body-wrapper{
+	/* width: max-content; */
+	/* overflow-x: hidden; */
+	max-height: calc(100vh - 310px) !important;
+	// margin-right: -6px !important;
+}
+//保证小屏时td的宽度
+// .table-cont{
+	// width: 100%;
+	// overflow-x: scroll;
+	// .thead-rs{
+	// 	&-div{
+	// 		width:100px;
+	// 		display:inline-block;
+	// 	}
+	// 	&-finish{
+	// 		width:90px;
+	// 		display:inline-block;
+	// 	}
+		
+	// }
+	/* .data-cell{
+		span{
+			width:80px !important;
+			display: inline-block;
+		}
+	} */
+// }
+</style>

+ 671 - 0
src/views/dataReport_manage/statistic/todoTaskList.vue

@@ -0,0 +1,671 @@
+<script>
+import { defineComponent } from "vue";
+
+export default defineComponent({
+	/* 页面进入前是否清除参数 */
+  beforeRouteEnter(to, from, next) {
+		if(from.path!='/customDetail') {
+			sessionStorage.removeItem('newCustomBack')
+		}
+		next()
+  },
+});
+</script>
+
+<script setup>
+import { ref,reactive } from "vue";
+import {onBeforeRouteLeave,useRouter,useRoute} from "vue-router"
+import { ElMessage } from 'element-plus'
+import moment from 'moment'
+import { InfoFilled } from '@element-plus/icons-vue'
+
+
+import { dataMainInterface,customInterence} from '@/api/api.js';
+import mPage from '@/components/mPage.vue';
+import ModifyToDoDialog from '@/views/custom_manage/components/ModifyToDoDialog.vue'
+import CheckToDoDialog from '@/views/custom_manage/components/CheckToDoDialog.vue'
+import HistoryToDoDialog from '@/views/custom_manage/components/HistoryToDoDialog.vue'
+import AccumulativeFrequencyDlg from '@/views/custom_manage/components/accumulativeFrequencyDlg.vue'
+import { formatTime } from '@/utils/date'
+
+const $router = useRouter()
+const $route = useRoute()
+
+const title=ref('')
+const ids=ref('')//公司id
+const tableData=ref([])
+const tableColumns=[
+	{
+		label: '客户名称',
+		key: 'CompanyName',
+		minwidthsty: '150px',
+	},
+	{
+		label:'TO-DO',
+		key:'todo',
+		minwidthsty: '100px',
+		maxwidthsty: '130px'
+	},
+	{
+					label: "DL",
+					key: "Deadline",
+					minwidthsty: "100px",
+		maxwidthsty: '130px'
+			},
+	{
+		label: '类型',
+		key: 'CompanyType',
+		widthsty: '80px',
+	},
+	{
+		label: '所属行业',
+		key: 'IndustryName',
+		widthsty: '110px',
+	},
+	{
+		label: '客户地址',
+		key: 'City',
+		widthsty: '110px',
+	},
+	{
+		label: '销售',
+		key: 'SellerName',
+		widthsty: '110px',
+	},
+	{
+		label: '状态',
+		key: 'Status',
+		widthsty: '110px',
+	},
+	{
+		label: '阅读',
+		key: 'viewTotal',
+		widthsty: '110px',
+	},
+	{
+		label: '路演',
+		key: 'RoadShowTotal',
+		widthsty: '110px',
+	},
+	{
+		label: '最近阅读',
+		key: 'LastViewTime',
+		widthsty: '160px',
+	},
+	{
+		label: '服务期限',
+		key: 'EndDate',
+		minwidthsty: '100px',
+	},
+	{
+		label: '到期',
+		key: 'ExpireDay',
+		widthsty: '105px'
+	}
+]
+let sort_obj=reactive({
+	param: '',
+	type: '',
+	SortByTodo:false,
+})//排序字段
+const isShowloadding=ref(false)
+const total=ref(0)
+const page_no=ref(1)
+const pageSize=ref(0)
+const todoBtnType=[
+	{
+		label:'新建',
+		key:'add'
+	},
+	{
+		label:'编辑',
+		key:'edit'
+	},
+	{
+		label:'完成',
+		key:'confirm'
+	},
+	{
+		label:'历史',
+		key:'history'
+	}
+]//销售To-Do的按钮
+const todoInfo=ref(null)//
+const isModifyDialogShow=ref(false)//是否显示销售To-Do新建/编辑的弹窗
+const ischeckToDoDialogShow=ref(false)//是否显示销售To-Do的确认完成弹窗
+const isHistoryDialogShow=ref(false)//是否显示销售To-Do的历史记录弹窗
+const modifyToDoType=ref('add')//新增or编辑
+const accumulativeFrequencyDlg=ref(false)//路演业阅读的弹框
+const accumulativeFrequencyItem=ref(null)
+const trialTags=[ 
+	{
+		value:0
+	},
+	{
+		label: '未分类',
+		value: 1
+	},
+	{
+		label: '推进',
+		value: 2
+	},
+	{
+		label: '跟踪',
+		value: 3
+	},
+	{
+		label: '预备',
+		value: 4
+	}
+]// 试用的标签状态
+
+/* 获取数据	 */
+const getTableData=()=>{
+	isShowloadding.value = true;
+	const { param, type,SortByTodo } = sort_obj;
+
+	dataMainInterface.newcustomList({
+		PageSize: pageSize.value,
+		CurrentIndex: page_no.value,
+		SortParam: param,
+		SortType: type,
+		SortByTodo:SortByTodo,
+		CompanyIds: ids.value
+	}).then(res => {
+		const { Ret,Data } = res;
+		if(Ret !== 200) return
+		
+		total.value = res.Data.Paging.Totals;
+		tableData.value = Data.List || [];
+		isShowloadding.value = false;
+	})
+}
+
+/* 切换页码 */
+const handleCurrentChange=(page)=> {
+	page_no.value = page;
+	getTableData();
+}
+
+/* 排序变化时 */
+const sortChangeHandle=({ prop,order })=> {
+	console.log(prop,order)
+	page_no.value = 1;
+
+	const typeMap = {
+		'RoadShowTotal': 'roadShowTotal',
+		'LastViewTime': 'viewTime',
+		'ExpireDay': 'expireDay',
+		'Deadline': "deadline",
+	}
+	if(prop==='todo'){
+		const {SortByTodo} = sort_obj
+		sort_obj={
+			type:'',
+			param:'',
+			SortByTodo:!SortByTodo
+		}
+	}else if (prop === "Deadline") {
+		const { param } = sort_obj;
+		sort_obj = {
+			type: param === typeMap[prop] ? "" : "asc",
+			param: param === typeMap[prop] ? "" : typeMap[prop],
+			SortByTodo:false,
+		};
+	}else{
+		sort_obj = {
+			type: order === 'ascending' ? 'asc' : order === 'descending' ? 'desc' : '',
+			param: typeMap[prop] || prop,
+			SortByTodo:false
+		}	
+	}
+	
+	getTableData();
+}
+
+/* 前往详情页 */
+const goDetail=({CompanyId})=>{
+	$router.push({
+		path:'/customDetail',
+		query:{
+			id: CompanyId,
+		}
+	})
+}
+
+//销售To-Do的按钮,根据每一行的信息决定显示哪些按钮,必须返回一个数组
+const getToDoBtn=(row)=>{
+	let todoBtn = []
+	//该字段为true说明已有任务,隐藏新建按钮
+	if(row.TodoStatus){
+		todoBtn = todoBtnType.filter(i=>i.key!=='add')
+	}else{
+		todoBtn =  todoBtnType.filter(i=>i.key!=='edit')
+	}
+	todoBtn = todoBtn.filter(i=>i.key!=='confirm')
+	//该字段为false说明操作人有权限审核,显示确认完成按钮
+	if(!row.HiddenConfirm){	
+		let temp = {label:'完成',key:'confirm'}
+		if(row.CanConfirm){
+			temp.disable=false
+			temp.style=''
+		}else{
+			temp.disable=true
+			temp.style='color:#DCDFE6;'
+		}
+		todoBtn.splice(1,todoBtn.length-2,temp)
+	}
+	if(row.HiddenCreate){
+		todoBtn.shift()
+	}
+	return todoBtn
+}
+
+//销售To-Do的hint颜色
+const getTodoBtnColor=(colorName)=>{
+	if(colorName==='red'){
+		return '#D1433A'
+	}else if(colorName==='green'){
+		return '#61D13A'
+	}else{
+		return '#999999'
+	}
+}
+
+//销售To-Do的点击事件
+const handleToDoBtnClick=(row,type)=>{
+	todoInfo.value = row
+	//打开新建/编辑弹窗
+	if(['add','edit'].includes(type)){
+		modifyToDoType.value = type
+		isModifyDialogShow.value = true
+		ischeckToDoDialogShow.value = false
+		isHistoryDialogShow.value=false
+	}
+	//打开审核记录弹窗
+	if(type==='confirm'){
+		ischeckToDoDialogShow.value=true
+		isModifyDialogShow.value=false
+		isHistoryDialogShow.value=false
+	}
+	//打开历史记录弹窗
+	if(type==='history'){
+		isHistoryDialogShow.value=true
+		isModifyDialogShow.value=false
+		ischeckToDoDialogShow.value=false
+	}
+}
+
+//处理销售ToDo
+//新建\编辑弹窗的确认事件
+const handleModifyToDo=async({type,Description,ProductId,CompanyId,Id,EndTime})=>{
+	//console.log(type,Description,ProductId,CompanyId)
+	let res
+	if(type==='add'){
+		res = await customInterence.addToDoItem({Description,ProductId,CompanyId,EndTime})
+	}else{
+		res = await customInterence.editToDoItem({Description,Id})
+	}
+	if(res.Ret===200){
+			isModifyDialogShow.value=false
+			ElMessage.success(`${type==='add'?'提交':'保存'}成功`);
+			getTableData()
+		}			
+}
+const handleApprove=({Id})=>{
+	customInterence.checkToDo({Id}).then(res=>{
+		if(res.Ret===200){
+			ischeckToDoDialogShow.value=false
+			ElMessage.success(`审核完成`);
+			getTableData()
+		}
+	})
+}
+const accumulativeFrequencyClick=(item)=>{
+	accumulativeFrequencyDlg.value = true
+	accumulativeFrequencyItem.value = item
+}
+
+const init=()=>{
+	if($route.query.ids) {
+		ids.value = decodeURIComponent($route.query.ids);
+		title.value = decodeURIComponent($route.query.title);
+		let backData = {
+					page_no: page_no.value,
+					ids: ids.value,
+					title: title.value,
+				};
+		localStorage.setItem("newCustomBack", JSON.stringify(backData));
+	}
+
+	if(sessionStorage.getItem('newCustomBack')) {
+		let backParams = JSON.parse(sessionStorage.getItem('newCustomBack'));
+		page_no.value = backParams.page_no;
+		ids.value = backParams.ids;
+		title.value = backParams.title;
+	}else if(localStorage.getItem("newCustomBack")){
+				let backParams = JSON.parse(localStorage.getItem("newCustomBack"));
+				page_no.value = backParams.page_no;
+				ids.value = backParams.ids;
+				title.value = backParams.title;
+		}
+	ids.value && getTableData();
+}
+
+/* 页面跳转前记录参数 */
+onBeforeRouteLeave((to, form, next) =>{
+	let backData = {
+		page_no: page_no.value,
+		ids: ids.value,
+		title: title.value
+	}
+	sessionStorage.setItem('newCustomBack',JSON.stringify(backData))
+	localStorage.removeItem("newCustomBack");
+	next()
+})
+
+init()
+
+</script>
+
+<template>
+	<div class="list-container">
+		<span class="tag">{{title}}</span>
+		<el-table
+			:data="tableData"
+			@sort-change="sortChangeHandle"
+			border
+			v-loading="isShowloadding"
+			class="table-cont"
+		>
+			<el-table-column
+				v-for="item in tableColumns"
+				:key="item.label"
+				:label="item.label"
+				:width="item.widthsty"
+				:min-width="item.minwidthsty"
+				:max-width="item.maxwidthsty"
+				:prop="item.key"
+				align="center"
+				:sortable="['viewTotal','RoadShowTotal','LastViewTime','ExpireDay','createTime','Deadline'].includes(item.key) ? 'custom' : false"
+			>
+				<!-- thead -->
+				<template #header>
+					<template v-if="['todo','Deadline'].includes(item.key)">
+						<div class="todolabel" :class="{sort:sort_obj.SortByTodo}" style="display:inline-block;" v-if="item.key==='todo'">
+							<span>To-Do</span>
+						</div>
+						<div class="todolabel" :class="{sort:sort_obj.param==='deadline'}" style="display:inline-block;" v-if="item.key==='Deadline'">
+							<span>DL</span>
+							<el-tooltip effect="dark" placement="top-start" content="未完成To Do任务的截止日期-当前日期">
+								<el-icon :size="14" style="vertical-align: text-top;margin-left: 4px;"><InfoFilled /></el-icon>
+							</el-tooltip>
+						</div>	
+						
+					</template>
+					<template v-else>
+						<span>{{item.label}}</span>
+					</template>
+				</template>	
+				<!-- tbody -->
+				<template #default="{row}">
+					<span v-if="item.key === 'CompanyName'" @click="goDetail(row)" 
+					class="customName editsty" :class="{'isShared':row.IsShared,'status-noallow':!row.IsShow}"
+					:style="row.IsSuspend===1?'color:#bbb;':''"
+					>
+						{{row.CompanyName}}
+					</span>
+
+					<template v-else-if="item.key === 'CompanyType'">
+						<template v-if="row.CompanyType.indexOf('/')!==-1">
+							<span :style="row.IsSuspend===1?'color:#bbb;':''"
+								  :class="{'status-noallow':!row.IsShow}"
+							>{{row.CompanyType.split('/')[0]}}</span>
+							<span v-if="row.FiccPackageType"  class="ficc-package">{{row.FiccPackageType == 1 ? '大套餐': '小套餐'}}</span>
+							<br/>
+							<span :style="row.IsSuspend===1?'color:#bbb':''"
+								  :class="{'status-noallow':!row.IsShow}"
+							>{{row.CompanyType.split('/')[1]}}</span>
+						</template>
+						<template v-else>
+							<span :style="row.IsSuspend===1?'color:#bbb':''" :class="{'status-noallow':!row.IsShow}">{{row.CompanyType}}</span>
+							<span v-if="row.FiccPackageType&&row.CompanyType.includes('ficc')"  class="ficc-package">{{row.FiccPackageType == 1 ? '大套餐': '小套餐'}}</span>
+						</template>
+					</template>
+					
+					<template v-else-if="item.key==='IndustryName'">
+						<p :style="row.IsSuspend===1?'color:#bbb':''" :class="{'status-noallow':!row.IsShow}" v-for="item in row.IndustryName.split('/')" :key="item">{{item}}</p>
+					</template>
+
+					<template v-else-if="item.key==='SellerName'">
+						<p :style="row.IsSuspend===1?'color:#bbb':''" :class="{'status-noallow':!row.IsShow}" v-for="item in row.SellerName.split('/')" :key="item">{{item}}</p>
+					</template>
+
+					<span v-else-if="item.key === 'City'" :class="{'status-noallow':!row.IsShow}">
+						{{row.Province}}<br/>{{row.City}}
+					</span>
+
+					<template v-else-if="item.key === 'Status'">
+						<p style="margin:3px 0;" :style="row.IsSuspend===1?'color:#bbb':''" :class="{'status-noallow':!row.IsShow}" v-for="(item,index) in row.Status.split('/')" :key="item">
+							{{item}}
+							<template v-if="item==='试用'">
+								<span class="status-try">{{row.TryStageSlice[index]?trialTags[row.TryStageSlice[index].TryStage].label:trialTags[1].label}}</span>
+							</template>
+							
+						</p>
+					</template>
+
+					<span v-else-if="item.key === 'viewTotal'">
+						<el-tooltip :disabled="row.IsSuspend===1 || (row.FiccView+row.RaiView)===0||!row.IsShow">
+							<template #content><p v-if="row.FiccView">FICC报告阅读次数:{{row.FiccView}}</p><p v-if="row.RaiView">权益报告阅读次数:{{row.RaiView}}</p></template>
+							<span :style="row.IsSuspend===1?'color:#bbb':'color:#409EFF;cursor:pointer;'" :class="{'status-noallow':!row.IsShow}">
+								{{row.AllViewTotal}}
+							</span>
+						</el-tooltip>
+					</span>
+
+					<span v-else-if="item.key === 'LastViewTime'" :class="{'status-noallow':!row.IsShow}">
+						{{
+							row.FiccLastViewTime
+							? `ficc: ${moment(row.FiccLastViewTime).format('YYYY.MM.DD')}`
+							: row.RaiLastViewTime
+							? `权益: ${moment(row.RaiLastViewTime).format('YYYY.MM.DD')}`
+							: "--"
+						}}
+					</span>
+					<span v-else-if="item.key==='RoadShowTotal'">	
+						<span :style="row.IsSuspend===1?'color:#bbb':''" :class="{'status-noallow':!row.IsShow}" @click="accumulativeFrequencyClick(row)" class="editsty" v-if="row.RoadShowTotal > 0">{{row.RoadShowTotal}}</span>
+						<span  :style="row.IsSuspend===1?'color:#bbb':''" :class="{'status-noallow':!row.IsShow}" v-else>{{row.RoadShowTotal}}</span>
+					</span>
+
+					<span v-else-if="item.key === 'EndDate'" :class="{'status-noallow':!row.IsShow}">
+						<!-- 正常的时间显示 -->
+						<template v-if="row.StartDate.indexOf('/')==-1">
+							<template v-if="row.Status=='流失'">
+								创建时间:{{formatTime(row.CreatedTime)}}
+							</template>
+							<template v-else-if="row.Status == '永续'">
+								永久
+							</template>
+							<template v-else-if="row.Status == '冻结'">
+								{{row.FreezeStartDate}}~{{row.FreezeEndDate}}
+							</template>
+							<template v-else>
+								{{row.StartDate}}~{{row.EndDate}}
+							</template>
+						</template>
+						<!-- 公用客户的时间显示 -->
+						<template v-else>
+							{{row.StartDate.substr(0,10)}}~{{row.EndDate.substr(0,10)}}/{{row.StartDate.substr(11)}}~{{row.EndDate.substr(11)}}
+						</template>
+					</span>
+					<div class="todo-btn" v-else-if="item.key==='todo'">
+						<p class="hint" :style="`background-color:${getTodoBtnColor(row.TodoButtonColor)}`"></p>
+						<div class="btnwrap">
+							<span class="item" :class="{'status-noallow':!row.IsShow}"
+							v-for="item in getToDoBtn(row)" 
+							:key="item.key"
+							:style="item.style"
+							@click="!item.disable&&handleToDoBtnClick(row,item.key)"
+							>{{item.label}}</span>
+						</div>
+					</div>
+					<span v-else-if="item.key==='Deadline'" :class="{'status-noallow':!row.IsShow}">{{row[item.key]||'--'}}</span>
+					<span :class="{'status-noallow':!row.IsShow}" v-else>{{ row[item.key]}}</span>
+				</template>
+			</el-table-column>
+			<el-table-column
+				:prop="'createTime'"
+				:label=" '创建时间'"
+				sortable="custom"
+				align="center" 
+				min-width="105"
+			>
+				<template #default="{row}">
+					<span :class="{'status-noallow':!row.IsShow}">
+						{{moment(row.CreatedTime).format('YYYY.MM.DD')}}
+					</span> 
+				</template>
+			</el-table-column>
+			<template #empty>
+				<div style="line-height:44px;margin:60px 0;color:#999;">
+					<img src="~@/assets/img/cus_m/nodata.png" alt="" style="display:block;width:160px;height:128px;margin: auto;">
+					<span>暂无数据</span>
+				</div>
+			</template>
+		</el-table>
+		<div class="bottom">
+			<m-page
+				:total="total"
+				:page_no="page_no"
+				@handleCurrentChange="handleCurrentChange"
+			/>
+		</div>
+		<!-- 销售To Do的弹窗 -->
+		<Modify-to-do-dialog 
+			:todoInfo="todoInfo" 
+			:type="modifyToDoType"
+			v-model:isModifyDialogShow="isModifyDialogShow"
+			@modify="handleModifyToDo"
+		></Modify-to-do-dialog>
+		<check-to-do-dialog 
+			:todoInfo="todoInfo" 
+			v-model:ischeckToDoDialogShow="ischeckToDoDialogShow"
+			@check="handleApprove"
+		></check-to-do-dialog>
+		<history-to-do-dialog :todoInfo="todoInfo" v-model:isHistoryDialogShow="isHistoryDialogShow"></history-to-do-dialog>
+		<!-- 路演的弹窗 -->
+		<accumulative-frequency-dlg v-model:accumulativeFrequencyDlg="accumulativeFrequencyDlg" v-model:accumulativeFrequencyItem="accumulativeFrequencyItem" />
+	</div>
+</template>
+
+<style lang="scss">
+.todolabel{
+	&+span.caret-wrapper{
+		.sort-caret.ascending{
+			border-bottom-color: #C0C4CC;
+		}
+		.sort-caret.descending{
+			border-top-color: #C0C4CC
+		}
+	}
+}
+.todolabel.sort{
+	&+span.caret-wrapper{
+		.sort-caret.ascending{
+			border-bottom-color: #409EFF;
+		}
+	}
+}
+</style>
+<style lang="scss" scoped>
+*{ box-sizing: border-box; }
+.list-container {
+	min-height: calc(100vh - 120px);
+	background-color: #fff;
+	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
+	border-radius: 4px;
+	padding: 30px 20px;
+	.isShared::after{
+		content: '共享';
+		font-size: 12px;
+		// padding: 0px 0px 0px 2px;
+		width: 40px;
+		color: #3994fb;
+		background-color: #dcecfc;
+		position: absolute;
+		left: 0;
+		bottom: 0;
+		border-top-right-radius: 5px;
+	}
+	.ficc-package {
+		display: inline-block;
+		font-size: 12px;
+		padding:0 5px;
+		border-radius: 5px;
+		color: #3994fb;
+		background-color: #dcecfc;
+	}
+	.status-noallow{
+		cursor: not-allowed !important;
+		color: #bbb !important;
+		pointer-events:none !important;
+	}
+	.status-try{
+		display: inline-block;
+		background-color: #ECF5FF;
+		border-radius: 4px;
+		color:#409EFF;
+		border: 1px solid #E4E7ED;
+		height: 24px;
+		line-height: 24px;
+		text-align: center;
+		padding:0 6px;
+	}
+	.tag {
+		padding: 10px 24px;
+		display: inline-block;
+		background: #E8F3FF;
+		color: #2D8CF0;
+		font-size: 14px;
+		border-radius: 4px;
+	}
+	.table-cont {
+		margin-top: 20px;
+		margin-bottom: 20px;
+	}
+	.todo-btn{
+		display: flex;
+		justify-content: center;
+		align-items: center;
+		padding: 0 10px;
+		.hint{
+			width: 8px;
+			height: 8px;
+			background-color: #D1433A;
+			border-radius: 50%;
+			margin-right: 10px;
+		}
+		.btnwrap{
+			display: flex;
+			align-content: space-around;
+			flex-direction: column;
+			justify-content: space-between;
+			span.item{
+				margin-right: 10px;
+				font-size: 14px;
+				color:#409EFF;
+				cursor: pointer;
+				&:last-child{
+					margin-right: none;
+				}
+			}
+		}
+		
+		
+	}
+	.bottom {
+		height: 40px;
+	}
+}
+</style>