历史数据:修改模板选择框显示样式

This commit is contained in:
高云鹏 2025-01-14 09:42:58 +08:00
parent 12b809879c
commit 959673b011

View File

@ -28,7 +28,7 @@
<template #default>
<div class="templateOption">
<span>{{ v.name }}</span>
<el-icon :size="18" style="color: red" @click="delTemplate(v.id)">
<el-icon :size="18" style="color: red" @click.stop="delTemplate(v.id)">
<Delete />
</el-icon>
</div>
@ -849,11 +849,6 @@ const exportExcel = () => {
width: 200px;
height: 40px;
}
.templateOption {
display: flex;
align-items: center;
justify-content: space-between;
}
}
.pointSelect {
margin: 0 10px;
@ -965,4 +960,9 @@ const exportExcel = () => {
}
}
}
.templateOption {
display: flex;
align-items: center;
justify-content: space-between;
}
</style>