增加:企业签署链接获取并且跳转

This commit is contained in:
wuhui_zzw 2024-07-05 18:13:14 +08:00
parent 0ec4e7f003
commit 70dea5fca8
1 changed files with 4 additions and 4 deletions

View File

@ -37,12 +37,12 @@
<el-table-column label="clientUserId" prop="client_user_id" min-width="200" align="center"/> <el-table-column label="clientUserId" prop="client_user_id" min-width="200" align="center"/>
<el-table-column label="是否授权" min-width="80" align="center"> <el-table-column label="是否授权" min-width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.binding_status == 1 ? '已授权' : '未授权' }} {{ scope.row.available_status == 1 ? '已授权' : '未授权' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="是否实名" min-width="80" align="center"> <el-table-column label="是否实名" min-width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.binding_status == 1 ? '已认证' : '未认证' }} {{ scope.row.id_ent_status == 1 ? '已认证' : '未认证' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="账号状态" min-width="80" align="center"> <el-table-column label="账号状态" min-width="80" align="center">
@ -52,8 +52,8 @@
</el-table-column> </el-table-column>
<el-table-column label="签署状态" min-width="80" align="center"> <el-table-column label="签署状态" min-width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.binding_status == 1">已签署</span> <span v-if="scope.row.sign_status == 1">已签署</span>
<span v-else-if="scope.row.binding_status == 2">已拒签</span> <span v-else-if="scope.row.sign_status == 2">已拒签</span>
<span v-else>待签署</span> <span v-else>待签署</span>
</template> </template>
</el-table-column> </el-table-column>