修改任务管理--处理
This commit is contained in:
parent
bc37303345
commit
10ae82f280
@ -9,11 +9,7 @@
|
||||
v-if="$route.query.taskNodeType == 'PHONE_OUTBOUND'"
|
||||
>
|
||||
<div class="nexttime">
|
||||
<el-form
|
||||
ref="formlist"
|
||||
:model="formlist"
|
||||
label-width="110px"
|
||||
>
|
||||
<el-form ref="formlist" :model="formlist" label-width="110px">
|
||||
<el-form-item label="电话" prop="patientPhone">
|
||||
<el-input
|
||||
disabled
|
||||
@ -91,7 +87,6 @@
|
||||
placeholder=""
|
||||
/>
|
||||
</el-form-item>
|
||||
|
||||
</el-form>
|
||||
</div>
|
||||
</el-tab-pane>
|
||||
@ -677,9 +672,17 @@ export default {
|
||||
this.$store
|
||||
.dispatch("tagsView/delView", this.$route)
|
||||
.then(({ visitedViews }) => {
|
||||
if (this.$route.query.path == "/task/taskmanagement") {
|
||||
this.$router.push({
|
||||
path: "/task/taskmanagement",
|
||||
});
|
||||
} else {
|
||||
this.$router.push({
|
||||
path: "/task/followup",
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
@ -721,9 +724,16 @@ export default {
|
||||
this.$store
|
||||
.dispatch("tagsView/delView", this.$route)
|
||||
.then(({ visitedViews }) => {
|
||||
if (this.$route.query.path == "/task/taskmanagement") {
|
||||
this.$router.push({
|
||||
path: "/task/taskmanagement",
|
||||
});
|
||||
} else {
|
||||
this.$router.push({
|
||||
path: "/task/followup",
|
||||
});
|
||||
|
||||
}
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
@ -842,7 +852,6 @@ export default {
|
||||
// background: aliceblue;
|
||||
/* height: 30vh; */
|
||||
margin-top: 25px;
|
||||
|
||||
}
|
||||
|
||||
::v-deep .el-tabs__header {
|
||||
@ -942,7 +951,6 @@ export default {
|
||||
width: 338px;
|
||||
height: 250px;
|
||||
margin-top: 10px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1507,7 +1507,7 @@
|
||||
this.$router.push({
|
||||
path: "/task/followupsee",
|
||||
query: {
|
||||
path: "/task/followup",
|
||||
path: "/task/taskmanagement",
|
||||
patientId: row.patientId,
|
||||
taskNodeType: row.taskNodeType,
|
||||
templateId: row.templateId,
|
||||
|
||||
@ -60,10 +60,7 @@
|
||||
<el-tab-pane label="签约记录" name="five">
|
||||
<signingRecords v-if="activeName == 'five'"></signingRecords>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane
|
||||
label="任务处理"
|
||||
name="six"
|
||||
>
|
||||
<el-tab-pane label="任务处理" name="six">
|
||||
<keep-alive>
|
||||
<Taskprocess v-if="activeName == 'six'" ref="process"></Taskprocess>
|
||||
</keep-alive>
|
||||
@ -133,9 +130,17 @@ export default {
|
||||
},
|
||||
// 取消
|
||||
cencal() {
|
||||
if (this.$route.query.path == "/task/taskmanagement") {
|
||||
this.$router.push({
|
||||
path: "/task/taskmanagement",
|
||||
});
|
||||
} else {
|
||||
this.$router.push({
|
||||
path: "/task/followup",
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
},
|
||||
};
|
||||
@ -275,7 +280,6 @@ export default {
|
||||
background-color: #fff;
|
||||
margin: 10px auto;
|
||||
padding: 10px 0px 10px 20px;
|
||||
|
||||
}
|
||||
.topheaderup {
|
||||
width: 99%;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user