完善功能

This commit is contained in:
wangxiaowei
2026-04-16 17:34:22 +08:00
parent efe44f4ade
commit b1030cfa64
15 changed files with 588 additions and 195 deletions

View File

@ -32,6 +32,11 @@
<el-table-column type="selection" width="55" />
<el-table-column label="名称" prop="name" show-overflow-tooltip />
<el-table-column label="账号" prop="account" show-overflow-tooltip />
<el-table-column label="企业简称" prop="company_abv" show-overflow-tooltip>
<template #default="{ row }">
{{ row.company_abv || '—' }}
</template>
</el-table-column>
<el-table-column label="推广码" prop="image" show-overflow-tooltip>
<template #default="{ row }">
<el-image v-if="row.url" style="width:50px;height:50px;" :src="row.url"