最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Vue使用Antd中a-table實現(xiàn)表格數(shù)據(jù)列合并展示示例代碼

 更新時間:2024年11月09日 12:11:53   作者:JackieDYH  
文章介紹了如何在Vue中使用Ant?Design的a-table組件實現(xiàn)表格數(shù)據(jù)列合并展示,通過處理函數(shù)對源碼數(shù)據(jù)進行操作,處理相同數(shù)據(jù)時合并列單元格

原數(shù)據(jù)

根據(jù)需求實現(xiàn)當前兩列數(shù)據(jù)中有相同數(shù)據(jù)時,合并列單元格

實現(xiàn)

源碼

數(shù)據(jù)

const dataSource = ref([
  {
    id: 1,
    pl: "冰箱",
    zznd: "P1",
    sm: "說明說明說明1",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P2",
    sm: "說明說明說明2",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P2",
    sm: "說明說明說明3",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P3",
    sm: "說明說明說明4",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P3",
    sm: "說明說明說明4",
    dw: "臺",
    gs: "1",
    dj: "100"
  }
])

處理函數(shù)

const calculateRowSpan = (data, index, key) => {
  if (index === 0 || data[index][key] !== data[index - 1][key]) {
    let rowSpan = 1
    for (let i = index + 1; i < data.length; i++) {
      if (data[i][key] === data[index][key]) {
        rowSpan++
      } else {
        break
      }
    }
    return rowSpan
  }
  return 0
}

 全部源碼

<template>
  <a-modal
    title=" "
    :footer="null"
    width="1160px"
    wrap-class-name="price-modal-wrap"
    :open="open"
    @update:open="submit"
    centered
    destroy-on-close>
    <!-- @update:open="(v: boolean) => emit('update:open', v)" -->
    <div class="px-[54px] pb-[30px] pt-3">
      <div class="flex flex-col items-center">
        <img src="@/assets/images/stepTemp/success.svg" alt="" />
        <span class="text-[#000] text-[24px] font-medium mb-[12px]">提交成功</span>
      </div>
      <a-table bordered :loading="loading" :columns="columns" :data-source="dataSource" :pagination="false">
        <template #bodyCell="{ text, column, record, index }">
          <template v-if="!['demandId', 'createTime', 'operator'].includes(String(column.dataIndex))">
            <a-tooltip placement="topLeft" :title="text">
              {{ text }}
            </a-tooltip>
          </template>
        </template>
      </a-table>
      <div class="text-right pt-5">
        <a-button type="primary" class="w-[120px]" @click="submit">確定</a-button>
      </div>
    </div>
  </a-modal>
</template>
<script setup lang="ts">
const props = defineProps<{
  open: boolean
  flag?: string
}>()
const emit = defineEmits(["update:open", "goBack"])
const submit = () => {
  if (props.flag === "table") {
    emit("update:open", false)
    return
  }
  emit("goBack")
}
const dataSource = ref([
  {
    id: 1,
    pl: "冰箱",
    zznd: "P1",
    sm: "說明說明說明1",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P2",
    sm: "說明說明說明2",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P2",
    sm: "說明說明說明3",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P3",
    sm: "說明說明說明4",
    dw: "臺",
    gs: "1",
    dj: "100"
  },
  {
    id: 1,
    pl: "冰箱",
    zznd: "P3",
    sm: "說明說明說明4",
    dw: "臺",
    gs: "1",
    dj: "100"
  }
])
const loading = ref(false)
const calculateRowSpan = (data, index, key) => {
  if (index === 0 || data[index][key] !== data[index - 1][key]) {
    let rowSpan = 1
    for (let i = index + 1; i < data.length; i++) {
      if (data[i][key] === data[index][key]) {
        rowSpan++
      } else {
        break
      }
    }
    return rowSpan
  }
  return 0
}
const columns = [
  {
    title: "品類",
    dataIndex: "pl",
    width: 180,
    customCell: (_, index) => {
      const rowSpan = calculateRowSpan(dataSource.value, index, "pl")
      return {
        rowSpan
      }
    }
  },
  {
    title: "制作難度",
    dataIndex: "zznd",
    ellipsis: true,
    width: 180,
    customCell: (_, index) => {
      const rowSpan = calculateRowSpan(dataSource.value, index, "zznd")
      return {
        rowSpan
      }
    }
  },
  {
    title: "說明",
    dataIndex: "sm",
    width: 180
  },
  {
    title: "單位(臺/件)",
    dataIndex: "dw",
    width: 180
  },
  {
    title: "工時(小時)",
    dataIndex: "gs",
    width: 180
  },
  {
    title: "單價(元)",
    dataIndex: "dj",
    width: 180
  }
  // {
  //   title: "操作",
  //   dataIndex: "operator",
  //   width: 140
  // }
]
</script>
<style lang="scss">
.price-modal-wrap {
  .ant-modal-content {
    @apply rounded-[20px] overflow-hidden;
  }
  .ant-modal-header {
    @apply rounded-[20px_20px_0_0] py-10 px-[30px] border-none;
  }
  .ant-modal-title {
    @apply text-[20px] font-medium leading-[22px];
  }
  .ant-modal-body {
    padding: 0;
  }
  .ant-modal-close {
    @apply right-[30px] top-[42px];
  }
}
</style>

