|
@@ -140,7 +140,7 @@
|
|
|
<el-button @click="submitFn(scope.row.id)" v-if="
|
|
|
$checkBtnRole('apply', $route.meta.roles) &&
|
|
|
isCustomer &&
|
|
|
- (scope.row.examineStatus == 'SAVE' || scope.row.examineStatus == 'REJECT' )
|
|
|
+ scope.row.examineStatus == 'SAVE'
|
|
|
" type="text" class="textColor" slot="reference">提审</el-button>
|
|
|
<!-- <el-button v-if="isCustomer && scope.row.examineStatus == 'WAIT'" type="text" class="textColor" slot="reference" @click="withdrawFn">撤回</el-button> -->
|
|
|
<el-button v-if="
|
|
@@ -149,7 +149,7 @@
|
|
|
$checkBtnRole('examine', $route.meta.roles)
|
|
|
" @click="examineFn(scope.row.id)" type="text" class="textColor" slot="reference">审核</el-button>
|
|
|
<el-button v-if="
|
|
|
- (scope.row.examineStatus == 'FAIL_ONE' || scope.row.examineStatus == 'REJECT' ||
|
|
|
+ (scope.row.examineStatus == 'FAIL_ONE' ||
|
|
|
scope.row.examineStatus == 'SAVE') &&
|
|
|
$checkBtnRole('edit', $route.meta.roles)
|
|
|
" type="text" class="textColor" slot="reference" @click="editFn(scope.row.id)">修改</el-button>
|