修改bug 52682 企标编辑 选择部门时 出现了英文

This commit is contained in:
zhangyichen
2022-04-27 15:56:49 +08:00
parent 2e7f9c16c4
commit ded59b7414
@@ -5132,6 +5132,15 @@ export default {
} }
}, },
watch: { watch: {
'sarBussionessStandEO.QCDW'(val) {
let arr = val.split(',')
arr.forEach((item, index) => {
if (item === undefined || item === 'undefined') {
arr.splice(index, 1)
}
})
return arr.toString()
},
filterText(val) { filterText(val) {
this.$refs.tree.filter(val); this.$refs.tree.filter(val);
}, },