|
@@ -474,13 +474,14 @@
|
|
|
<template slot-scope="scope">
|
|
|
<el-popconfirm
|
|
|
v-if="scope.row.examineStatus === 'SAVE'"
|
|
|
- style="margin-right: 10px"
|
|
|
+ style="margin-left: 10px"
|
|
|
title="确定提审?"
|
|
|
@onConfirm="handleSubmit(scope.row.id)"
|
|
|
>
|
|
|
<el-button slot="reference" type="text">提审</el-button>
|
|
|
</el-popconfirm>
|
|
|
<el-button
|
|
|
+ style="margin-left: 10px"
|
|
|
v-if="
|
|
|
scope.row.examineStatus == 'WAIT' &&
|
|
|
$checkBtnRole('examine', $route.meta.roles)
|
|
@@ -492,6 +493,7 @@
|
|
|
<el-button slot="reference" type="text">删除</el-button>
|
|
|
</el-popconfirm>
|
|
|
<el-button
|
|
|
+ style="margin-left: 10px"
|
|
|
v-if="
|
|
|
scope.row.examineStatus === 'SAVE' &&
|
|
|
$checkBtnRole('edit', $route.meta.roles)
|
|
@@ -499,7 +501,7 @@
|
|
|
type="text"
|
|
|
@click="toForm(scope.row)"
|
|
|
>编辑</el-button>
|
|
|
- <el-popconfirm v-if="$checkBtnRole('examine', $route.meta.roles) && scope.row.examineStatus === 'OK'" style="margin-left: 10px;" title="确定弃审吗?" @onConfirm="handleAbandon(scope.row.id)">
|
|
|
+ <el-popconfirm style="margin-left: 10px" v-if="$checkBtnRole('examine', $route.meta.roles) && scope.row.examineStatus === 'OK'" title="确定弃审吗?" @onConfirm="handleAbandon(scope.row.id)">
|
|
|
<el-button slot="reference" type="text">弃审</el-button>
|
|
|
</el-popconfirm>
|
|
|
<el-popconfirm
|
|
@@ -520,6 +522,7 @@
|
|
|
>详情</el-button>
|
|
|
|
|
|
<el-button
|
|
|
+ style="margin-left: 10px"
|
|
|
v-if="
|
|
|
scope.row.examineStatus === 'OK' &&
|
|
|
$checkBtnRole('examine', $route.meta.roles)
|