91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Element-UI中關于table表格的那些騷操作(小結)

發布時間:2020-09-05 23:05:02 來源:腳本之家 閱讀:312 作者:視覺派Pie 欄目:web開發

最近的項目中使用到element-ui組件庫,由于做的是后臺管理系統,所以經常需要操作表格,編輯樣式的過程中遇到一些問題,官網針對table給出了很多的api,自己可以自定義,基本能滿足產品需求,但是沒有給出具體的案例,網上的資料也比較簡略,這里簡單整理下一些常用的操作,如果有類似的功能可以做一個參考。

具體的使用方法還是建議仔細閱讀官網-table章節:

https://element.eleme.cn/#/zh-CN/component/table#table-column-scoped-slot

該項目demo已上傳github,歡迎大家下載:

# 克隆到本地
git clone git@github.com:Hanxueqing/Element-table.git

# 安裝依賴
npm install

# 開啟本地服務器localhost
npm run dev

項目地址:

https://github.com/Hanxueqing/Element-table

自定義列的內容

需求:在表格最后一欄添加操作按鈕

Element-UI中關于table表格的那些騷操作(小結)

通過slot-scope="scope"添加操作按鈕,這是專門為我們提供的插槽,方便自定義添加不同的內容。

   <template slot-scope="scope">
    <el-button size="mini" type="primary">編輯</el-button>
    <el-button size="mini" type="danger">刪除</el-button>
   </template>
   </el-table-column>

Element-UI中關于table表格的那些騷操作(小結) 

scope.$index 獲取當前行下標

添加進來的操作按鈕可以通過scope.$index可以獲取當前行對應的下標

<el-table-column label="操作" width="160">
   <template slot-scope="scope">
    <el-button size="mini" type="primary" plain @click = "showIndex(scope.$index)">點擊顯示當前行下標</el-button>
   </template>
   </el-table-column>

根據下標可以對指定某一行進行操作

Element-UI中關于table表格的那些騷操作(小結)

scope.row 獲取當前屬性值

通過scope.row.屬性名可以獲取當前行對應的屬性值

<el-table-column label="操作" width="160">
   <template slot-scope="scope">
    <el-button size="mini" type="primary" plain @click = "showName(scope.row.name)">點擊獲取姓名屬性</el-button>
   </template>
   </el-table-column>

點擊按鈕獲得當前行的name屬性值

Element-UI中關于table表格的那些騷操作(小結)

可以通過scope.row.屬性名和三目運算符給特殊的屬性值設定樣式

<el-table-column prop="name" :label="langConfig.table.name[lang]" width="200">
   <template slot-scope="scope">
    <div :class="scope.row.name === '王大虎' ? 'specialColor':''">{{scope.row.name}}</div>
   </template>
   </el-table-column>

編寫specialColor樣式,將字體顏色設置為紅色

.specialColor{
 color:red;
 }

設置表頭樣式

需求:將表頭樣式改為背景色藍色,字體顏色白色,字重400

Element-UI中關于table表格的那些騷操作(小結)

header-cell-class-name

說明:表頭單元格的 className 的回調方法,也可以使用字符串為所有表頭單元格設置一個固定的 className。

類型:Function({row, column, rowIndex, columnIndex})/String

函數形式:將headerStyle方法傳遞給header-cell-class-name

<el-table 
   :data="tableData[lang]" 
   class="table" 
   stripe 
   border 
   :header-cell-class-name="headerStyle"
  >

編寫headerStyle,返回class名稱tableStyle

headerStyle ({row, column, rowIndex, columnIndex}) {
  return 'tableStyle'
  }

在style中編寫tableStyle樣式

<style lang = "scss">
 .tableStyle{
 background-color: #1989fa!important;
 color:#fff;
 font-weight:400;
 }
</style>

字符串形式:直接將tableStyle名稱賦值給header-cell-class-name

<el-table 
   :data="tableData[lang]" 
   class="table" 
   stripe 
   border 
   header-cell-class-name="tableStyle"
  >

header-cell-style

說明:表頭單元格的 style 的回調方法,也可以使用一個固定的 Object 為所有表頭單元格設置一樣的 Style。

類型:Function({row, column, rowIndex, columnIndex})/Object

函數形式:將tableHeaderStyle方法傳遞給header-cell-style

<el-table 
   :data="tableData[lang]" 
   class="table" 
   stripe 
   border 
   :header-cell-style='tableHeaderStyle'
  >

編寫tableHeaderStyle方法,返回樣式

