add
This commit is contained in:
parent
c248433c8d
commit
fdffb4ac50
|
@ -7,8 +7,8 @@
|
|||
<img class="w-[50px] h-[50px] mr-2" :src="item.src" />
|
||||
</div>
|
||||
<div>
|
||||
<div class="text-info text-3xl">{{ item.title }}</div>
|
||||
<div class="text-3xl">{{ item.value() }}</div>
|
||||
<div class="text-info">{{ item.title }}</div>
|
||||
<div class="text-6xl">{{ item.value() }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</el-row>
|
||||
|
@ -27,8 +27,8 @@
|
|||
<img class="w-[50px] h-[50px] mr-2" :src="item.src" />
|
||||
</div>
|
||||
<div>
|
||||
<div class="text-info text-3xl">{{ item.title }}</div>
|
||||
<div class="text-3xl">{{ item.value() }}</div>
|
||||
<div class="text-info ">{{ item.title }}</div>
|
||||
<div class="text-6xl">{{ item.value() }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</el-row>
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
<img class="w-[50px] h-[50px] mr-2" :src="item.src" />
|
||||
</div>
|
||||
<div>
|
||||
<div class="text-info text-3xl">{{ item.title }}</div>
|
||||
<div class="text-3xl">{{ item.value() }}</div>
|
||||
<div class="text-info">{{ item.title }}</div>
|
||||
<div class="text-6xl">{{ item.value() }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -27,8 +27,8 @@
|
|||
<img class="w-[50px] h-[50px] mr-2" :src="item.src" />
|
||||
</div>
|
||||
<div>
|
||||
<div class="text-info text-3xl">{{ item.title }}</div>
|
||||
<div class="text-3xl">{{ item.value() }}</div>
|
||||
<div class="text-info ">{{ item.title }}</div>
|
||||
<div class="text-6xl">{{ item.value() }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -88,10 +88,8 @@ const deteToQuery = () => {
|
|||
|
||||
function getFirstAndLastDayOfCurrentMonth() {
|
||||
var today = new Date();
|
||||
var firstDay = new Date(today.getFullYear(), today.getMonth(), 1);
|
||||
var lastDay = new Date(today.getFullYear(), today.getMonth() + 1, 0);
|
||||
var firstDayFormatted = formatDate(firstDay);
|
||||
var lastDayFormatted = formatDate(lastDay);
|
||||
var firstDayFormatted = formatDate(today);
|
||||
var lastDayFormatted = formatDate(today);
|
||||
return { firstDay: firstDayFormatted, lastDay: lastDayFormatted };
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue