关闭任务

This commit is contained in:
yanran200730
2023-03-01 14:21:42 +08:00
parent 0bed36e832
commit c67611f204
2 changed files with 14 additions and 12 deletions

View File

@@ -74,6 +74,7 @@
<el-table-column slot="options" width="140px" fixed="right" label="操作" align="center"> <el-table-column slot="options" width="140px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<div class="table-options"> <div class="table-options">
<el-button type="text" @click="close(row.id)" v-if="['3'].includes(row.status)">关闭</el-button>
<el-button type="text" @click="remindExamine(row.id)" v-if="['0'].includes(row.status)">催办</el-button> <el-button type="text" @click="remindExamine(row.id)" v-if="['0'].includes(row.status)">催办</el-button>
<el-button type="text" @click="cancel(row.id)" v-if="['0'].includes(row.status)">撤回</el-button> <el-button type="text" @click="cancel(row.id)" v-if="['0'].includes(row.status)">撤回</el-button>
<el-button type="text" @click="toDetail(row.id)">详情</el-button> <el-button type="text" @click="toDetail(row.id)">详情</el-button>
@@ -182,7 +183,7 @@
remindExamine (id) { remindExamine (id) {
this.$confirm('确认再次通知任务审核人员?').then(() => { this.$confirm('确认再次通知任务审核人员?').then(() => {
this.instance.post(`/app/appmasssendingtask/remindExamine?id=${id}`).then(res => { this.instance.post(`/app/whchatmomentstask/remindExamine?id=${id}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message.success('催办成功!') this.$message.success('催办成功!')
this.getList() this.getList()
@@ -193,7 +194,7 @@
cancel (id) { cancel (id) {
this.$confirm('确认撤回该群发任务?').then(() => { this.$confirm('确认撤回该群发任务?').then(() => {
this.instance.post(`/app/appmasssendingtask/cancel?id=${id}`).then(res => { this.instance.post(`/app/whchatmomentstask/cancel?id=${id}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message.success('撤回成功!') this.$message.success('撤回成功!')
this.getList() this.getList()
@@ -202,11 +203,11 @@
}) })
}, },
remove(id) { close (id) {
this.$confirm('确定删除该数据').then(() => { this.$confirm('确定关闭该群发任务').then(() => {
this.instance.post(`/app/appmasssendingtask/delete?ids=${id}`).then(res => { this.instance.post(`/app/whchatmomentstask/closeTask?id=${id}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message.success('删除成功!') this.$message.success('关闭成功!')
this.getList() this.getList()
} }
}) })

View File

@@ -74,6 +74,7 @@
<el-table-column slot="options" width="140px" fixed="right" label="操作" align="center"> <el-table-column slot="options" width="140px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<div class="table-options"> <div class="table-options">
<el-button type="text" @click="close(row.id)" v-if="['3'].includes(row.status)">关闭</el-button>
<el-button type="text" @click="remindExamine(row.id)" v-if="['0'].includes(row.status)">催办</el-button> <el-button type="text" @click="remindExamine(row.id)" v-if="['0'].includes(row.status)">催办</el-button>
<el-button type="text" @click="cancel(row.id)" v-if="['0'].includes(row.status)">撤回</el-button> <el-button type="text" @click="cancel(row.id)" v-if="['0'].includes(row.status)">撤回</el-button>
<el-button type="text" @click="toDetail(row.id)">详情</el-button> <el-button type="text" @click="toDetail(row.id)">详情</el-button>
@@ -182,7 +183,7 @@
remindExamine (id) { remindExamine (id) {
this.$confirm('确认再次通知任务审核人员?').then(() => { this.$confirm('确认再次通知任务审核人员?').then(() => {
this.instance.post(`/app/appmasssendingtask/remindExamine?id=${id}`).then(res => { this.instance.post(`/app/whchatmomentstask/remindExamine?id=${id}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message.success('催办成功!') this.$message.success('催办成功!')
this.getList() this.getList()
@@ -193,7 +194,7 @@
cancel (id) { cancel (id) {
this.$confirm('确认撤回该群发任务?').then(() => { this.$confirm('确认撤回该群发任务?').then(() => {
this.instance.post(`/app/appmasssendingtask/cancel?id=${id}`).then(res => { this.instance.post(`/app/whchatmomentstask/cancel?id=${id}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message.success('撤回成功!') this.$message.success('撤回成功!')
this.getList() this.getList()
@@ -202,11 +203,11 @@
}) })
}, },
remove(id) { close (id) {
this.$confirm('确定删除该数据').then(() => { this.$confirm('确定关闭该群发任务').then(() => {
this.instance.post(`/app/appmasssendingtask/delete?ids=${id}`).then(res => { this.instance.post(`/app/whchatmomentstask/closeTask?id=${id}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message.success('删除成功!') this.$message.success('关闭成功!')
this.getList() this.getList()
} }
}) })