修改路径节点
This commit is contained in:
parent
56f71ca49e
commit
ce44e95737
@ -33,7 +33,7 @@ export default {
|
|||||||
name: "specialDiseaseNode",
|
name: "specialDiseaseNode",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value:1,
|
value: 1,
|
||||||
ConditionValue: [],
|
ConditionValue: [],
|
||||||
dictDataType: "",
|
dictDataType: "",
|
||||||
openlist: {
|
openlist: {
|
||||||
@ -117,15 +117,14 @@ export default {
|
|||||||
}
|
}
|
||||||
this.taskinfo();
|
this.taskinfo();
|
||||||
this.infolistname();
|
this.infolistname();
|
||||||
|
|
||||||
this.infolists();
|
this.infolists();
|
||||||
this.infolistoptionslistS();
|
this.infolistoptionslistS();
|
||||||
this.infolistMESSAGE();
|
this.infolistMESSAGE();
|
||||||
this.infolistword();
|
this.infolistword();
|
||||||
this.optiononditionOperator();
|
// this.optiononditionOperator();
|
||||||
this.optiononditionOperators();
|
this.optiononditionOperators();
|
||||||
},
|
},
|
||||||
beforeDestroy() {},
|
beforeDestroy() { },
|
||||||
watch: {
|
watch: {
|
||||||
"form.phoneMessageRemind": {
|
"form.phoneMessageRemind": {
|
||||||
handler(newValue, oldValue) {
|
handler(newValue, oldValue) {
|
||||||
@ -518,6 +517,7 @@ export default {
|
|||||||
// this.optionstriggerConditionOperator = res.data;
|
// this.optionstriggerConditionOperator = res.data;
|
||||||
// });
|
// });
|
||||||
});
|
});
|
||||||
|
this.optiononditionOperator();
|
||||||
if (res.data.length == 1) {
|
if (res.data.length == 1) {
|
||||||
// 回显一条时
|
// 回显一条时
|
||||||
this.updata = res.data[0];
|
this.updata = res.data[0];
|
||||||
@ -602,7 +602,7 @@ export default {
|
|||||||
messageontemplateword(item) {
|
messageontemplateword(item) {
|
||||||
this.form.phoneTemplateId = item.templateId;
|
this.form.phoneTemplateId = item.templateId;
|
||||||
this.form.phoneTemplateName = item.templateName;
|
this.form.phoneTemplateName = item.templateName;
|
||||||
console.log( this.form.phoneTemplateId,' this.form.phoneTemplateId')
|
console.log(this.form.phoneTemplateId, ' this.form.phoneTemplateId')
|
||||||
|
|
||||||
// this.form.messagePreview = item.templateContent;
|
// this.form.messagePreview = item.templateContent;
|
||||||
},
|
},
|
||||||
@ -650,10 +650,10 @@ export default {
|
|||||||
this.lists.forEach((e) => {
|
this.lists.forEach((e) => {
|
||||||
e.list.length > 0
|
e.list.length > 0
|
||||||
? e.list.forEach((el) => {
|
? e.list.forEach((el) => {
|
||||||
el.routeNodeDay = e.routeNodeDay;
|
el.routeNodeDay = e.routeNodeDay;
|
||||||
el.routeNodeName = e.routeNodeName;
|
el.routeNodeName = e.routeNodeName;
|
||||||
this.itemlist.specialDiseaseNodeList.push(el);
|
this.itemlist.specialDiseaseNodeList.push(el);
|
||||||
})
|
})
|
||||||
: "";
|
: "";
|
||||||
});
|
});
|
||||||
// this.updata.specialDiseaseNodeList =
|
// this.updata.specialDiseaseNodeList =
|
||||||
|
|||||||
@ -168,7 +168,7 @@ export default {
|
|||||||
questionnaireStatus: "PUBLISHED",
|
questionnaireStatus: "PUBLISHED",
|
||||||
// questionType: "REGULAR_QUESTIONNAIRE",
|
// questionType: "REGULAR_QUESTIONNAIRE",
|
||||||
}).then(response => {
|
}).then(response => {
|
||||||
console.log('0000000000')
|
// console.log('0000000000')
|
||||||
// response.data.forEach(e => {
|
// response.data.forEach(e => {
|
||||||
// e.label = e.departmentName
|
// e.label = e.departmentName
|
||||||
// })
|
// })
|
||||||
|
|||||||
@ -332,7 +332,7 @@ export default {
|
|||||||
});
|
});
|
||||||
|
|
||||||
bankLevel("3").then((res) => {
|
bankLevel("3").then((res) => {
|
||||||
console.log(res, "打印res值");
|
// console.log(res, "打印res值");
|
||||||
// res.forEach((e) => {
|
// res.forEach((e) => {
|
||||||
// e.children.forEach((el) => {
|
// e.children.forEach((el) => {
|
||||||
// el.children.forEach((f) => {
|
// el.children.forEach((f) => {
|
||||||
@ -344,7 +344,7 @@ export default {
|
|||||||
// });
|
// });
|
||||||
// });
|
// });
|
||||||
this.fieldoptions = res;
|
this.fieldoptions = res;
|
||||||
console.log(this.fieldoptions, "***");
|
// console.log(this.fieldoptions, "***");
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
beforeClose() {
|
beforeClose() {
|
||||||
|
|||||||
@ -299,9 +299,9 @@
|
|||||||
<div class="pushMethod">
|
<div class="pushMethod">
|
||||||
推送方式:
|
推送方式:
|
||||||
<span>
|
<span>
|
||||||
<el-radio-group v-model="form.sex">
|
<el-radio-group v-model="form.phoneDialMethod">
|
||||||
<el-radio label="MALE">人工电话</el-radio>
|
<el-radio label="COMMON">人工电话</el-radio>
|
||||||
<el-radio label="FEMALE">自动外呼</el-radio>
|
<el-radio label="AI">自动外呼</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@ -322,7 +322,7 @@
|
|||||||
></scripts>
|
></scripts>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="pushMethod" v-if="form.sex == 'MALE' || !form.sex">
|
<div class="pushMethod" v-if="form.phoneDialMethod == 'COMMON' || !form.phoneDialMethod">
|
||||||
问卷模板:
|
问卷模板:
|
||||||
<span class="spanname" v-if="form.phoneTemplateId">
|
<span class="spanname" v-if="form.phoneTemplateId">
|
||||||
<question
|
<question
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user