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