this.ipList = this.ipList.map((item, index) => {
if (index === this.ipList.length - 1) {
return item.toString();
} else {
return item.toString() + ",";
}
});