增加legend 图例 分别控制

This commit is contained in:
Guwan 2025-03-27 19:49:46 +08:00
parent b2e6dee7cb
commit df5e27d421
1 changed files with 8 additions and 1 deletions

View File

@ -43,7 +43,7 @@
<!-- 表格区域 --> <!-- 表格区域 -->
<div class="table-section"> <div class="table-section">
<el-table :data="tableData" style="width: 100%"> <el-table :data="tableData" style="width: 100%" @cell-click="handleCellClick">
<el-table-column prop="date" label="Date" width="180" /> <el-table-column prop="date" label="Date" width="180" />
<el-table-column prop="name" label="Name" width="180" /> <el-table-column prop="name" label="Name" width="180" />
<el-table-column prop="address" label="Address" /> <el-table-column prop="address" label="Address" />
@ -330,6 +330,13 @@ const marketShareConfig = {
} }
] ]
} }
const handleCellClick = (row, column, cell, event) => {
console.log('点击的值:', row[column.property])
console.log('点击的列 字段名:', column.property)
console.log('点击的列 标题:', column.label)
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>