• 041:vue中 el-table每个单元格包含多个数据项处理


    在这里插入图片描述

    第041个

    查看专栏目录: VUE ------ element UI


    专栏目标

    在vue和element UI联合技术栈的操控下,本专栏提供行之有效的源代码示例和信息点介绍,做到灵活运用。

    (1)提供vue2的一些基本操作:安装、引用,模板使用,computed,watch,生命周期(beforeCreate,created,beforeMount,mounted, beforeUpdate,updated, beforeDestroy,destroyed,activated,deactivated,errorCaptured,components,)、 $root , $parent , $children , $slots , $refs , props, $emit , eventbus ,provide / inject, Vue.observable, $listeners, $attrs, $nextTick , v-for, v-if, v-else,v-else-if,v-on,v-pre,v-cloak,v-once,v-model, v-html, v-text, keep-alive,slot-scope, filters, v-bind,.stop, .native, directives,mixin,render,国际化,Vue Router等

    (2)提供element UI的经典操作:安装,引用,国际化,el-row,el-col,el-button,el-link,el-radio,el-checkbox ,el-input,el-select, el-cascader, el-input-number, el-switch,el-slider, el-time-picker, el-date-picker, el-upload, el-rate, el-color-picker, el-transfer, el-form, el-table, el-tree, el-pagination,el-badge,el-avatar,el-skeleton, el-empty, el-descriptions, el-result, el-statistic, el-alert, v-loading, $message, $alert, $prompt, $confirm , $notify, el-breadcrumb, el-page-header,el-tabs ,el-dropdown,el-steps,el-dialog, el-tooltip, el-popover, el-popconfirm, el-card, el-carousel, el-collapse, el-timeline, el-divider, el-calendar, el-image, el-backtop,v-infinite-scroll, el-drawer等

    应用场景

    vue项目中,我们需要在el-table中显示数组数据,有的时候,需要在一个单元格中显示多条数据,如何实现呢?看看下面源代码,一看便知。

    示例效果

    在这里插入图片描述

    示例源代码(共80行)

    /*
    * @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
    * @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
    * @Email: 2909222303@qq.com
    * @weixin: gis-dajianshi
    * @First published in CSDN
    * @First published time: 2023-11-11
    */
    
    <template>
    	<div class="djs-box">
    		<div class="topBox">
    			<h3>vue+element UI:一个表格单元中显示多条数据 </h3>
    			<div>大剑师兰特, 还是大剑师兰特,gis-dajianshi</div>
    		</div>
    		<div class="cbox">
    			<el-table :data="tableData">
    				<el-table-column prop="title" label="图片" width="180">
    					<template slot-scope="scope">
    						<el-image :src="scope.row.thumbnail_pic_s"></el-image>
    					</template>
    				</el-table-column>
    				<el-table-column prop="date" label="日期" width="180">
    				</el-table-column>
    				<el-table-column label="混合数据">
    					<template slot-scope="scope">
    						<div>
    							<div>文章标题:{{scope.row.title}}</div>
    							<div>作者姓名:{{scope.row.name}}</div>
    							<div>作者邮箱:{{scope.row.email}}</div>
    						</div>
    					</template>
    				</el-table-column>
    			</el-table>
    		</div>
    	</div>
    </template>
    
    <script>
    	export default {
    		data() {
    			return {
    				tableData: [],
    			}
    		},
    		mounted() {
    			this.getdata()
    		},
    		methods: {
    			getdata() {
    				let url = "/listdata"
    				this.$request(url, {}, "GET")
    					.then((res) => {
    						this.tableData = res.data.data
    						console.log(this.tableData)
    					})
    			},
    		}
    
    	}
    </script>
    <style scoped>
    	.djs-box {
    		width: 900px;
    		height: 600px;
    		margin: 50px auto;
    		border: 1px solid seagreen;
    	}
    
    	.topBox {
    		margin: 0 auto 0px;
    		padding: 10px 0;
    		background: palevioletred;
    		color: #fff;
    	}
    
    	.cbox {
    		padding: 10px;
    	}
    </style>
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82

    核心代码

    				<el-table-column label="混合数据">
    					<template slot-scope="scope">
    						<div>
    							<div>文章标题:{{scope.row.title}}</div>
    							<div>作者姓名:{{scope.row.name}}</div>
    							<div>作者邮箱:{{scope.row.email}}</div>
    						</div>
    					</template>
    				</el-table-column>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  • 相关阅读:
    java计算机毕业设计高校就业宣讲会系统源码+mysql数据库+系统+lw文档+部署
    处理element ui 表格中 按钮 loading问题
    反射获取DLL中的字段、属性、方法、泛型方法(C#)
    【操作系统——内存基本分段式存储管理】
    容器化 | 使用 Alpine 构建 Redis 镜像
    1.4、栈
    信息学奥赛一本通 1262:【例9.6】挖地雷 动态规划基本型
    spring整合openAI大模型之Spring AI
    Java面试官最爱问的volatile关键字
    第一篇:参考资料地址
  • 原文地址:https://blog.csdn.net/cuclife/article/details/134285224