到此這篇關于Vue中使用Antd中a-table實現(xiàn)表格數(shù)據(jù)列合并展示的文章就介紹到這了,更多相關vue Antd內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

  • vue?elementUI?處理文件批量上傳方式

    vue?elementUI?處理文件批量上傳方式

    這篇文章主要介紹了vue?elementUI?處理文件批量上傳方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-04-04
  • 手把手教你如何在vue項目中使用rem布局

    手把手教你如何在vue項目中使用rem布局

    公司內(nèi)部一直有大屏的需求,也一直再做,中途也踩了一些坑,但是沒有認真的來總結下,下面這篇文章主要給大家介紹了關于如何在vue項目中使用rem布局的相關資料,文中通過圖文介紹的非常詳細,需要的朋友可以參考下
    2023-02-02
  • vue實現(xiàn)對highlight-current-row方式整行選中后修改默認背景顏色

    vue實現(xiàn)對highlight-current-row方式整行選中后修改默認背景顏色

    這篇文章主要介紹了vue實現(xiàn)對highlight-current-row方式整行選中后修改默認背景顏色方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2023-11-11
  • Ant?Design?Vue?Pagination分頁組件的封裝與使用

    Ant?Design?Vue?Pagination分頁組件的封裝與使用

    這篇文章主要介紹了Ant?Design?Vue?Pagination分頁組件的封裝與使用方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-04-04
  • vue2?element-ui?el-checkbox視圖不更新問題及解決

    vue2?element-ui?el-checkbox視圖不更新問題及解決

    作者在開發(fā)過程中遇到了視圖不更新的問題,最終通過改變一個無關緊要的響應式數(shù)據(jù)來解決,讓視圖發(fā)生改變
    2024-12-12
  • Vite模塊動態(tài)導入之Glob導入實踐

    Vite模塊動態(tài)導入之Glob導入實踐

    import.meta.glob是Vite提供的強大模塊動態(tài)導入功能,用于在構建時批量導入模塊并生成按需加載的代碼,適用于處理大量文件
    2026-01-01
  • vue-cli 3.0 自定義vue.config.js文件,多頁構建的方法

    vue-cli 3.0 自定義vue.config.js文件,多頁構建的方法

    今天小編就為大家分享一篇vue-cli 3.0 自定義vue.config.js文件,多頁構建的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-09-09
  • Vue 報錯Error: No PostCSS Config found問題及解決

    Vue 報錯Error: No PostCSS Config foun

    這篇文章主要介紹了Vue 報錯Error: No PostCSS Config found問題及解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-07-07
  • vue2路由方式--嵌套路由實現(xiàn)方法分析

    vue2路由方式--嵌套路由實現(xiàn)方法分析

    這篇文章主要介紹了vue2嵌套路由實現(xiàn)方法,結合實例形式分析了vue2嵌套路由基本實現(xiàn)方法與操作注意事項,需要的朋友可以參考下
    2020-03-03
  • 一文帶你搞懂Vue3中的各種ref的使用

    一文帶你搞懂Vue3中的各種ref的使用

    在?Vue3?中,有許多與響應式相關的函數(shù),例如?toRef、toRefs、isRef、unref?等等,本文將詳細介紹這些函數(shù)的用法,讓我們在實際開發(fā)中知道應該使用哪些?API?并能夠熟練地回答面試官的相關問題
    2023-08-08

最新評論

济宁市| 察隅县| 濮阳市| 南昌市| 疏勒县| 土默特左旗| 临清市| 黄平县| 尼勒克县| 东台市| 乐昌市| 仲巴县| 岫岩| 玉田县| 乐清市| 江门市| 徐闻县| 周宁县| 遵化市| 霍城县| 布拖县| 宁德市| 崇文区| 澄迈县| 阜阳市| 阿拉尔市| 武山县| 曲靖市| 岳阳市| 九台市| 甘泉县| 嫩江县| 峨眉山市| 大埔县| 德令哈市| 商丘市| 合水县| 黄浦区| 庆阳市| 邢台县| 邹城市|