el-table 指定表格合并行与单元格,以及表头合并单元格

 

 

1:页面html

<template>
  <div class="container">
    <div class="flex-end">
      <el-button type="primary" @click="allEndBtn">批量办结</el-button>
      <el-button type="primary" @click="downLoadBtn">导出</el-button>
      <el-button type="primary" @click="printBtn">打印</el-button>
      <el-button type="primary" @click="backBtn">返回</el-button>
    </div>
    <div class="flex-center red lineH40 fontSize16">
        生成汇总签单成功,可到汇总签单数据列表查看审批情况
    </div>
    <div class="lineH30">
      <div class="flex-center fontSize18">{{tableTitle}}</div> 
      <div class="flex-center fontSize18">{{ tableName }}</div>
      <div class="flex-center fontSize12">
         填单日期:{{ tableCreatTime }}
      </div>
    </div> 
    <div class="" ref="hzqdREF">
      <div class="flex-end">编号:{{ codeNum }}</div>
      <el-table
        :data="tableData"
        :span-method="objectSpanMethod"
        border
        style="width: 100%; margin-bottom: 20px"
        :header-cell-style="headerCellStyle"
        :cell-style="{textAlign:'center'}">
        <el-table-column
          prop="label"
          label="会签项目"
          width="150">
          <template slot-scope="scope">
            <div v-if="scope.$index==3">{{ scope.row.label }}</div> 
            <div v-else>{{ scope.row.label }}</div>
          </template>
        </el-table-column>
        <el-table-column
          prop=""
          label=""
          width="60">
          <template slot-scope="scope">
            <div v-if="scope.$index==3">小写</div>
            <div v-else-if="scope.$index==4">大写</div>
            <div v-else>{{ scope.row.labelLater }}</div>
          </template>
        </el-table-column>
        <el-table-column 
          min-width="160"
          prop="labelLater"
          :label="tableObj.projectName">
          <template slot-scope="scope">
            <div v-if="scope.$index==3||scope.$index==4">
                {{ scope.row.labelLater }}
            </div>
            <div v-else>{{ scope.$index+1 }}</div>
          </template>
        </el-table-column>
        <el-table-column
          width="60"
          prop="index"
          label="序号">
          <template slot-scope="scope">
            <div v-if="scope.$index==3||scope.$index==4">
                {{ scope.$index+1 }}
            </div>
            <div class="flex" v-else>
              <div>{{ scope.row.unit }}</div> 
              <div>
                <div class="backTag " v-if="scope.row.backed==1">
                <div class="sanJiao"></div>
                <div class="backColor">有退回</div>
              </div>
            </div>
            </div>
          </template>
        </el-table-column>
        <el-table-column
          min-width="260"
          prop="unit"
          label="单位/内容">
          <template slot-scope="scope">
            <div class="flex" v-if="scope.$index==3||scope.$index==4">
              <div>{{ scope.row.unit }}</div> 
              <div>
                <div class="backTag " v-if="scope.row.backed==1">
                <div class="sanJiao"></div>
                <div class="backColor">有退回</div>
              </div>
            </div>
            </div>
            <div v-else>{{ scope.row.amount }}</div>
          </template>
        </el-table-column>
        <el-table-column
          width="120"
          prop="amount"
          label="金额">
          <template slot-scope="scope">
            <div v-if="scope.$index==3||scope.$index==4">
                {{ scope.row.amount }}
            </div>
            <div v-else></div>
          </template>
        </el-table-column>
      </el-table>
    </div>
    <div v-if="bottomTableData.length>0" ref="bottomTableREF">
      <el-table
        class="margin-B30" 
        v-loading="loading"
        :data="bottomTableData"
        :border="true"
        style="width: 100%"
        :header-cell-style="{textAlign:'center'}"
        :cell-style="{textAlign:'center'}">
        <el-table-column fixed label="处理人" width="100">
          <template slot-scope="scope">
            {{ scope.row.userName }}
          </template>
        </el-table-column>
        <el-table-column fixed label="处理单位" width="200">
          <template slot-scope="scope">
            {{ scope.row.unitName }}
          </template>
        </el-table-column>
        <el-table-column fixed label="处理时间" width="100">
          <template slot-scope="scope">
            {{ scope.row.creatTime }}
          </template>
        </el-table-column>
        <el-table-column fixed label="付款申请编号" width="160">
          <template slot-scope="scope">
            {{ scope.row.paymentCode }}
          </template>
        </el-table-column>
        <el-table-column fixed label="申请金(元)" width="130">
          <template slot-scope="scope">
            {{ scope.row.applyAmount }}
          </template>
        </el-table-column>
        <el-table-column fixed label="处理意见" min-width="240">
          <template slot-scope="scope">
            {{ scope.row.opinion }}
          </template>
        </el-table-column>
      </el-table>
    </div>
  </div>
