This commit is contained in:
weipengfei 2024-05-15 09:50:40 +08:00
parent aab93f150e
commit 3a29229098
2 changed files with 4 additions and 3 deletions

View File

@ -114,7 +114,8 @@
<dict-value :options="dictData.merchat_type" :value="row.type_id" />
</template>
</el-table-column>
<el-table-column label="商户名称" prop="mer_name" show-overflow-tooltip />
<el-table-column label="商户名称" prop="mer_name" show-overflow-tooltip width="200" />
<el-table-column label="用户id" prop="uid" show-overflow-tooltip />
<el-table-column label="是否支持先货后款" prop="credit_buy" width="160">
<template #default="{ row }">
<dict-value :options="dictData.show_status" :value="row.credit_buy" />

View File

@ -37,8 +37,8 @@
<div class="mt-4">
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" />
<!-- <el-table-column label="主键" prop="id" show-overflow-tooltip /> -->
<el-table-column label="头像" prop="avatar" show-overflow-tooltip>
<el-table-column label="ID" prop="id" width="100" />
<el-table-column label="头像" prop="avatar" width="60">
<template #default="{ row }">
<el-image :src="row.avatar" style="width: 50px;height: 50px" />
</template>