|
@@ -82,21 +82,21 @@
|
|
|
<!-- class="record"
|
|
|
class="record" -->
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="medium"
|
|
|
- type="danger"
|
|
|
+ <div
|
|
|
+ class="record"
|
|
|
v-if="scope.row.statusFlag == 1"
|
|
|
@click="rejectList(scope.row)"
|
|
|
- >驳回</el-button
|
|
|
>
|
|
|
- <el-button
|
|
|
- size="medium"
|
|
|
- type="primary"
|
|
|
- v-if="scope.row.statusFlag == 1"
|
|
|
+ 驳回
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="record"
|
|
|
+ v-if="scope.row.statusFlag == 1"
|
|
|
@click="adoptList(scope.row)"
|
|
|
v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|
|
|
- >通过</el-button
|
|
|
>
|
|
|
+ 通过
|
|
|
+ </div>
|
|
|
<template
|
|
|
v-else
|
|
|
v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|