antd+vue table表格 是否启用 状态显示
2021/8/24 23:06:38
本文主要是介绍antd+vue table表格 是否启用 状态显示,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
antd+vue table表格 是否启用 状态显示
小功能记录一下:
单元格里面两个状态或者三个状态切换显示问题。官网里tag标签都是同时展示两个或三个,我这里是根据状态展示对应状态标签。
通过试用v-if来控制显示标签,颜色样式自己设置。
这里展示的是部分代码
<template> <a-table :columns="columns" :data-source="data"> <template slot="name" slot-scope="text"> <a>{{ text }}</a> </template> //这是第一种,三个状态标签 <template slot="status" slot-scope="text"> <span v-if="text === '1'"><a-tag >待上传</a-tag></span> <span v-else-if="text === '2'"><a-tag color="#87d068">未下载</a-tag></span> <span v-else><a-tag color="cyan">已下载</a-tag></span> </template> //这是第二种两个状态 <template slot="status" slot-scope="text"> <span v-if="text === '1'"><a-tag color="green">启用</a-tag></span> <span v-else><a-tag color="red">停用</a-tag></span> </template> </a-table> </template> <script> //这里是表头定义设置 const columns = [ { title: '名称', dataIndex: 'Name', }, { title: '状态', dataIndex: 'status', scopedSlots: { customRender: 'status'} //这里配置关联 }, ] </script>
这篇关于antd+vue table表格 是否启用 状态显示的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15useCallback教程:React Hook入门与实践
- 2024-11-15React中使用useContext开发:初学者指南
- 2024-11-15拖拽排序js案例详解:新手入门教程
- 2024-11-15React中的自定义Hooks案例详解
- 2024-11-14受控组件项目实战:从零开始打造你的第一个React项目
- 2024-11-14React中useEffect开发入门教程
- 2024-11-14React中的useMemo教程:从入门到实践
- 2024-11-14useReducer开发入门教程:轻松掌握React中的useReducer
- 2024-11-14useRef开发入门教程:轻松掌握React中的useRef用法
- 2024-11-14useState开发:React中的状态管理入门教程