ant-design-vue中的table自定義格式渲染解析
ant-design-vue中table自定義格式渲染
一般業(yè)務開發(fā)中,難免會遇到將一些狀態(tài)值(如 0 / 1)轉化為相應的描述(如 關閉 / 開啟),也可能是對日期時間的格式化,如下兩圖轉化前后對比:


開始之前,需要注意的是,定義的 columns 一定要寫在 data 中,否則在加載過程中由于渲染順序會導致其中的渲染函數(shù)無法識別。
有兩種方式修改:
1、直接調用對應插槽模板
<template>
<div class="vehicle-list">
<a-table :columns="columns" :data-source="data" bordered>
<template slot="tradeState" slot-scope="state">
{{ state === 1 ? '交易完成' : (state === 0 ? '等待交易' : '交易失敗') }}
</template>
<template slot="tradeTime" slot-scope="time">
{{ timeFormat(time) }}
</template>
</a-table>
</div>
</template>
<script>
import moment from 'moment'
const columns = [
{
title: '交易狀態(tài)',
dataIndex: 'tradeState',
// customRender: 'tradeState' -> 自定義 slot 屬性名,對應模版中的 slot 屬性,即這里自定義為啥,對應模版中的 slot 就要等于啥
// 模板中對應的 slot-scope 屬性可以用來傳遞三個參數(shù)(val,row,index),分別是當前值、當前行數(shù)據(jù)和當前索引
scopedSlots: { customRender: 'tradeState' }
},
{
title: '交易時間',
dataIndex: 'tradeTime',
scopedSlots: { customRender: 'tradeTime' }
}
]
const data = [
{
key: '1',
tradeState: 1,
tradeTime: '2020-11-01T12:50:19+08:00'
},
{
key: '2',
tradeState: -1,
tradeTime: '2020-11-02T18:06:32+08:00'
},
{
key: '3',
tradeState: 0,
tradeTime: '2020-11-03T08:25:03+08:00'
}
]
export default {
name: 'VehicleList',
data () {
return {
data,
columns
}
},
methods: {
timeFormat (val) { // 時間格式化函數(shù)
return moment(val).format('YYYY-MM-DD HH:mm:ss')
}
}
}
</script>
2、指定渲染函數(shù)
<template>
<div class="vehicle-list" style="width: 50%">
<a-table :columns="columns" :data-source="data" bordered></a-table>
</div>
</template>
<script>
import moment from 'moment'
const columns = [
{
title: '交易狀態(tài)',
dataIndex: 'tradeState',
customRender: (state) => { // customRender屬性是一個方法,可接收三個參數(shù)(val,row,index),分別是當前值、當前行數(shù)據(jù)和當前索引,與方式 1 中模版的 slot-scope 屬性傳參類似
return state === 1 ? '交易完成' : (state === 0 ? '等待交易' : '交易失敗')
}
},
{
title: '交易時間',
dataIndex: 'tradeTime',
customRender: (time) => moment(time).format('YYYY-MM-DD HH:mm:ss')
}
]
const data = [
{
key: '1',
tradeState: 1,
tradeTime: '2020-11-01T12:50:19+08:00'
},
{
key: '2',
tradeState: -1,
tradeTime: '2020-11-02T18:06:32+08:00'
},
{
key: '3',
tradeState: 0,
tradeTime: '2020-11-03T08:25:03+08:00'
}
]
export default {
name: 'VehicleList',
data () {
return {
data,
columns
}
}
}
</script>
對比以上,可以看出方式2代碼更加簡潔,且易讀性更好。
ant-design-vue快速上手指南+排坑
公司要開發(fā)一個后臺管理系統(tǒng),對于UI庫的選擇上選擇了顏值爆表的Ant-Design-Vue作為整個項目UI庫,但誰曾想,暗中的坑一個接一個,文檔也不怎么詳細,可能習慣了element-ui的掘友們也許不怎么好適應,本文就帶大家一起學習如何高效使用Ant-Design-Vue。
NO.1 表單組件
首先就來說說最常用的Form組件的正確使用姿勢:
先來看官方一段話述:
第一、我們不推薦在Form中使用雙向綁定,同一份數(shù)據(jù)可能在多處使用,如果使用雙向綁定,那么數(shù)據(jù)的修改會同時同步到各個組件,但這并不是我們想要的, 你應該在表單提交成功或失敗或確認時同步數(shù)據(jù),使用非雙向綁定的表單,你會擁有最大限度的控制數(shù)據(jù)修改/同步的權限。
第二、如果你不使用表單的自動校驗/收集功能,即沒有使用v-decorator修飾過的組件,你依然可以使用v-model
看了官方的建議后,我們愉快的使用v-decorator修飾input組件,代碼如下:
<a-form-item>
<a-input
placeholder="賬號"
v-decorator="['account',{rules: [{ required: true,whitespace:true,message: '請輸入您的登陸賬號' }]}]"
/>
</a-form-item>劃重點:
v-decorator里的account可以理解為input的name值,后面{}對象可以配置校驗規(guī)則,初始值等參數(shù),這里需要注意的是使用了v-decorator的組件無法使用v-model,也無法設置value等與值有關的屬性,否則報錯
v-decorator會自動收集你表單里的數(shù)據(jù)到form對象里,所以別忘了在data中加上這句代碼:
form: this.$form.createForm(this)

