Commit 4bdfd60b authored by Qingyu Deng's avatar Qingyu Deng

feat: revert tab hiding

parent 592ec616
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
v-model="searchProps.withdraw_apply_status" v-model="searchProps.withdraw_apply_status"
> >
<el-tab-pane <el-tab-pane
v-if="isAllowedToAudit"
label="待审核" label="待审核"
:name="TABS.pending" :name="TABS.pending"
@tab-click="handleTabChange" @tab-click="handleTabChange"
...@@ -145,13 +144,19 @@ ...@@ -145,13 +144,19 @@
> >
<el-button <el-button
type="text" type="text"
v-if="searchProps.withdraw_apply_status === TABS.pending" v-if="
searchProps.withdraw_apply_status === TABS.pending &&
isAllowedToAudit
"
@click="handleDetail('audit', scope.row.id)" @click="handleDetail('audit', scope.row.id)"
>审核</el-button >审核</el-button
> >
<el-button <el-button
type="text" type="text"
v-if="searchProps.withdraw_apply_status == TABS.failed" v-if="
searchProps.withdraw_apply_status == TABS.failed &&
isAllowedToAudit
"
@click="handleFinzingFind(scope.row.wallet_id)" @click="handleFinzingFind(scope.row.wallet_id)"
>解冻</el-button >解冻</el-button
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment