//去重方法
uniq(array){
array.sort();
var temp=[array[0]];
for(var i = 1; i < array.length; i++){
if( array[i] !== temp[temp.length-1]){
temp.push(array[i]);
}
}
return temp;
},
// 列表中使用
<el-table-column
prop="aaaaa"
label="目的地名称">
<template scope="scope">
{{uniq(scope.row.aaaaa.split(',')).join(',')}}
</template>
</el-table-column>