修改
This commit is contained in:
parent
728ac2ff7b
commit
a37ecfcbf4
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user