This commit is contained in:
zmj 2024-07-06 10:07:57 +08:00
parent bcdb309b34
commit 37ae80471e
7 changed files with 171 additions and 35 deletions

View File

@ -136,3 +136,11 @@ export function apistatisSupervisionStatistics(params: any) {
export function apistatiscost_statistics(params: any) {
return request.get({ url: '/cost_project.cost_statistics/index', params })
}
export function apiManageStatistics(params: any) {
return request.get({ url: '/manage_basic.ManageStatistics/index', params })
}
export function apimarketingStatistics(params: any) {
return request.get({ url: '/marketing.marketing_statistics/index', params })
}

View File

@ -26,9 +26,9 @@ import ProjectFund from "./components/ProjectFund.vue"
<span class="text-2xl">概况</span>
<div class="flex items-center text-sm">
<span class="mr-4">时间筛选: </span>
<el-date-picker v-model="startEndTime" type="daterange" range-separator="至" start-placeholder="开始日期"
end-placeholder="结束日期" unlink-panels @change="getData" />
<el-button type="primary" class="ml-4" @click="getData">查询</el-button>
<el-date-picker v-model="startEndTime2" type="daterange" range-separator="至" start-placeholder="开始日期"
end-placeholder="结束日期" unlink-panels @change="getData2" />
<el-button type="primary" class="ml-4" @click="getData2">查询</el-button>
</div>
</div>
<div class="flex flex-wrap">
@ -201,8 +201,36 @@ const basicList = reactive([
// percent: 0
// }
])
function getLastMonthRange() {
//
let today = new Date();
//
let lastMonth = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate());
// "--"
let formatDateString = (date) => {
let year = date.getFullYear();
let month = String(date.getMonth() + 1).padStart(2, '0'); // 0+10
let day = String(date.getDate()).padStart(2, '0'); // 0
return `${year}-${month}-${day}`;
};
//
let lastMonthFormatted = formatDateString(lastMonth);
let todayFormatted = formatDateString(today);
//
return [lastMonthFormatted, todayFormatted];
}
const startEndTime = ref([new Date(), new Date()]);
const startEndTime2 = ref([]);
const startEndTime2 = ref(getLastMonthRange());
const getData2 = () => {

View File

@ -194,8 +194,34 @@ const basicList = reactive([
// percent: 0
// }
])
function getLastMonthRange() {
//
let today = new Date();
//
let lastMonth = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate());
// "--"
let formatDateString = (date) => {
let year = date.getFullYear();
let month = String(date.getMonth() + 1).padStart(2, '0'); // 0+10
let day = String(date.getDate()).padStart(2, '0'); // 0
return `${year}-${month}-${day}`;
};
//
let lastMonthFormatted = formatDateString(lastMonth);
let todayFormatted = formatDateString(today);
//
return [lastMonthFormatted, todayFormatted];
}
const startEndTime = ref([new Date(), new Date()]);
const startEndTime2 = ref([]);
const startEndTime2 = ref(getLastMonthRange());
const getData2 = () => {

View File

@ -39,7 +39,7 @@
</template>
<script lang="ts" setup name="statistics_user">
import { apistatismarketingStatistics } from "@/api/statistics"
import { apimarketingStatistics } from "@/api/statistics"
// import { apiGetUserBasic, apiGetUserTrend } from '@/api/workbench'
import moment from 'moment'
import vCharts from 'vue-echarts'
@ -178,14 +178,38 @@ const basicList = reactive([
// percent: 0
// }
])
function getLastMonthRange() {
//
let today = new Date();
//
let lastMonth = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate());
// "--"
let formatDateString = (date) => {
let year = date.getFullYear();
let month = String(date.getMonth() + 1).padStart(2, '0'); // 0+10
let day = String(date.getDate()).padStart(2, '0'); // 0
return `${year}-${month}-${day}`;
};
//
let lastMonthFormatted = formatDateString(lastMonth);
let todayFormatted = formatDateString(today);
//
return [lastMonthFormatted, todayFormatted];
}
const startEndTime = ref([new Date(), new Date()]);
const startEndTime2 = ref([]);
const startEndTime2 = ref(getLastMonthRange());
const getData2 = () => {
let date = '';
if (startEndTime2.value[0] && startEndTime2.value[1]) date = moment(startEndTime2.value[0]).format('YYYY/MM/DD') + '-' + moment(startEndTime2.value[1]).format('YYYY/MM/DD');
apistatismarketingStatistics({
apimarketingStatistics({
date: date
}).then(res => {
// echarts

View File

@ -65,7 +65,7 @@ import ProjectFund from "./components/ProjectFund.vue"
</template>
<script lang="ts" setup name="statistics_user">
import { apistatisfinancialStatistics } from "@/api/statistics"
import { apiManageStatistics } from "@/api/statistics"
import moment from 'moment'
import vCharts from 'vue-echarts'
@ -201,14 +201,38 @@ const basicList = reactive([
// percent: 0
// }
])
function getLastMonthRange() {
//
let today = new Date();
//
let lastMonth = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate());
// "--"
let formatDateString = (date) => {
let year = date.getFullYear();
let month = String(date.getMonth() + 1).padStart(2, '0'); // 0+10
let day = String(date.getDate()).padStart(2, '0'); // 0
return `${year}-${month}-${day}`;
};
//
let lastMonthFormatted = formatDateString(lastMonth);
let todayFormatted = formatDateString(today);
//
return [lastMonthFormatted, todayFormatted];
}
const startEndTime = ref([new Date(), new Date()]);
const startEndTime2 = ref([]);
const startEndTime2 = ref(getLastMonthRange());
const getData2 = () => {
let date = '';
if (startEndTime2.value[0] && startEndTime2.value[1]) date = moment(startEndTime2.value[0]).format('YYYY/MM/DD') + '-' + moment(startEndTime2.value[1]).format('YYYY/MM/DD');
apistatisfinancialStatistics({
apiManageStatistics({
date: date
}).then(res => {
// echarts

View File

@ -21,8 +21,6 @@
<div>
<div class="text-info">{{ item.name }}</div>
<div class="text-6xl">{{ item.num }}</div>
<!-- <div class="text-info">环比增长: <span :class="item.percent > 0 ? 'text-success' : 'text-danger'">{{
item.percent }}%</span></div> -->
</div>
</div>
</div>
@ -175,8 +173,32 @@ const basicList = reactive([
// percent: 0
// }
])
function getLastMonthRange() {
//
let today = new Date();
//
let lastMonth = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate());
// "--"
let formatDateString = (date) => {
let year = date.getFullYear();
let month = String(date.getMonth() + 1).padStart(2, '0'); // 0+10
let day = String(date.getDate()).padStart(2, '0'); // 0
return `${year}-${month}-${day}`;
};
//
let lastMonthFormatted = formatDateString(lastMonth);
let todayFormatted = formatDateString(today);
//
return [lastMonthFormatted, todayFormatted];
}
const startEndTime = ref([new Date(), new Date()]);
const startEndTime2 = ref([]);
const startEndTime2 = ref(getLastMonthRange());
const getData2 = () => {

View File

@ -1,24 +1,4 @@
<!-- <template>
<div style="display: flex;flex-wrap: wrap;justify-content: space-between;">
<ProjectPayment></ProjectPayment>
<ProjectInvoice></ProjectInvoice>
<ProjectBid></ProjectBid>
<ProjectFund></ProjectFund>
</div>
</template>
<script setup>
import { reactive, ref } from "vue"
import ProjectPayment from "./components/ProjectPayment.vue"
import ProjectInvoice from "./components/ProjectInvoice.vue"
import ProjectBid from "./components/ProjectBid.vue"
import ProjectFund from "./components/ProjectFund.vue"
</script> -->
<template>
<div class="workbench">
<el-card shadow="never" class=" !border-none">
@ -195,8 +175,32 @@ const basicList = reactive([
// percent: 0
// }
])
function getLastMonthRange() {
//
let today = new Date();
//
let lastMonth = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate());
// "--"
let formatDateString = (date) => {
let year = date.getFullYear();
let month = String(date.getMonth() + 1).padStart(2, '0'); // 0+10
let day = String(date.getDate()).padStart(2, '0'); // 0
return `${year}-${month}-${day}`;
};
//
let lastMonthFormatted = formatDateString(lastMonth);
let todayFormatted = formatDateString(today);
//
return [lastMonthFormatted, todayFormatted];
}
const startEndTime = ref([new Date(), new Date()]);
const startEndTime2 = ref([]);
const startEndTime2 = ref(getLastMonthRange());
const getData2 = () => {