tableHeaderStyle ({row, column, rowIndex, columnIndex}) {
  return 'background-color:#1989fa;color:#fff;font-weight:400;'
  }

對象形式:直接在對象中編寫樣式

<el-table 
   :data="tableData[lang]" 
   class="table" 
   stripe 
   border 
   :header-cell-style="{
   'background-color': '#1989fa',
   'color': '#fff',
   'font-weight': '400'
  }">

header-row-class-name

說明:表頭行的className 的回調方法,也可以使用字符串為所有表頭行設置一個固定的 className。

類型:Function({row, rowIndex})/String

使用方式與header-cell-class-name類似

注意:header-row-class-name與header-cell-class-name的區別:

header-row-class-name是添加在tr上面的,header-cell-class-name是添加在th上面的。

header-row-class-name:

Element-UI中關于table表格的那些騷操作(小結)

所以想讓添加在tr上的樣式顯示,需要關閉element-ui中原本的th的樣式,否則會被覆蓋!(例如背景色)

Element-UI中關于table表格的那些騷操作(小結)

header-cell-class-name:

Element-UI中關于table表格的那些騷操作(小結)

header-row-style

說明:表頭行的 style 的回調方法,也可以使用一個固定的 Object 為所有表頭行設置一樣的 Style。

類型:Function({row, rowIndex})/Object

使用方式與header-cell-style類似

設置行樣式

需求:將表格中行的背景色設置為淺藍色

Element-UI中關于table表格的那些騷操作(小結)

row-class-name

說明:行的 className 的回調方法,也可以使用字符串為所有行設置一個固定的 className。

類型:Function({row, rowIndex})/String

使用方式與header-cell-class-name類似

row-style

說明:行的 style 的回調方法,也可以使用一個固定的 Object 為所有行設置一樣的 Style。

類型:Function({row, rowIndex})/Object

使用方式與header-cell-style類似

函數形式:將tableRowStyle方法傳給row-style

<el-table 
   :data="tableData[lang]" 
   class="table" 
   border 
   :row-
  >

編寫tableRowStyle方法,返回樣式

// 修改table tr行的背景色
  tableRowStyle ({ row, rowIndex }) {
  return 'background-color:#ecf5ff'
  }

點擊按鈕操作當前行

需求:點擊操作欄的按鈕,切換按鈕狀態,并且將當前行置灰

Element-UI中關于table表格的那些騷操作(小結)

通過slot-scope添加按鈕

<el-table-column label="操作" width="160">
   <template slot-scope="scope">
    <el-button size="mini" type="danger" plain v-if = "scope.row.buttonVisible" @click = "changeTable(scope.row.buttonVisible,scope.$index)">禁用該行</el-button>
    <el-button size="mini" type="primary" plain v-else @click = "changeTable(scope.row.buttonVisible,scope.$index)">啟用該行</el-button>
   </template>
   </el-table-column>

在每一個data中添加buttonVisible字段,使用v-if/v-else指令實現按鈕的顯示與隱藏

{
   date: '2016-05-10',
   name: '王大虎',
   address: '上海市普陀區金沙江路 1518 弄',
   zip: 200333,
   buttonVisible: true
  }

編寫changeTable方法,點擊按鈕的時候更改buttonVisible的值

changeTable (buttonVisible, index) {
  this.tableData[index].buttonVisible = !buttonVisible
  }

給el-table添加row-style,并且將tableRowStyle方法傳遞給row-style

<el-table 
   :data="tableData" 
   class="table" 
   border 
   :row-
  >

編寫tableRowStyle方法,根據每一行buttonVisible的值設置背景色

// 修改table tr行的背景色
  tableRowStyle ({ row, rowIndex }) {
  if (this.tableData[rowIndex].buttonVisible === false) {
   return 'background-color: rgba(243,243,243,1)'
  }
  }

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

双城市| 安图县| 集安市| 八宿县| 英超| 于田县| 遵义市| 邵东县| 灵石县| 巴塘县| 特克斯县| 深圳市| 峨边| 河北省| 安义县| 崇阳县| 石河子市| 体育| 裕民县| 旬邑县| 雷波县| 九龙坡区| 普宁市| 河池市| 嵊州市| 建宁县| 宁晋县| 鲁甸县| 平舆县| 西青区| 昭通市| 霍林郭勒市| 奉化市| 剑河县| 济源市| 千阳县| 集安市| 福海县| 南开区| 吴川市| 玛沁县|