Vue + element table 列動態(tài)合并顯示Process

需要根據(jù)接口數(shù)據(jù) 開始時間和結(jié)束時間 動態(tài)加載月份進(jìn)度條所在位置

完成效果
Z2N~BM2W[)DG4U1]I%SW$)E.png
<template>
  <div>
    <el-table
      :data="tableData"
      style="width: 100%;margin-bottom: 20px;text-align:center"
      :span-method="objectSpanMethod"
      row-key="id"
      border
      default-expand-all
      :tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
    >
      <el-table-column prop="name" label="維保名稱" width="120">
      </el-table-column>
      <el-table-column prop="starttime" label="開始時間" width="120">
      </el-table-column>
      <el-table-column prop="endtime" label="結(jié)束時間" width="120">
      </el-table-column>
      <template v-for="column in monthList">
        <el-table-column
          :key="column.name"
          :label="column.name"
          width="80"
          prop="percent"
        >
          <template slot-scope="scope">
            <p v-if="!scope.row[column.col]"></p>
            <el-progress
              v-else
              :text-inside="true"
              :stroke-width="26"
              :percentage="scope.row.percent"
            ></el-progress>
          </template>
        </el-table-column>
      </template>
    </el-table>
  </div>
</template>

<script>
export default {
  name: "HelloWorld",
  data() {
    return {
      monthList: [
        { col: "Jan", name: "一月" },
        { col: "Feb", name: "二月" },
        { col: "Mar", name: "三月" },
        { col: "Apr", name: "四月" },
        { col: "May", name: "五月" },
        { col: "Jun", name: "六月" },
        { col: "Jul", name: "七月" },
        { col: "Aug", name: "八月" },
        { col: "Spt", name: "九月" },
        { col: "Oct", name: "十月" },
        { col: "Nov", name: "十一月" },
        { col: "Dec", name: "十二月" }
      ],

      tableData: [
        {
          starttime: "2020-01-02",
          endtime: "2020-03-05",
          name: "作業(yè)1",
          id: 32,
          percent: 50,
          children: [
            {
              id: 37,
              starttime: "2020-03-02",
              endtime: "2020-05-05",
              name: "作業(yè)11",
              percent: 20
            },
            {
              id: 38,
              starttime: "2020-05-02",
              endtime: "2020-08-05",
              name: "作業(yè)12",
              percent: 30
            }
          ]
        },
        {
          starttime: "2020-08-02",
          endtime: "2020-12-05",
          name: "作業(yè)1",
          id: 111,
          percent: 50,
          children: [
            {
              id: 1111,
              starttime: "2020-03-02",
              endtime: "2020-05-05",
              name: "作業(yè)11",
              percent: 20
            },
            {
              id: 1231,
              starttime: "2020-05-02",
              endtime: "2020-08-05",
              name: "作業(yè)12",
              percent: 30
            }
          ]
        },
        {
          starttime: "2020-03-02",
          endtime: "2020-07-05",
          id: "21",
          name: "作業(yè)2",
          percent: 40
        },
        {
          starttime: "2020-09-02",
          endtime: "2020-12-05",
          id: "22",
          name: "作業(yè)43",
          percent: 50
        },
        {
          starttime: "2020-04-02",
          endtime: "2020-09-05",
          id: "23",
          name: "作業(yè)45",
          percent: 60
        },
        {
          starttime: "2020-02-02",
          endtime: "2020-05-05",
          id: "24",
          name: "作業(yè)54",
          percent: 70
        }
      ]
    };
  },
  mounted: function() {
    // 組件創(chuàng)建完后獲取數(shù)據(jù)靠汁,
    // 此時 data 已經(jīng)被 observed 了
    //處理數(shù)據(jù) 
    this.handleData(this.tableData);
    console.log(this.tableData)
  },
  methods: {
    //獲取月份的英文
    getMonthEN(date){
      var monthEnglish = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Spt","Oct","Nov","Dec"];
      return monthEnglish[new Date(new Date(date)).getMonth()];
    },
    //獲取月份數(shù)字
    getMonth(date){
      return new Date(new Date(date)).getMonth() + 1
    },
    handleData(data){
        data.forEach(item => {

          //處理幾月開始幾月結(jié)束
          item.startMonthEN = this.getMonthEN(item.starttime)
          item.endMonthEN = this.getMonthEN(item.endtime)
          item.startMonth = this.getMonth(item.starttime)
          item.endMonth = this.getMonth(item.endtime)

          this.monthList.forEach(monthItme => {
            var col = monthItme.col
            if (item.startMonthEN == col) {
              item[col] = true
            }else {
              item[col] = false
            }
            
          }); 
          //遞歸處理children數(shù)據(jù)
          if (item.children) {
            this.handleData(item.children)
          }
        });
    },
    //合并列
    objectSpanMethod({ row, column, rowIndex, columnIndex }) {
      if (columnIndex === 2 + +row.startMonth) {
        return [1, +row.endMonth - +row.startMonth + 1];
      }
    }
  }
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped></style>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末奶浦,一起剝皮案震驚了整個濱河市踢星,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌成洗,老刑警劉巖藏否,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件遥椿,死亡現(xiàn)場離奇詭異淆储,居然都是意外死亡遏考,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來督笆,“玉大人,你說我怎么就攤上這事娃肿×先牛” “怎么了焙蹭?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵拯钻,是天一觀的道長。 經(jīng)常有香客問我拼余,道長亩歹,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任梭纹,我火速辦了婚禮,結(jié)果婚禮上变抽,老公的妹妹穿的比我還像新娘。我一直安慰自己诡宗,他們只是感情好击儡,可當(dāng)我...
    茶點故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布阳谍。 她就那樣靜靜地躺著矫夯,像睡著了一般。 火紅的嫁衣襯著肌膚如雪制肮。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天递沪,我揣著相機(jī)與錄音豺鼻,去河邊找鬼。 笑死款慨,一個胖子當(dāng)著我的面吹牛拘领,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播樱调,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼约素,長吁一口氣:“原來是場噩夢啊……” “哼届良!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起圣猎,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤士葫,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后送悔,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體慢显,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年荚藻,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片疾呻。...
    茶點故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡叠蝇,死狀恐怖铃慷,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情蛇损,我是刑警寧澤,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站内狗,受9級特大地震影響岩灭,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜找爱,卻給世界環(huán)境...
    茶點故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一练般、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦誊役、人聲如沸击孩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽法绵。三九已至弧满,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背数冬。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工秸架, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人缭黔。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像挟秤,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子箩朴,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,509評論 2 348