|
@@ -74,12 +74,12 @@ function handleButtonClick(tableName) {
|
|
<div>
|
|
<div>
|
|
<el-card body-style="padding: 10px" class="mb-3.5 mt-3.5">
|
|
<el-card body-style="padding: 10px" class="mb-3.5 mt-3.5">
|
|
<div class="custom-card-style flex gap-1.5 justify-between my-1.5 mx-2"
|
|
<div class="custom-card-style flex gap-1.5 justify-between my-1.5 mx-2"
|
|
- style="display: flex; align-items: center;">
|
|
|
|
|
|
+ style="display: flex; align-items: center;" >
|
|
<Selector ref="selectorRef" @update:updateData="updateDataChange" />
|
|
<Selector ref="selectorRef" @update:updateData="updateDataChange" />
|
|
<MonthlyDatePicker v-if="showTable === 'monthlyComparativeData'" @monthDateChange="handelDateChange"></MonthlyDatePicker>
|
|
<MonthlyDatePicker v-if="showTable === 'monthlyComparativeData'" @monthDateChange="handelDateChange"></MonthlyDatePicker>
|
|
</div>
|
|
</div>
|
|
<div v-if="showTable === 'mainData'">
|
|
<div v-if="showTable === 'mainData'">
|
|
- <DataPicker style="display: flex; align-items: center;" @changeDate="processingDateChange" />
|
|
|
|
|
|
+ <DataPicker style="display: flex; align-items: center; gap: 16px" @changeDate="processingDateChange" />
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</el-card>
|
|
|
|
|
|
@@ -140,13 +140,9 @@ function handleButtonClick(tableName) {
|
|
|
|
|
|
.el-card {
|
|
.el-card {
|
|
border: none;
|
|
border: none;
|
|
|
|
+ border-radius: 12px;
|
|
background-color: #fff;
|
|
background-color: #fff;
|
|
box-shadow: 0px 0px 12px rgba(51, 89, 181, 0.16);
|
|
box-shadow: 0px 0px 12px rgba(51, 89, 181, 0.16);
|
|
}
|
|
}
|
|
|
|
|
|
-.el-card:hover {
|
|
|
|
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
|
|
|
|
- 0 4px 6px -2px rgba(234, 122, 167, 0.05);
|
|
|
|
- transition: all 0.2s ease-in-out;
|
|
|
|
-}
|
|
|
|
</style>
|
|
</style>
|