模板中這么寫:

如何自定義表單校驗規(guī)則
這里拿確認密碼舉例:
<a-input
type="password"
v-decorator="['new_password',{rules:[{required: true,whitespace:true,message: '請輸入新密碼'},{validator: handlePass}]}]"
/>
<a-input
type="password"
v-decorator="['confirm_password',{rules:[{required: true,whitespace:true,message: '請重復新密碼'},{validator:handleConfirmPass}]}]"
/>這里我們使用validator校驗器自定義函數(shù)
handlePass(rule, value, callback) {
this.password = value;
callback();
},
handleConfirmPass(rule, value, callback) {
if (this.password && this.password !== value) {
callback('與新密碼輸入不一致');
}
callback();
},這里需要注意callback()必須調用
這里的value就是對應表單輸入了的值,然后知道了這些我們就可以寫我們自己的業(yè)務邏輯了
做好的效果如圖:

表單回顯
我們在做編輯時首先需要通過后端接口讀取到之前的數(shù)據(jù),但是因為現(xiàn)在沒有了v-model,那么我們該怎么辦?
可以調用form對象中的setFieldsValue把后端返回的對象直接設置上去,如果是在mounted方法里必須加上$nextTick,不然會拋出警告說我們在表單未渲染好之前給予了數(shù)據(jù)
代碼如圖:

圖中setFieldsInitialValue是設置表單初始值,如果表單中有重置按鈕,就需要設置上,重置按鈕調用this.form.resetFields()就可以重置form表單了
這個setFieldsValue方法會把傳進去的對象的key和模板中v-decorator中的第一個參數(shù)比較,會自動把對應的值set進去。
提交表單

按鈕加上html-type="submit"后點擊會觸發(fā)這個方法,這個方法校驗表單中所有必填項沒有問題后會自動幫我們把表單中所有帶有v-decorator修飾的組件的值和name序列化好,我們就可以直接傳給后端了。
NO.2 表格(Table)
我們的模板可以這么寫:

ant-design-vue的表格自帶分頁,接下來我把上圖中的參數(shù)挨個解釋下,columns是單元格信息,我們可以把他導出為一個數(shù)組,如下圖:

這里的title是用戶看到的文字,dataIndex要和后臺傳過來的字段一致,不然數(shù)據(jù)不會顯示出來,其次還提供了customRender和scopedSlots兩種方式自定義內容,這里使用了第一種方式,但值得一提的是如果使用的是slot-scope方式,在模板中定義一個點擊事件,想要獲取到當前行的數(shù)據(jù)時,一定一定不要加dataIndex屬性,否則會是undefined
看一個scopedSlots使用的例子:


可以看到上面定義columns時給action沒有加dataIndex
我們繼續(xù)看dataSource是什么,他就是你給table傳遞的數(shù)據(jù)
rowKey可以理解為時循環(huán)時需要的key(必有)pagination初始化一個空對象scroll定義表格可以橫向滾動handleTableChange是當分頁數(shù)據(jù)發(fā)生改變時拋出的事件
為了簡化操作,我這里封裝了一個mixin,當頁面中有table時直接混入mixin就支持分頁和拉取數(shù)據(jù)的邏輯了,代碼如下:
export const mixin = {
data() {
return {
pagination: {},
data: [],
};
},
methods: {
handleTableChange(pagination) {
const pager = {...this.pagination};
pager.current = pagination.current;
this.pagination = pager;
this.loadData({
page: pagination.current
});
},
async loadData(params = {}) {
try {
const {data: table_data, total, per_page} = await this.loadMethod('flush' in params ? {page: 1} : {page: 1, ...params});
const pagination = {...this.pagination};
pagination.total = total;
pagination.pageSize = per_page;
'flush' in params && (pagination.current = 1);
this.data = table_data;
this.pagination = pagination;
} catch (e) {
console.log(e);
}
}
}
};
flush用于標識是否是插入新數(shù)據(jù)或者刪除了數(shù)據(jù),如果是我們直接把page重置為1返回第一頁
我們在頁面使用只需要以下幾行代碼:
import { getLog } from '@/api/api';
import { mixin } from '@/mixins';
export default {
name: "log",
mixins: [mixin],
data() {
return {
columns,
loadMethod: getLog
};
},
mounted() {
this.loadData();
}
};
這樣其他類似的組件也可以直接復用本邏輯。
NO.3 Spin組件
我們平時在后臺管理系統(tǒng)中,ajax請求過程中都會出現(xiàn)全屏加載提示的遮罩層,做這個功能時我想到了這個組件,然后去官方文檔查看,看到了如下圖的操作方式:

