? ? exportInfoList () {? ?//點(diǎn)擊導(dǎo)出方法
? ? ? this.$refs.table.exportCsv({
? ? ? ? ? filename: '學(xué)生簡(jiǎn)歷列表信息',
? ? ? ? ? columns:this.columns1.filter((col, index) => index < 8 && index > 0), //自定義導(dǎo)出那些列,不寫默認(rèn)導(dǎo)出表格全部
? ? ? ? ? data:this.transCharactor(this.data1)? //處理后的數(shù)據(jù)
? ? ? });
? ? },
? ? transCharactor(dataList) {
? ? ? dataList.forEach(res=>{
? ? ? ? res.idCard = " ?" + res.idCard.toString() //將身份證號(hào)碼轉(zhuǎn)換為字符串,再在前面拼接上空格,此時(shí)導(dǎo)出的身份證號(hào)碼會(huì)完整展示
? ? ? })
? ? ? return dataList
? ? },