修改重播次数
This commit is contained in:
parent
abf2a140ad
commit
a60e2d1776
@ -223,14 +223,7 @@
|
||||
<div
|
||||
style="background-color: #fff; border-radius: 10px; padding: 20px"
|
||||
:style="
|
||||
formInline.taskNodeType
|
||||
? formInline.taskNodeType != 'PHONE_OUTBOUND'
|
||||
? formInline.taskNodeType == 'TEXT_REMIND'
|
||||
? 'height:260px'
|
||||
: 'height:160px'
|
||||
: 'height:80px'
|
||||
: 'height:80px'
|
||||
"
|
||||
formInline.taskNodeType? formInline.taskNodeType != 'PHONE_OUTBOUND'? formInline.taskNodeType == 'TEXT_REMIND' ? 'height:260px': 'height:179px': 'height:80px': 'height:80px'"
|
||||
>
|
||||
<el-form :model="formInline" class="demo-form-inline">
|
||||
<el-form-item label="任务节点类型">
|
||||
@ -283,15 +276,81 @@
|
||||
></question>
|
||||
</el-form-item>
|
||||
<el-form-item label="" style="margin-left: 57px">
|
||||
|
||||
<el-radio-group
|
||||
v-model="formInline.phoneDialMethod"
|
||||
>
|
||||
<el-radio-group v-model="formInline.phoneDialMethod">
|
||||
<el-radio label="">小程序问卷</el-radio>
|
||||
<el-radio label="AI">AI自动外呼</el-radio>
|
||||
<el-radio label="COMMON">人工随访</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<div
|
||||
class="flextow"
|
||||
v-if="
|
||||
formInline.phoneDialMethod == 'AI' ||
|
||||
formInline.phoneDialMethod == 'COMMON'
|
||||
"
|
||||
>
|
||||
<div class="itemlist">
|
||||
重拨次数:
|
||||
<span>
|
||||
<el-select
|
||||
v-model="formInline.phoneRedialTimes"
|
||||
style="width: 120px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in optionslisttime"
|
||||
:key="item.dictValue"
|
||||
:label="item.dictLabel"
|
||||
:value="item.dictValue"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</span>
|
||||
</div>
|
||||
<div class="itemlist">
|
||||
时间间隔(分):
|
||||
<span>
|
||||
<el-input
|
||||
v-model.number="formInline.phoneTimeInterval"
|
||||
oninput="value=value.replace(/[^\d]/g,'')"
|
||||
style="width: 100px"
|
||||
>
|
||||
</el-input>
|
||||
</span>
|
||||
</div>
|
||||
<div class="itemlist">
|
||||
短信提醒:
|
||||
<el-select
|
||||
v-model="formInline.phoneMessageRemind"
|
||||
style="width: 150px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in optionslist"
|
||||
:key="item.dictValue"
|
||||
:label="item.dictLabel"
|
||||
:value="item.dictValue"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="itemlist">
|
||||
短信模板:
|
||||
<span
|
||||
:class="
|
||||
formInline.phoneMessageRemind == 'NOT_SEND_MESSAGE'
|
||||
? 'spanname'
|
||||
: ''
|
||||
"
|
||||
>
|
||||
<message
|
||||
style="width: 200px"
|
||||
@on-template="messageontemplateMESSAGE"
|
||||
:templateId="formInline.phoneMessageTemplateId"
|
||||
:templateName="formInline.phoneMessageTemplateName"
|
||||
>
|
||||
</message>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <el-form-item label="开启人工随访" label-width="150px">
|
||||
<el-switch
|
||||
v-model="formInline.phoneDialMethod"
|
||||
@ -852,7 +911,7 @@ export default {
|
||||
});
|
||||
})
|
||||
},
|
||||
Typechange(e){
|
||||
Typechange(e) {
|
||||
this.$forceUpdate();
|
||||
// this.formInline.radio = e
|
||||
},
|
||||
@ -1310,6 +1369,36 @@ export default {
|
||||
width: 73%;
|
||||
// height: calc(100vh - 320px);
|
||||
height: 100%;
|
||||
.flextow {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
align-items: center;
|
||||
// background: red;
|
||||
justify-content: space-between;
|
||||
margin-top: -43px;
|
||||
|
||||
.itemlist {
|
||||
height: 30px;
|
||||
margin-top: 30px;
|
||||
line-height: 30px;
|
||||
font-size: 14px;
|
||||
color: #64666a;
|
||||
|
||||
.spanname {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
::v-deep .el-input__inner {
|
||||
color: black;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
span {
|
||||
color: black;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user