11
This commit is contained in:
@@ -35,13 +35,24 @@
|
||||
<el-tag disable-transitions>{{ scope.row.user.nick_name }}</el-tag>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
<el-table-column label="状态" v-if="userInfo == 1">
|
||||
<el-table-column label="待审状态" v-if="userInfo == 1">
|
||||
<template #default="scope">
|
||||
<el-tag type="info" v-if="scope.row.status == 0">待审核</el-tag>
|
||||
<el-tag type="success" v-if="scope.row.status == 1">通过</el-tag>
|
||||
<el-tag type="warning" v-if="scope.row.status == 2">拒绝</el-tag>
|
||||
|
||||
<!-- <el-tag type="info" v-if="scope.row.status == 3">审核中</el-tag> -->
|
||||
<el-tag type="info" disable-transitions v-if="scope.row.status == 0">待审核</el-tag>
|
||||
<el-tag type="success" disable-transitions v-if="scope.row.status == 1">审核成功</el-tag>
|
||||
<el-tag type="warning" disable-transitions v-if="scope.row.status == 2">审核失败</el-tag>
|
||||
<!-- <el-tag type="info" disable-transitions v-if="scope.row.status == 3">审核中</el-tag> -->
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="转账状态" v-if="userInfo == 1">
|
||||
<template #default="scope">
|
||||
<el-tag type="success" disable-transitions
|
||||
v-if="scope.row.status == 1 && scope.row.transfer_status == 3">转账成功</el-tag>
|
||||
<el-tooltip v-if="scope.row.status == 1 && scope.row.transfer_status == 4 && userInfo == 1"
|
||||
class="box-item" effect="dark" :content="scope.row.notes" placement="top-start">
|
||||
<el-tag type="danger" disable-transitions
|
||||
v-if="scope.row.status == 1 && scope.row.transfer_status == 4 && userInfo == 1">转账失败<el-icon><WarningFilled /></el-icon></el-tag>
|
||||
</el-tooltip>
|
||||
<!-- <el-tag type="info" disable-transitions v-if="scope.row.status == 3">审核中</el-tag> -->
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column prop="cashStatus" label="上级审核信息">
|
||||
|
||||
Reference in New Issue
Block a user