element-ui表格数据为空,图片占位提示

8 篇文章 0 订阅

 当表格的绑定数据为空时常需要显示暂无数据等字样,这时候就用到了empty-text

 <el-table
    :data="tableData"
     stripe
    border
    empty-text="暂无数据"
 >

但,当数据为空,想用图片展示呢,如下图 

 方法一:可在表格底部列在加入自定义图片

    <div slot="empty" class="empty">
        <img src="../../assets/images/empty.jpg"/>
        <span class="txt">暂无查不到记录</span>
    </div>

 完整代码:

<el-table
    :data="tableData"
    stripe
    border
>
    <el-table-column label="序号" width="70" align="left" prop="NO"></el-table-column>
    <el-table-column label="借款金额" width="130" prop="price">
        <template #default="scope">
            <span class="orange">¥35,666,999,.00</span>
        </template>
    </el-table-column>
    <el-table-column label="操作" width="160" fixed="right" align="center">
        <template #default="scope">
            <el-button size="small" plain type="info" @click="openAddOrEditDialog(scope.row)">还款</el-button>
            <el-button size="small" plain type="success" @click="delData(scope.row.demoId)">订单详情</el-button>
        </template>
    </el-table-column>
    <div slot="empty" class="empty">
        <img src="../../assets/images/empty.jpg"/>
        <span class="txt">暂无查不到记录</span>
    </div>
</el-table>

方法二:使用element的Empty空状态组件,无数据图片占位提示

<div slot="empty" class="empty">
    <el-empty description="暂时查不到记录" />
</div>
<el-table
    :data="tableData"
    stripe
    border
>
    <el-table-column label="序号" width="70" align="left" prop="NO"></el-table-column>
    <el-table-column label="借款金额" width="130" prop="price">
        <template #default="scope">
            <span class="orange">¥35,666,999,.00</span>
        </template>
    </el-table-column>
    <el-table-column label="操作" width="160" fixed="right" align="center">
        <template #default="scope">
            <el-button size="small" plain type="info" @click="openAddOrEditDialog(scope.row)">还款</el-button>
            <el-button size="small" plain type="success" @click="delData(scope.row.demoId)">订单详情</el-button>
        </template>
    </el-table-column>
    <div slot="empty" class="empty">
        <el-empty description="暂时查不到记录" />
    </div>
</el-table>

  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值