fix: 修改场景联动关系用户名称回显的问题

This commit is contained in:
100011797 2023-05-31 17:58:57 +08:00
parent 573e42724d
commit 33a866a569
1 changed files with 3 additions and 1 deletions

View File

@ -98,7 +98,9 @@ watchEffect(() => {
});
watchEffect(() => {
emit('change', { sendTo: props?.template?.template?.sendTo?.join(' ') });
if(props?.template?.template?.sendTo) {
emit('change', { sendTo: props?.template?.template?.sendTo?.join(' ') });
}
});
const getType = (item: any) => {