elementUI table 綁定數據

1.綁定一條數據用: => slot-scope屬性,再顯示對應的數據
經過  Scoped slot 能夠獲取到 row, column, $index 和 store(table 內部的狀態管理)的數據:
{{ scope.row}} =>獲取整行的數據
{{scope.$index}} => 行的下標
使用:
<el-table <el-table-column
<template slot-scope="scope">

{{ scope.row.userSex === 1 ? "男" : "女" }} </template>ui

/el-table-column>
/el-table>
2.只綁定一個數據,例如:sex:'女'
<ui-table-column prop="userSex" label="性別" width="80px" :formatte r="getSexType" show-overflow-tooltip> </ui-table-column>
再經過formatter屬性來格式化數據(定義沒有數據的顯示內容)以下:
getSexType(row, column) { return sexType(row[column.property]) }
row[column.property] => 獲取表格裏數據
sexType => 定義的公共方法(邏輯)
相關文章
相關標籤/搜索