this.formData.itemList = [
{
removeReason: this.formData.removeReason,
removeContent: this.formData.removeContent
}
]
this.$confirm(
'您确定删除执法信息?确定后将进行执法信息变更审批,审批后才允许变更!!',
'警告提示',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}
)
.then(() => {
this.submitDeleteLast()
})
.catch(() => {})