|
@@ -265,7 +265,7 @@ export default {
|
|
|
<div class='operation-btns'>
|
|
|
{this.$checkBtnRole('apply', this.$route.meta.roles) && row.examineStatus == '保存' ? (
|
|
|
<el-popconfirm
|
|
|
- onOnConfirm={async() => {
|
|
|
+ onConfirm={async() => {
|
|
|
this.handleSubmit(row.parentId, row)
|
|
|
}}
|
|
|
title='是否确定需要申请该项内容?'
|
|
@@ -280,7 +280,7 @@ export default {
|
|
|
|
|
|
{this.$checkBtnRole('apply', this.$route.meta.roles) && row.examineStatus == '待审核' ? (
|
|
|
<el-popconfirm
|
|
|
- onOnConfirm={async() => {
|
|
|
+ onConfirm={async() => {
|
|
|
this.handleWithdraw(row.parentId, row)
|
|
|
}}
|
|
|
title='是否确定需要撤回该项内容?'
|
|
@@ -295,7 +295,7 @@ export default {
|
|
|
|
|
|
{this.$checkBtnRole('examine', this.$route.meta.roles) && row.examineStatus === '审核通过' ? (
|
|
|
<el-popconfirm
|
|
|
- onOnConfirm={async() => {
|
|
|
+ onConfirm={async() => {
|
|
|
this.handleAbandon(row.parentId, row)
|
|
|
}}
|
|
|
title='是否确定需要弃审该项内容?'
|
|
@@ -362,7 +362,7 @@ export default {
|
|
|
|
|
|
{this.$checkBtnRole('del', this.$route.meta.roles) && (row.examineStatus == '保存' || row.examineStatus == '关闭') ? (
|
|
|
<el-popconfirm
|
|
|
- onOnConfirm={async() => {
|
|
|
+ onConfirm={async() => {
|
|
|
this.handleDelete(row.parentId, row)
|
|
|
}}
|
|
|
title='是否确定需要删除该项内容?'
|