修改
This commit is contained in:
parent
ded4501a4c
commit
29f4deb4ed
@ -603,7 +603,7 @@ export default {
|
|||||||
// } else if (e.taskNodeType == 'TEXT_REMIND') {
|
// } else if (e.taskNodeType == 'TEXT_REMIND') {
|
||||||
// e.taskSubdivisionName = e.taskSubdivisionName + '(文字提醒)'
|
// e.taskSubdivisionName = e.taskSubdivisionName + '(文字提醒)'
|
||||||
// }
|
// }
|
||||||
if (e.taskNodeType == "PHONE_OUTBOUND" && e.flowScheme) {
|
if (e.taskNodeType == "PHONE_OUTBOUND") {
|
||||||
this.phoneNodeContent = e.flowScheme;
|
this.phoneNodeContent = e.flowScheme;
|
||||||
}
|
}
|
||||||
if (e.messagePushSign) {
|
if (e.messagePushSign) {
|
||||||
@ -895,10 +895,18 @@ export default {
|
|||||||
this.lookitemnew = res.data;
|
this.lookitemnew = res.data;
|
||||||
});
|
});
|
||||||
} else if (
|
} else if (
|
||||||
uitem.taskNodeType == "PHONE_OUTBOUND" &&
|
uitem.taskNodeType == "PHONE_OUTBOUND"
|
||||||
uitem.flowScheme
|
|
||||||
) {
|
) {
|
||||||
this.phoneNodeContent = uitem.flowScheme;
|
if (uitem.flowScheme) {
|
||||||
|
this.phoneNodeContent = uitem.flowScheme;
|
||||||
|
} else {
|
||||||
|
this.phoneNodeContent = JSON.stringify({
|
||||||
|
scriptInfoId: null,
|
||||||
|
flowScheme: null,
|
||||||
|
nodes: [],
|
||||||
|
edges: [],
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.taskPartitionList = [];
|
this.taskPartitionList = [];
|
||||||
if (uitem.taskType) {
|
if (uitem.taskType) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user