欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

elementPlus組件之表格編輯并校驗功能實現(xiàn)

 更新時間:2024年12月05日 10:36:36   作者:碼嘍的自我修養(yǎng)  
本文詳細(xì)介紹了如何使用Element Plus組件實現(xiàn)表格的單條數(shù)據(jù)新增、編輯、刪除操作,并對數(shù)據(jù)進(jìn)行校驗,代碼簡單易懂,感興趣的朋友跟隨小編一起看看吧

?功能描述

在表格中可以進(jìn)行單條數(shù)據(jù)的新增、編輯、刪除操作,并能對數(shù)據(jù)進(jìn)行校驗。具體如下圖

功能解析

  • 表格和表單切換,表單嵌套表格,通過v-if判斷當(dāng)前行的數(shù)據(jù)是否切換為表單組件。
  • 表格編輯定位,通過自帶的scope.$index做定位具體是哪條數(shù)據(jù)做編輯操作,并將該條數(shù)據(jù)解構(gòu)賦值給form
  • 取消后數(shù)據(jù)還原,因為form數(shù)據(jù)是解構(gòu)后的,直接取消編輯狀態(tài)即可。如果是新增狀態(tài)下的取消,則需要刪除最后一條數(shù)據(jù)。
  • 新增數(shù)據(jù),初始化form數(shù)據(jù),并push到表格數(shù)據(jù)

功能實現(xiàn)

<template>
  <el-form ref="tableFormRef" :model="table.form" :rules="table.rules" status-icon>
    <el-table :data="table.data" border stripe>
      <el-table-column type="index" width="50" label="序號" />
      <el-table-column prop="min" label="下限值(kwh)">
        <template #default="scope">
          <el-form-item v-if="scope.$index === table.idx" prop="min">
            <el-input v-model.number="table.form.min" placeholder="請輸入下限值" />
          </el-form-item>
          <span v-else>{{ scope.row.min }}</span>
        </template>
      </el-table-column>
      <el-table-column prop="max" label="上限值(kwh)">
        <template #default="scope">
          <el-form-item v-if="scope.$index === table.idx" prop="max">
            <el-input v-model.number="table.form.max" placeholder="請輸入上限值" />
          </el-form-item>
          <span v-else>{{ scope.row.max }}</span>
        </template>
      </el-table-column>
      <el-table-column prop="price" label="單價(元)">
        <template #default="scope">
          <el-form-item v-if="scope.$index === table.idx" prop="price">
            <el-input v-model.number="table.form.price" placeholder="請輸入單價" />
          </el-form-item>
          <span v-else>{{ scope.row.price }}</span>
        </template>
      </el-table-column>
      <el-table-column label="操作">
        <template #default="scope">
          <template v-if="scope.$index === table.idx">
            <el-button @click="saveItem(scope.$index)">保存</el-button>
            <el-button @click="cancelItem(scope.$index)">取消</el-button>
          </template>
          <template v-else>
            <el-button @click="editItem(scope.$index, scope.row)">編輯</el-button>
            <el-button @click="deleteItem(scope.$index)">刪除</el-button>
          </template>
        </template>
      </el-table-column>
    </el-table>
    <div class="add-table-item" @click="addItem">新增</div>
  </el-form>
</template>
<script setup>
// 校驗規(guī)則最小數(shù)
const rangeNumberMin = (rule, value, callback) => {
  console.log(value >= table.form.max, value, table.form.max)
  if (value < 0) {
    callback(new Error('數(shù)字不能為負(fù)數(shù)'))
  } else if (value >= table.form.max) {
    callback(new Error('下限值不能大于或等于上限值'))
  } else {
    callback()
  }
}
// 校驗規(guī)則最大數(shù)
const rangeNumberMax = (rule, value, callback) => {
  if (value < 0) {
    callback(new Error('數(shù)字不能為負(fù)數(shù)'))
  } else if (value <= table.form.min) {
    callback(new Error('上限值不能小于或等于下限值'))
  } else {
    callback()
  }
}
// 表格表單數(shù)據(jù)
const table = reactive({
  data: [ // 表格數(shù)據(jù)
    { price: 100, max: 100, min: 0 },
    { price: 100, max: 200, min: 0 },
    { price: 100, max: 100, min: 10 },
    { price: 100, max: 200, min: 30 },
    { price: 100, max: 100, min: 50 }
  ],
  idx: -1, // 編輯第幾條數(shù)據(jù)(-1則為不編輯)
  isAdd: false, // 是否為新增數(shù)據(jù),如果為新增,取消時則需要做刪除操作
  form: { // 表單數(shù)據(jù),單獨處理是為了方便取消操作和規(guī)則校驗
    price: '',
    max: '',
    min: ''
  },
  rules: { // 規(guī)則校驗
    min: [
      { required: true, message: '請輸入下限值', trigger: 'blur' },
      { validator: rangeNumberMin, trigger: 'blur' }
    ],
    max: [
      { required: true, message: '請輸入上限值', trigger: 'blur' },
      { validator: rangeNumberMax, trigger: 'blur' }
    ],
    price: [{ required: true, message: '請輸入價格限值', trigger: 'blur' }]
  }
})
// 新增
const addItem = () => {
  if (table.idx > -1) {
    return
  }
  table.isAdd = true // 標(biāo)記,取消后會刪除編輯數(shù)據(jù)
  table.idx = table.data.length // 編輯最新條數(shù)
  table.data.push(table.form)
}
// 編輯
const editItem = (idx, val) => {
  if (table.idx > -1) {
    return
  }
  table.isAdd = false // 防止取消后刪除編輯數(shù)據(jù)
  table.idx = idx // 編輯當(dāng)前
  table.form = { ...val } // 將需要編輯的數(shù)據(jù)解構(gòu)賦值給表單,此處是做了深拷貝,如果數(shù)據(jù)復(fù)雜,需要另外做深拷貝處理
}
// 取消
const cancelItem = idx => {
  // 如果是新增狀態(tài)下,則刪除編輯數(shù)據(jù)
  if (table.isAdd) {
    table.data.splice(idx, 1)
  }
  // 初始化數(shù)據(jù)
  table.form = {
    price: '',
    max: '',
    min: ''
  }
  table.idx = -1
  table.isAdd = false
}
// 刪除
const deleteItem = idx => {
  if (table.idx > -1) {
    return
  }
  table.data.splice(idx, 1)
}
const tableFormRef = ref()
const saveItem = idx => {
  tableFormRef.value.validate(valid => {
    if (valid) {
      // 替換插入數(shù)據(jù),如數(shù)據(jù)解構(gòu)復(fù)雜,請自行做深拷貝操作
      table.data.splice(idx, 1, { ...table.form })
      // 初始化數(shù)據(jù)
      table.form = {
        price: '',
        max: '',
        min: ''
      }
      table.idx = -1
      table.isAdd = false
    } else {
      console.log('error submit!')
      return false
    }
  })
}
</script>
<style lang="scss" scoped>
.add-table-item {
  width: 100%;
  height: 49px;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: var(--el-border-color-lighter);
  text-align: center;
  line-height: 49px;
  background-color: var(--el-fill-color-lighter);
  cursor: pointer;
}
</style>
 

到此這篇關(guān)于elementPlus組件之表格編輯并校驗的文章就介紹到這了,更多相關(guān)elementPlus表格編輯并校驗內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • vue單頁面打包文件大?首次加載慢?nginx帶你飛,從7.5M到1.3M蛻變過程(推薦)

    vue單頁面打包文件大?首次加載慢?nginx帶你飛,從7.5M到1.3M蛻變過程(推薦)

    這篇文章主要介紹了vue單頁面打包文件大?首次加載慢?nginx帶你飛,從7.5M到1.3M蛻變過程,需要的朋友可以參考下
    2018-01-01
  • Vue3+Vite使用雙token實現(xiàn)無感刷新

    Vue3+Vite使用雙token實現(xiàn)無感刷新

    本文主要介紹了Vue3+Vite使用雙token實現(xiàn)無感刷新,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-04-04
  • 關(guān)于vue-router路徑計算問題

    關(guān)于vue-router路徑計算問題

    這篇文章主要介紹了關(guān)于vue-router路徑計算問題,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-05-05
  • 詳解關(guān)于vue-area-linkage走過的坑

    詳解關(guān)于vue-area-linkage走過的坑

    這篇文章主要介紹了詳解關(guān)于vue-area-linkage走過的坑,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-06-06
  • Vue?eventBus事件總線封裝后再用的方式

    Vue?eventBus事件總線封裝后再用的方式

    EventBus稱為事件總線,當(dāng)兩個組件屬于不同的兩個組件分支,或者兩個組件沒有任何聯(lián)系的時候,不想使用Vuex這樣的庫來進(jìn)行數(shù)據(jù)通信,就可以通過事件總線來進(jìn)行通信,這篇文章主要給大家介紹了關(guān)于Vue?eventBus事件總線封裝后再用的相關(guān)資料,需要的朋友可以參考下
    2022-06-06
  • el-form表單實現(xiàn)校驗的示例代碼

    el-form表單實現(xiàn)校驗的示例代碼

    本文主要介紹了el-form表單實現(xiàn)校驗的示例代碼,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2024-07-07
  • vue解決使用$http獲取數(shù)據(jù)時報錯的問題

    vue解決使用$http獲取數(shù)據(jù)時報錯的問題

    今天小編就為大家分享一篇vue解決使用$http獲取數(shù)據(jù)時報錯的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2019-10-10
  • Vue中用props給data賦初始值遇到的問題解決

    Vue中用props給data賦初始值遇到的問題解決

    這篇文章主要介紹了Vue中用props給data賦初始值遇到的問題解決,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-11-11
  • vue創(chuàng)建項目卡住不動,vue?create?project卡住不動的解決

    vue創(chuàng)建項目卡住不動,vue?create?project卡住不動的解決

    這篇文章主要介紹了vue創(chuàng)建項目卡住不動,vue?create?project卡住不動的解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-10-10
  • vue中html2canvas給指定區(qū)域添加滿屏水印

    vue中html2canvas給指定區(qū)域添加滿屏水印

    本文主要介紹了vue中html2canvas給指定區(qū)域添加滿屏水印,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-11-11

最新評論