vue2动态给标签绑定属性
<el-table-column label="保司提交资料报文" prop="insuranceSubmitData" show-overflow-tooltip />
将show-overflow-tooltip改为动态绑定
此处是为了将表格渲染封装成通用组件
<template v-for="item in arr" > <template v-if="item.type && item.type === 'dict'"> <el-table-column :label="item.label" :prop="item.prop" v-bind="item.attr" > <template slot-scope="scope"> <div>{{dictByItem(item,scope.row)}}</div> </template> </el-table-column> </template> <template v-else> <el-table-column :label="item.label" :prop="item.prop" v-bind="item.attr" /> </template> </template>
let arr = [ { label: "保司理赔失败原因", prop: "insClaimProgressDesc" ,attr: {"show-overflow-tooltip": true} }, { label: "备注", prop: "remark" }, { label: "驳回原因", prop: "auditRemark" }, { label: "完成时间", prop: "finishTime" }, { label: "哪一方取消的订单", prop: "cancelBy", type: "dict", dictName: "cancelBy" }, { label: "取消时间", prop: "cancelTime" }, { label: "取消原因", prop: "cancelReason" }, { label: "创建时间", prop: "createTime" }, { label: "更新时间", prop: "updateTime" }, ]
标签:
B前端
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
2023-01-16 jpa连表查询