</template>

2:js部分

<script>
import { downloadPdf, printPdf } from "@/utils/index";
import { numberToQianFenWei } from "@/utils/qianFenWei.js";
export default {
  data () {
    return {
      tableTitle:"上海申通地铁建设集团有限公司",
      tableName:"工程项目汇总签单",
      tableCreatTime:"2023年06月10日",
      codeNum:"",
      mergeObj: {}, // 用来记录需要合并行的下标
      // 表格中的列名
      tableProps: [
        'label',
        'labelLater',
        'index',
        'unit',
        'amount',
      ] ,
      tableData: [],
      tableObj:{
        projectName:"会签项目111",// 会签项目
        paymentDate:"支付日期22",// 支付日期
        allcCountersign:"会签总笔数33",// 会签总笔数
        dataList:"单据数量44",// 单据数量
        countersignAllAmount:"11111",// 会签总金额
        countersignAllAmountDX:"十一元整",// 会签总金额
        CWFZRsign:"财务负责人签字",// 财务负责人签字
        JTDSZsign:"集团董事长签字",// 集团董事长签字
      },
      loading:false,
      bottomTableData:[{}],
    };
  },
  watch:{
    "tableData":function (newVal,oldVal){
      if(newVal.length>0){
        this.getSpanArr(this.tableData);
      }
    }
  },
  created () {
    // 
    setTimeout(()=>{
      this.getData();
    },1000)
  },
  computed: {
    // 千分位元 保留两位小数
    QFWYBLLWXS(){
      return (val) => {
        if(val===null||val===""){
          return "";
        }else if(val==="0"||val===0){
          return "0.00";
        }else{
          let LiangWeiXaioShu=(val-0).toFixed(2);
          if( isNaN(LiangWeiXaioShu)){
            return "";
          }else{
            if(LiangWeiXaioShu>=0){
              return numberToQianFenWei(LiangWeiXaioShu);
            }else{
              return "-"+numberToQianFenWei(
                String(LiangWeiXaioShu).slice(1)
              );
            }
          } 
        }
      }
    }
  },
  methods:{
    // 批量办结
    allEndBtn(){},
    // 导出
    downLoadBtn(){
      downloadPdf(
        this.$refs["refsPayOrderListTable"],
        this.tableTitle + this.tableName,
        "1300px",
        this.codeNum,
        {
          textAlign: "left",
          font: "30px Vedana",
          x: 10,
          conHeight: 500,
          conWidth: 600,
        }
      );
      if(this.$refs["bottomTableREF"]){
        downloadPdf(
            this.$refs["bottomTableREF"],
            this.tableTitle + this.tableName + '意见',
            "1300px",
            this.codeNum,
            {
              textAlign: "left",
              font: "30px Vedana",
              x: 10,
              conHeight: 500,
              conWidth: 1000,
            }
        );
      }
    },
    // 打印
    printBtn(){
      if(this.bottomTableData.length > 0){
        this.$refs["bottomTableREF"].style.width =  '1530px'
        printPdf(
            [this.$refs["hzqdREF"],this.$refs["bottomTableREF"],],
            "",
            "",
            "1",
            this.codeNum,
            {
              textAlign: "left",
              font: "30px Vedana",
              x: 10,
              conHeight: 500,
              conWidth: 1000,
            }
        );
        setTimeout(() => {
          this.$refs["bottomTableREF"].style.width =  ''
        }, 500)
      } else {
        printPdf(
            [this.$refs["hzqdREF"]],
            "",
            "",
            "1",
            this.codeNum,
            {
              textAlign: "left",
              font: "30px Vedana",
              x: 10,
              conHeight: 500,
              conWidth: 1000,
            }
        );
      }
    },
    // 返回
    backBtn(){
      this.$router.go(-1);
    },
    //表格头部样式
    headerCellStyle({ row, column, rowIndex, columnIndex }){
      // 第一步:设置表头的第0列暂不操作,将地1列和第2列隐去使其消失
      if ((columnIndex == 1)) {
        return { display: "none" };
      }
      // // 第二步, 由于1、2列没有了,后续列就会贴上来(后续列往左错位问题)
      if ((rowIndex == 0) & (columnIndex == 0)) {
        // 解决后续列错位问题,就是将隐去的第1列的位置再补上,通过第0列来补
        this.$nextTick(() => {
          /*原来第0列只占据一个位置,现在要去占据两个位置。
            即占据两列,即设置为横向两个单元格
          */ 
        document.querySelector(`.${column.id}`).setAttribute("colspan", "2");
          /*这里的column.id实际是dom元素的class,
            故用点.不用井#,可审查dom验证
            所以 --通过设置原生的colspan属性,
            让原来的第一列只占据一个单元格的表头占据2个单元格即可
          */  
        });
      }
      return { textAlign:'center',backgroundColor:"white", }
    },
    // getSpanArr方法
    getSpanArr(data) {
      this.tableProps.forEach(propVal=> {
        let count = 0; // 用来记录需要合并行的起始位置
        this.mergeObj[propVal] = []; // 记录每一列的合并信息
        data.forEach((item, index) => {
          // index == 0表示数据为第一行,直接 push 一个 1
          if(index === 0) {
            this.mergeObj[propVal].push(1);
          } else {
            /*判断当前行是否与上一行其值相等
            如果相等 在 count 记录的位置其值 +1 表示当前行需要合并 
            并push 一个 0 作为占位
            */  
            if(item[propVal] === data[index - 1][propVal]) { 
              this.mergeObj[propVal][count] += 1;
              this.mergeObj[propVal].push(0);
            } else {
              // 如果当前行和上一行其值不相等 
              count = index; // 记录当前位置 
              this.mergeObj[propVal].push(1); // 重新push 一个 1
            }
          }
        })
      })
    },
    // objectSpanMethod方法
    /*默认接受四个值
        ----row==当前行的数据
        ----column==当前列的数据
        ----rowIndex==行的下标
        ----columnIndex==列的下标
    */
    objectSpanMethod({ row, column, rowIndex, columnIndex }) {
      // 只有 第一列  合并行
      if(columnIndex===0){
        // 判断列的属性
        if(this.tableProps.indexOf(column.property) !== -1) {
          // 判断其值是不是为0 
          if(this.mergeObj[column.property][rowIndex]) { 
            return {
              rowspan: this.mergeObj[column.property][rowIndex],
              colspan: rowIndex===3?1: 2
            };
          } else {
            // 如果为0则为需要合并的行
            return {
              rowspan: 0,
              colspan: 0
            }; 
          }
        }
      }
    },
    // 获取表格数据
    getData(){
      this.tableData=[];
      //{},{},{},{},{},{},{},{},{}, {unit:"a阿萨达"}
      this.tableData=[];
      if(this.tableData.length<10){
        let zeroData={
          label:"支付日期",
          labelLater:this.tableObj.paymentDate,
          unit:this.tableData[0]!=undefined?
            this.tableData[0].unit:"阿达阿达是的",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"1",
          amount:this.tableData[0]!=undefined?this.tableData[0].amount:""
        };
        let oneData={
          label:"会签总笔数",
          labelLater:this.tableObj.allcCountersign,
          unit:this.tableData[1]!=undefined?
            this.tableData[1].unit:"阿达阿达是的阿达阿达是",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[1]!=undefined?this.tableData[1].amount:""
        };
        let twoData={
          label:"单据数量",
          labelLater:this.tableObj.dataList,
          unit:this.tableData[2]!=undefined?this.tableData[2].unit:"",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[2]!=undefined?this.tableData[2].amount:""
        };
        let threeData={
          label:"会签总金额",
          labelLater:this.QFWYBLLWXS(this.tableObj.countersignAllAmount),
          unit:this.tableData[3]!=undefined?this.tableData[3].unit:"",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[3]!=undefined?this.tableData[3].amount:""
        };
        let fourData={
          label:"会签总金额",
          labelLater:this.tableObj.countersignAllAmountDX,
          unit:this.tableData[4]!=undefined?this.tableData[4].unit:"",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[4]!=undefined?this.tableData[4].amount:""
        };
        let fiveData={
          label:"财务负责人",
          labelLater:this.tableObj.CWFZRsign,
          unit:this.tableData[5]!=undefined?this.tableData[5].unit:"",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[5]!=undefined?this.tableData[5].amount:""
        };
        let sixData={
          label:"集团董事长",
          labelLater:this.tableObj.JTDSZsign,
          unit:this.tableData[6]!=undefined?this.tableData[6].unit:"",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[6]!=undefined?this.tableData[6].amount:""
        };
        let sevenData={
          label:"网银录入",
          labelLater:"",
          unit:this.tableData[7]!=undefined?this.tableData[7].unit:"",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[7]!=undefined?this.tableData[7].amount:""
        };
        let eightData ={
          label:"网银复核",
          labelLater:"",
          unit:this.tableData[8]!=undefined?this.tableData[8].unit:"",
          backed:this.tableData[0]!=undefined?this.tableData[0].backed:"",
          amount:this.tableData[8]!=undefined?this.tableData[8].amount:""
        };
        this.tableData.splice(0,1,zeroData);
        this.tableData.splice(1,1,oneData);
        this.tableData.splice(2,1,twoData);
        this.tableData.splice(3,1,threeData);
        this.tableData.splice(4,1,fourData);
        this.tableData.splice(5,1,fiveData);
        this.tableData.splice(6,1,sixData);
        this.tableData.splice(7,1,sevenData);
        this.tableData.splice(8,1,eightData);
        console.log("少于9条数据========",this.tableData)
      }else{
        this.addArrPoperty(this.tableData,0,"支付日期",
            this.tableObj.paymentDate
        );
        this.addArrPoperty(this.tableData,1,"会签总笔数",
            this.tableObj.allcCountersign
        );
        this.addArrPoperty(this.tableData,2,"单据数量",
            this.tableObj.dataList
        );
        this.addArrPoperty(this.tableData,3,"会签总金额",
            this.QFWYBLLWXS(this.tableObj.countersignAllAmount)
        );
        this.addArrPoperty(this.tableData,4,"会签总金额",
            this.tableObj.countersignAllAmountDX
        );
        this.addArrPoperty(this.tableData,5,"财务负责人",
            this.tableObj.CWFZRsign
        );
        this.addArrPoperty(this.tableData,6,"集团董事长",
            this.tableObj.JTDSZsign
        );
        this.addArrPoperty(this.tableData,7,"网银录入","");
        this.addArrPoperty(this.tableData,8,"网银复核","");
        console.log("多于9条数据========",this.tableData)
      }
    },
    addArrPoperty(arr,index,label,labelLater){
      arr[index].label=label;
      arr[index].labelLater=labelLater;
    },
  }
}
</script>

