if (!/^[a-zA-Zu4e00-u9fa5]+$/.test(this.name)) { return this.$refs.uToast.show({ title: '请输入中文或英文' }) }
/^[a-zA-Zu4e00-u9fa5]+$/ // 正则表达式
if (!/^[a-zA-Zu4e00-u9fa5]+$/.test(this.name)) { return this.$refs.uToast.show({ title: '请输入中文或英文' }) }
/^[a-zA-Zu4e00-u9fa5]+$/ // 正则表达式