1
This commit is contained in:
parent
063be8c5ca
commit
8f31cc5c76
@ -28,6 +28,19 @@
|
||||
<el-table-column prop="mer_id" label="ID" min-width="60" />
|
||||
<el-table-column prop="mer_name" label="商户名称" min-width="150" />
|
||||
<el-table-column prop="type_name" label="商户类型" min-width="150" />
|
||||
|
||||
<el-table-column label="申请人姓名" min-width="150">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.name">{{ scope.row.name }}</span>
|
||||
<span v-else>-</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="申请人手机号" min-width="150">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.phone">{{ scope.row.phone }}</span>
|
||||
<span v-else>-</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="status" label="审核状态" min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<span class="t-color gray" v-if="scope.row.status == 0">待审核</span>
|
||||
@ -35,18 +48,6 @@
|
||||
<span class="t-color red" v-if="scope.row.status == 2">审核不通过</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="审核人姓名" min-width="150">
|
||||
<template slot-scope="scope">
|
||||
<span class="t-color red" v-if="scope.row.check_name">{{ scope.row.check_name }}</span>
|
||||
<span v-else>-</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="审核人手机号" min-width="150">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.check_name">{{ scope.row.check_phone }}</span>
|
||||
<span v-else>-</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="create_time" label="申请时间" min-width="150" />
|
||||
<el-table-column prop="update_time" label="审核时间" min-width="150">
|
||||
<template slot-scope="scope">
|
||||
|
Loading…
x
Reference in New Issue
Block a user