Browse Source

联系人数据移除部分筛选

qymljy 3 months ago
parent
commit
91276da886

+ 1 - 1
src/HDrpManagement/contactData/components/statisticsOfClues.vue

@@ -143,7 +143,7 @@ export default {
               style: {
                 fontSize:'16px'
               },
-              content:this.$t('线索总数')
+              content:this.$t('联系人总数')
             },
             content: {
               offsetY: 4,

+ 1 - 21
src/HDrpManagement/contactData/components/statisticsOfCustomer.vue

@@ -2,26 +2,6 @@
   <div>
     <dataTemPlate ref="dataTemPlateRef" :isTitle="true" title="联系人关联客户情况统计" @list="listData" id="statisticsOfCustomerFull">
       <template slot="operation">
-        <div class="mt-10 inline-16">
-          <label class="search__label">{{ $t("客户类型") }}:</label>
-          <el-select
-              class="inline-16"
-              v-model="paramTable.content.where.type"
-              size="small"
-              :placeholder="$t('请选择')"
-              @focus="queryType"
-              @change="selectChange"
-              clearable
-          >
-            <el-option
-                v-for="item in typesData"
-                :key="item.value"
-                :label="$t(item.value)"
-                :value="item.value"
-            >
-            </el-option>
-          </el-select>
-        </div>
         <btnSelect ref="btnSelectRef" @btnClick="btnClick" class="inline-16"  :btnTitle="['全部','本年']" dateType="本年"></btnSelect>
 <!--        <fullScreen class="inline-16"  domId="statisticsOfCustomerFull" @onFull="onFull" @backFull="backFull"  ></fullScreen>-->
       </template>
@@ -167,7 +147,7 @@ export default {
               style: {
                 fontSize:'16px'
               },
-              content:this.$t('客户总数')
+              content:this.$t('联系人总数')
             },
             content: {
               offsetY: 4,

+ 1 - 1
src/HDrpManagement/contactData/components/statisticsOfFollow.vue

@@ -145,7 +145,7 @@ export default {
               style: {
                 fontSize:'16px'
               },
-              content:this.$t('跟进总数')
+              content:this.$t('联系人总数')
             },
             content: {
               offsetY: 4,

+ 1 - 34
src/HDrpManagement/contactData/components/statisticsOfProject.vue

@@ -2,39 +2,6 @@
   <div>
     <dataTemPlate ref="dataTemPlateRef" :isTitle="true" title="联系人关联项目情况统计" @list="listData" id="statisticsOfProjectFull">
       <template slot="operation">
-        <div class="mt-10 inline-16">
-          <label class="search__label">{{ $t("项目类型") }}:</label>
-          <el-select
-              class="inline-16"
-              v-model="paramTable.content.where.projecttype"
-              size="small"
-              :placeholder="$t('请选择')"
-              @focus="queryType"
-              @change="selectChange"
-              clearable
-          >
-            <el-option
-                v-for="item in typesData"
-                :key="item.value"
-                :label="$t(item.value)"
-                :value="item.value"
-            >
-              <span style="float: left">{{ $t(item.value) }}</span>
-              <span style="float: right; color: #8492a6; font-size: 12px">{{ item.remarks?$t(item.remarks):$t('暂无描述') }}</span>
-            </el-option>
-          </el-select>
-        </div>
-        <div class="mt-10 inline-16">
-          <label  class="search__label">{{$t(`项目状态`)}}:</label>
-          <el-select class="inline-24" v-model="paramTable.content.where.status" :placeholder="$t(`请选择项目状态`)" @change="selectChange" size="small" multiple  clearable>
-            <el-option
-                v-for="item in statusTab"
-                :key="item.value"
-                :label="$t(item.label)"
-                :value="item.value">
-            </el-option>
-          </el-select>
-        </div>
         <btnSelect ref="btnSelectRef" @btnClick="btnClick" class="inline-16"  :btnTitle="['全部','本年']" dateType="本年"></btnSelect>
 <!--        <fullScreen class="inline-16"  domId="statisticsOfCustomerFull" @onFull="onFull" @backFull="backFull"  ></fullScreen>-->
       </template>
@@ -200,7 +167,7 @@ export default {
               style: {
                 fontSize:'16px'
               },
-              content:this.$t('项目总数')
+              content:this.$t('联系人总数')
             },
             content: {
               offsetY: 4,

+ 1 - 1
src/HDrpManagement/contactData/components/statisticsOfUnFollow.vue

@@ -221,7 +221,7 @@ export default {
     }
   },
   created() {
-    this.tablecols = this.tool.tabelCol(this.$route.name).contactsTable.tablecols
+    this.tablecols = this.tool.tabelCol(this.$route.name).contactsUnfollowTable.tablecols
   }
 }
 </script>