fix: 修改场景联动关系用户名称回显的问题
This commit is contained in:
parent
573e42724d
commit
33a866a569
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue