任务待办 任务记录
This commit is contained in:
parent
56feabe81c
commit
d8ba5ddd41
@ -338,6 +338,11 @@ export default {
|
||||
selectPhonePush(this.$route.query.manageRouteNodeId).then(response => {
|
||||
if (response.data) {
|
||||
this.formlist = response.data;
|
||||
if(this.formlist.phonePushSign==0){
|
||||
this.formlist.phonePushSign='0'
|
||||
}else if(this.formlist.phonePushSign==1){
|
||||
this.formlist.phonePushSign='1'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@ -197,28 +197,17 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<br />
|
||||
<el-form-item label="发送短信" prop="phone">
|
||||
<el-form-item label="电话短信提醒" prop="phone">
|
||||
<el-select disabled v-model="formlist.phoneMessageRemind" style="width: 200px">
|
||||
<el-option v-for="item in optionslist" :key="item.dictValue" :label="item.dictLabel"
|
||||
:value="item.dictValue">
|
||||
</el-option>
|
||||
</el-select>
|
||||
<!-- <el-input
|
||||
style="width: 200px"
|
||||
v-model="formlist.phoneMessageRemind"
|
||||
placeholder="请输入电话"
|
||||
/> -->
|
||||
</el-form-item>
|
||||
<br />
|
||||
|
||||
<el-form-item label="话术图" prop="phone">
|
||||
<img :src="formlist.scriptFilePath" style="width: 250px; height: 200px" />
|
||||
</el-form-item>
|
||||
<br />
|
||||
|
||||
<el-form-item label="短信模板:" prop="phone">
|
||||
<span class="spanname">
|
||||
<message style="width: 200px;height:100px" @on-template="messageontemplateMESSAGE"
|
||||
<message style="width: 200px;height:50px" @on-template="messageontemplateMESSAGE"
|
||||
:templateId="formlist.phoneMessageTemplateId" :templateName="formlist.phoneMessageTemplateName">
|
||||
</message>
|
||||
</span>
|
||||
@ -283,12 +272,12 @@ export default {
|
||||
},
|
||||
rules: {
|
||||
routeHandleRemark: [
|
||||
{ required: true, message: "请输入任务处理信息", trigger: "change" },
|
||||
{ required: true, message: "请输入任务处理信息", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
rulesphone: {
|
||||
routeHandleRemark: [
|
||||
{ required: true, message: "请输入任务处理信息", trigger: "change" },
|
||||
{ required: true, message: "请输入任务处理信息", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
radio: "B",
|
||||
@ -304,9 +293,10 @@ export default {
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.infolistword();
|
||||
|
||||
this.id = this.$route.query.manageRouteId;
|
||||
this.info();
|
||||
this.infolistword()
|
||||
this.infolistMESSAGE();
|
||||
if (
|
||||
this.$route.query.taskType == "QUESTIONNAIRE_SCALE" ||
|
||||
@ -314,11 +304,19 @@ export default {
|
||||
) {
|
||||
this.questioninfo();
|
||||
} else {
|
||||
selectPhonePush(this.$route.query.manageRouteNodeId).then((response) => {
|
||||
selectPhonePush(this.$route.query.manageRouteNodeId).then((response) => {
|
||||
if (response.data) {
|
||||
this.formlist = response.data;
|
||||
if(this.formlist.phonePushSign==0){
|
||||
this.formlist.phonePushSign='0'
|
||||
}else if(this.formlist.phonePushSign==1){
|
||||
this.formlist.phonePushSign='1'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@ -385,6 +383,7 @@ export default {
|
||||
info() {
|
||||
selectFollowPatientInfo(this.id).then((res) => {
|
||||
this.list = res.data;
|
||||
|
||||
});
|
||||
},
|
||||
questioninfo() {
|
||||
|
||||
@ -460,6 +460,11 @@ export default {
|
||||
selectPhonePush(this.$route.query.manageRouteNodeId).then((response) => {
|
||||
if (response.data) {
|
||||
this.formlist = response.data;
|
||||
if(this.formlist.phonePushSign==0){
|
||||
this.formlist.phonePushSign='0'
|
||||
}else if(this.formlist.phonePushSign==1){
|
||||
this.formlist.phonePushSign='1'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user