是否包含中文:
let creg= new RegExp("[\\u4E00-\\u9FFF]+","g");
if(creg.test(this.copyProductDialogTextarea)){
this.$message.error("输入的Product No不能包含中文,请重新输入。");
return;
}
英文逗号:
var reg =/^([\u0391-\uFFE5\d\w,])*([\u0391-\uFFE5\d\w]+)$/;
if(reg.exec(this.copyProductDialogTextarea)){
this.$message.error("请输入用英文逗号隔开的Product No");
}