48 lines
762 B
Vue
48 lines
762 B
Vue
<script setup>
|
|
</script>
|
|
|
|
<template>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
.search-box {
|
|
margin-bottom: 20px;
|
|
padding: 16px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.error-alert {
|
|
padding: 1rem;
|
|
background: #ffe3e3;
|
|
color: #ff4444;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.8rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.error-icon {
|
|
display: inline-block;
|
|
width: 1.2rem;
|
|
height: 1.2rem;
|
|
border-radius: 50%;
|
|
background: #ff4444;
|
|
color: white;
|
|
text-align: center;
|
|
line-height: 1.2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
:deep(.ant-table-thead > tr > th) {
|
|
background-color: #fafafa !important;
|
|
font-weight: 600;
|
|
}
|
|
|
|
:deep(.ant-table-row:hover) {
|
|
background-color: #fafafa !important;
|
|
}
|
|
</style> |