Merge branch 'main' of https://gitea.lihaink.cn/zmj/multiStoreAdmin
This commit is contained in:
commit
8218aa7042
|
@ -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,13 +27,13 @@
|
|||
<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>
|
||||
</el-card>
|
||||
<el-card :key="date">
|
||||
<el-card :key="date" v-loading="!visitorOption.xAxis.data.length">
|
||||
<template #header>
|
||||
营业趋势
|
||||
</template>
|
||||
|
@ -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 };
|
||||
}
|
||||
|
||||
|
@ -109,7 +107,15 @@ date.value[1] = getFirstAndLastDayOfCurrentMonth().lastDay;
|
|||
|
||||
|
||||
const formData = ref({
|
||||
order_amount: 0
|
||||
order_amount: 0,
|
||||
receipt_amount: 0,
|
||||
income_amount: 0,
|
||||
verify_amount: 0,
|
||||
cashier_amount: 0,
|
||||
balance_amount: 0,
|
||||
user_number: 0,
|
||||
cash_amount: 0,
|
||||
|
||||
})
|
||||
|
||||
|
||||
|
@ -186,20 +192,20 @@ const visitorOption = reactive({
|
|||
},
|
||||
xAxis: {
|
||||
type: 'category',
|
||||
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
|
||||
data: []
|
||||
},
|
||||
yAxis: {
|
||||
type: 'value'
|
||||
},
|
||||
series: [
|
||||
{
|
||||
data: [820, 932, 901, 934, 1290, 1330, 1320],
|
||||
data: [],
|
||||
type: 'line',
|
||||
smooth: true,
|
||||
name: "门店收款"
|
||||
},
|
||||
{
|
||||
data: [15, 12, 14, 78, 96, 54, 85],
|
||||
data: [],
|
||||
type: 'line',
|
||||
smooth: true,
|
||||
name: '新增用户'
|
||||
|
|
Loading…
Reference in New Issue