|
@@ -61,6 +61,7 @@
|
|
|
<el-tag size="mini" type="success" v-show="scope.row.examineStatus == 'OK'">复核通过</el-tag>
|
|
|
<el-tag size="mini" type="danger" v-show="scope.row.examineStatus == 'FALL'">不通过</el-tag>
|
|
|
<el-tag size="mini" type="info" v-show="scope.row.examineStatus == 'CLOSE'">已关闭</el-tag>
|
|
|
+ <el-tag size="mini" type="danger" v-show="scope.row.examineStatus == 'REJECT'">驳回</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="left" label="返利转账单号" prop="id" min-width="200" show-overflow-tooltip>
|
|
@@ -139,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 == 'SAVE' || scope.row.examineStatus == 'REJECT' )
|
|
|
" 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="
|
|
@@ -148,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 == 'FAIL_ONE' || scope.row.examineStatus == 'REJECT' ||
|
|
|
scope.row.examineStatus == 'SAVE') &&
|
|
|
$checkBtnRole('edit', $route.meta.roles)
|
|
|
" type="text" class="textColor" slot="reference" @click="editFn(scope.row.id)">修改</el-button>
|