This commit is contained in:
闫晓茹 2024-07-15 17:18:26 +08:00
parent 728ac2ff7b
commit a37ecfcbf4

View File

@ -51,15 +51,11 @@
<!-- 问卷模板 -->
<div
class="right"
v-if="
$route.query.taskNodeType == 'QUESTIONNAIRE_SCALE'
"
v-if="$route.query.taskNodeType == 'QUESTIONNAIRE_SCALE'"
>
<div
class="handle"
v-if="
$route.query.taskNodeType == 'QUESTIONNAIRE_SCALE'
"
class="handle"
v-if="$route.query.taskNodeType == 'QUESTIONNAIRE_SCALE'"
>
<el-form
:inline="true"
@ -301,11 +297,13 @@
<br />
<el-form-item label="是否接通" prop="phone">
<el-radio
disabled
v-model="formlist.phoneConnectStatus"
label="CONNECTED"
>已接通</el-radio
>
<el-radio
disabled
v-model="formlist.phoneConnectStatus"
label="NOTCONNECTED"
>未接通</el-radio
@ -361,6 +359,7 @@
<el-form-item label="任务处理信息" prop="routeHandleRemark">
<el-input
type="textarea"
disabled
v-model="formlist.routeHandleRemark"
style="width: 500px"
placeholder="请输入任务处理信息"
@ -432,9 +431,7 @@ export default {
created() {
this.id = this.$route.query.manageRouteId;
this.info();
if (
this.$route.query.taskNodeType == "QUESTIONNAIRE_SCALE"
) {
if (this.$route.query.taskNodeType == "QUESTIONNAIRE_SCALE") {
this.selectlist();
} else if (this.$route.query.taskNodeType == "PHONE_OUTBOUND") {
if (this.$route.query.routeHandleRemark) {
@ -458,7 +455,6 @@ export default {
},
methods: {
scriptlook(e) {
console.log(e, "eeeeee");
if (e == null || e == "") {
this.$message.error("暂无话术图");
} else {
@ -480,7 +476,6 @@ export default {
//
messageontemplateMESSAGE(item) {
console.log(item, "2222222");
this.formlist.phoneMessageTemplateId = item.templateId;
this.formlist.phoneMessageTemplateName = item.templateName;
// this.form.messagePreview = item.templateContent;
@ -543,7 +538,7 @@ export default {
},
// radio
radioChange(e, item, index) {
console.log(e, item, index, "选中某个单选框时");
// console.log(e, item, index, "");
this.questiondata.subjectResultList[index].optionResults.forEach((el) => {
if (el.id == item.id) {
el.optionChooseSign = "0";
@ -551,7 +546,7 @@ export default {
el.optionChooseSign = "1";
}
});
console.log(this.questiondata, "this.questiondata");
// console.log(this.questiondata, "this.questiondata");
this.questiondata;
},
//
@ -724,10 +719,9 @@ export default {
margin-top: 20px;
::v-deep .el-textarea__inner {
width: 500px;
height: 250px;
height: 250px;
}
}
}
}
.headernew {