然后粘貼到代碼中,各種操作,沒有任何反應,甚至有時候還來點小報錯,Spin組件肯定是引入了,反正就是最后怎么操作都沒成功,無奈之下,自己用了他的樣式寫了個Vue的Spin插件:
我們首先新建Loading.vue
<template>
<div v-if="show" class="loading-container">
<div class="loading-mask"></div>
<div class="loading-content">
<a-spin tip="正在加載數(shù)據(jù)中..." size="large">
</a-spin>
</div>
</div>
</template>
<script>
export default {
name: 'Loading',
props: {
show: Boolean,
},
data() {
return {
}
}
}
</script>
<style lang="scss" scoped>
.loading-container{
position: relative;
text-align: center;
z-index:9999;
.loading-mask{
position: fixed;
top:0;
bottom:0;
left:0;
right:0;
background-color:rgba(0,0,0,.7);
}
.loading-content{
position: fixed;
left: 50%;
top: 50%;
z-index: 300;
transform: translate(-50%,-50%);
text-align: center;
color:#fff;
}
}
</style>
然后再新建Loading.js
import Vue from 'vue';
import loadingComponent from './Loading.vue';
const LoadingConstructor = Vue.extend(loadingComponent);
const instance = new LoadingConstructor({
el: document.createElement('div')
});
instance.show = false; // 默認隱藏
const loading = {
show() { // 顯示方法
instance.show = true;
document.body.appendChild(instance.$el);
},
hide() { // 隱藏方法
instance.show = false;
}
};
export default {
install() {
if (!Vue.$loading) {
Vue.$loading = loading;
}
Vue.mixin({
created() {
this.$loading = Vue.$loading;
}
});
}
};
然后在main.js中
import loading from '@/components/Loading/loading.js'; Vue.use(loading);
然后我們就可以愉快的調用了:
Vue.$loading.show();
打包優(yōu)化
首先就是用官方快速上手中提供的按需加載,這里不再贅述,使用之后還存在以下問題:
里面的moment.js,還有l(wèi)odash,還有icon的dist居然占用了我們500KB的空間,這不能忍,那怎么辦呢?
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
我們首先忽略掉語言包,然后看看圖標怎么優(yōu)化:

config.resolve.alias
.set('@', resolve('src'))
.set('@ant-design/icons/lib/dist$',resolve('src/icon.js'))
我們還需要在src文件夾下面加一個文件 icons.js
//自己項目里面用到的Icon
export {default as UserOutline} from '@ant-design/icons/lib/outline/UserOutline';
export {default as CloseCircleFill} from '@ant-design/icons/lib/fill/CloseCircleFill';
export {default as InfoCircleFill} from '@ant-design/icons/lib/fill/InfoCircleFill';
export {default as CheckCircleFill} from '@ant-design/icons/lib/fill/CheckCircleFill';
我們還可以開啟gzip壓縮等,使用DLL優(yōu)化我們的打包速度,這些在這里就不再贅述了,社區(qū)有很多類似的貼子。
結語
那么對于ant-design-vue使用的前兩天感覺不怎么順手,現(xiàn)在只能說真香
其實這個UI庫用習慣之后會發(fā)現(xiàn)好像Form表單的設計其實比v-model更好用,哈哈
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關文章
vue3.0中使用Element-Plus中Select下的filter-method屬性代碼示例
這篇文章主要給大家介紹了關于vue3.0中使用Element-Plus中Select下的filter-method屬性的相關資料,Filter-method用法是指從一組數(shù)據(jù)中選擇滿足條件的項,文中通過圖文以及代碼介紹的非常詳細,需要的朋友可以參考下2023-12-12
解決vite.config.js無法使用__dirname的問題
這篇文章主要介紹了解決vite.config.js無法使用__dirname的問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-10-10

