生命之风的低语
Whispers in the Wind of Life.

buildadmin自定义表格字段

秀秀 发布于 2024-7-22 15:54    55 次阅读

方法一

// 自定义表格字段模板
<template #out_trade_no>
    <el-table-column :label="t('状态')" align="center">
        <template #default="scope">
            <span>{{ scope.row.status }}</span>
        </template>
    </el-table-column>
</template>

// 表格字段设置
{ label: t('状态'), prop: 'status', align: 'center', render: 'slot', slotName: 'status' }