3:样式

<style scoped>
  .red{
    color: red;
  }
  .lineH40{
    line-height: 40px;
  }
  .lineH30{
    line-height: 30px;
  }
  .fontSize16{
    font-size: 16px;
  }
  .fontSize18{
    font-size: 18px;
    font-weight: 500;
  }
  .fontSize12{
    font-size: 12px;
    font-weight: 600;
  }
  table {
    border-spacing: 0;
    border-collapse: collapse;
    border: 1px solid #7f7f7f;
    width: 100%;
    margin-bottom: 30px;
  }
  table td {
    padding: 8px;
    border: 1px solid #7f7f7f;
    text-align: center;
    min-width: 80px;
    min-height: 30px;
  }
  .headStyle td{
    text-align: center; 
    font-weight: 600;
  }
  .margin-B30{
    margin-bottom: 30px;
  }
  .backTag{
    margin-left: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sanJiao{
    content:"";
    border:11px solid red;
    border-top-color:transparent;
    border-left-color:transparent;
    border-bottom-color:transparent;
    width:0px;
    height:0px;
  }
  .backColor{
    border: none;
    background-color: red;
    padding-right: 5px;
    color: white;
  }
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/416627.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

抖音视频关键词批量下载软件|视频采集批量下载工具

视频批量下载工具操作说明 我们自主研发了一款视频批量下载工具&#xff0c;旨在解决市面上视频无水印工具只能通过单个视频链接进行提取的不便之处。QQ:290615413我们的工具不仅支持通过单个视频链接提取&#xff0c;更可以通过关键词进行视频搜索&#xff0c;实现批量和有选择…

深入浅出JVM(十八)之并发垃圾收集器G1

在这篇文章 深入浅出JVM&#xff08;十六&#xff09;之三色标记法与并发可达性分析 中&#xff0c;我们曾说明过GC线程和用户线程并发执行导致的对象消失问题&#xff0c;可以使用增量更新或原始快照的方式来解决 上文深入浅出JVM&#xff08;十七&#xff09;之并发垃圾收集…

Mysql REGEXP正则运算符

# 邮箱h开头 mysql> select email form xxx where email REGEXP ^h;

C语言之操作符详解

文章目录 一、算术操作符二、移位操作符1、 原码、反码、补码2、左移操作符3、右移操作符 三、位操作符1、按位与【&】2、按位或【|】3、按位异或【^】4、按位取反【~】5、两道面试题6、进制定位将变量a的第n位置为1将变量a的第n位置为0 四、赋值操作符1、复合赋值符 五、单…

记录工作中遇见问题、学习项

1、判空操作 Demo demo Optional .ofNullable(demoService.getById(id)) .orElseThrow(() -> new ServiceException("不存在id为" id "的数据")); 2、SQL方面 1、group by : GROUP BY 子句必须放在 WHERE 子句中的条件之后&#…

【MATLAB】 小波分解信号分解+FFT傅里叶频谱变换组合算法

有意向获取代码&#xff0c;请转文末观看代码获取方式~ 展示出图效果 1 小波分解算法 小波分解算法是一种数学方法&#xff0c;用于将信号分解为不同频率的小波成分。这种算法基于小波函数&#xff0c;可以用于信号处理、图像压缩和数据压缩等领域。小波分解算法的基本思想是…

Python多线程编程:深入理解threading模块及代码实战【第99篇—Multiprocessing模块】

Python多线程编程&#xff1a;深入理解threading模块及代码实战 在Python编程中&#xff0c;多线程是一种常用的并发编程方式&#xff0c;它可以有效地提高程序的执行效率&#xff0c;特别是在处理I/O密集型任务时。Python提供了threading模块&#xff0c;使得多线程编程变得相…

设置django orm 模型中的字段限制数值的大小

需求如下&#xff1a; 1&#xff1a;使用了django框架中的orm模式来创建数据表 2&#xff1a;限制字段的取值范围 # -------------------- # 因为django的orm没有限制整形字段的取值范围&#xff0c;所以需要django内置的值校验器进行校验 from django.core.validators i…

刷题第2天(中等题):LeetCode59--螺旋矩阵--考察模拟能力(边界条件处理)

LeetCode59: 给你一个正整数 n &#xff0c;生成一个包含 1 到 n2 所有元素&#xff0c;且元素按顺时针顺序螺旋排列的 n x n 正方形矩阵 matrix 。 示例 1&#xff1a; 输入&#xff1a;n 3 输出&#xff1a;[[1,2,3],[8,9,4],[7,6,5]]示例 2&#xff1a; 输入&#xff1a…

Appium手机Android自动化

目录 介绍 什么是APPium&#xff1f; APPium的特点 环境准备 adb(android调试桥)常用命令 appium图形化简单使用 连接手机模拟器 使用appium桌面端应用程序 ​编辑 整合java代码测试 环境准备 引入所需依赖 书写代码简单启动 ​编辑 Appium元素定位 id定位 介…

docker版本 jenkins配置gitlab自动部署

前端项目 Build steps pwd npm config set registry https://registry.npm.taobao.org npm -v node -v #npm install npm run build:prod tar -czvf QASystem.tar.gz distpwd cd /data/zhouxy37/vue_deploy tar -zxvf QASystem.tar.gz sudo mv dist QASystem cp -r QASyste…

Matlab: Introduction to Hybrid Beamforming

文章目录 来源混合波束赋形的基本概念System Setup关键函数 来源 在matlab的命令行输入 doc hybrid beamforming 混合波束赋形的基本概念 混合波束形成简介 本例介绍了混合波束形成的基本概念&#xff0c;并说明了如何模拟这种系统。 现代无线通信系统使用空间复用来提高散…

WiFi模块赋能智能手表:拓展功能与提升连接性

随着科技的不断进步&#xff0c;智能手表正逐渐成为现代人生活中不可或缺的智能配饰。其中&#xff0c;WiFi模块的应用为智能手表带来了更多强大的功能和更高的连接性&#xff0c;为用户提供了更为便捷、智能化的使用体验。本文将深入探讨WiFi模块在智能手表中的应用。 远程通信…

Linux入门攻坚——16、Linux系统启动流程

CentOS5、6的启动流程 Linux&#xff1a;kernel rootfs&#xff0c;Linux系统就是内核加上根文件系统。 内核之上是库&#xff1a; 库&#xff1a;函数集合&#xff0c;function&#xff0c;函数具有调用接口&#xff0c;库函数不能单独执行&#xff0c;必须被其他程序调用…

管理系统提升:如何从用户体验设计上发力

一、关于用户体验 管理系统的用户体验&#xff08;User Experience, UX&#xff09;是指用户在使用管理系统时所感受到的整体体验&#xff0c;包括用户对系统界面、交互、功能、性能等方面的感受和评价。一个好的管理系统的用户体验应该是简单易用、高效快捷、信息清晰、界面美…

Redis冲冲冲——Redis的主从复制,哨兵模式以及SpringBoot的配置

目录 引出Redis的主从复制&#xff0c;哨兵模式以及SpringBoot的配置Redis的主从复制Redis的哨兵模式SpringBoot配置 缓存三兄弟&#xff1a;缓存击穿、穿透、雪崩缓存击穿缓存穿透缓存雪崩 总结 引出 Redis冲冲冲——Redis的主从复制&#xff0c;哨兵模式以及SpringBoot的配置…

Matlab进阶绘图第41期—双三角网格曲面图

在《Matlab论文插图绘制模板第67期—三角网格图(Trimesh)》中&#xff0c;我分享过三角网格曲面图的绘制模板。 然而&#xff0c;有的时候&#xff0c;需要在一张图上绘制两个及以上的三角网格曲面图&#xff0c;且每个三角网格曲面图使用不同的配色方案。 在Matlab中&#x…

上线服务时遇到的一个SSLHandshakeException错误

今天部署自己的一个程序&#xff0c;在本地是可以正常跑通流程了&#xff0c;但是部署到服务器上运行之后出现了如下错误。 Caused by: javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate) at sun.sec…

s-table和columns初始化不完整,造成table文件的filter报错

问题 顺藤摸瓜找errorHandler.js文件 发现文件并没有什么问题 顺藤摸瓜找index.vue文件 首先找到报错的filter&#xff0c;发现与columnsSetting相关 找到columnsSetting发现等于columns 返回自己使用S-table组件的地方&#xff0c;发现columns初始化时仅初始化为ref()未表明…

Zoho Bigin 2024新功能预览:小企业CRM大热卖!

目前&#xff0c;市面上大多数CRM客户关系管理软件功能复杂&#xff0c;层级多&#xff0c;涵盖从市场营销、销售过程管理再到售后服务的完整客户生命周期。很多功能小微企业在当前阶段用不上&#xff0c;所以不愿意为用不上的功能和服务付费&#xff0c;市场上真正适合小微企业…