电投投被保人姓名支持空格

This commit is contained in:
lyt
2023-04-26 11:32:18 +08:00
parent 66e54cf523
commit 11e5bf2f70

View File

@@ -102,8 +102,8 @@ export default {
}, },
methods: { methods: {
onChange(value) { onChange(value) {
let regExp = /\s+/ // let regExp = /\s+/
value = value.replace(regExp, '') // value = value.replace(regExp, '')
this.name = value this.name = value
this.$emit('input', value) this.$emit('input', value)
}, },