优化了统计接口及图表库引入,提升了用户体验,提高了操作效率。
This commit is contained in:
parent
0b2ffa69d6
commit
bcdb309b34
@ -123,4 +123,16 @@ export function apistatismarketingStatistics(params: any) {
|
||||
|
||||
export function apistatisfinancialStatistics(params: any) {
|
||||
return request.get({ url: '/financial.financial_statistics/index', params })
|
||||
}
|
||||
}
|
||||
|
||||
export function apistatisconsultStatistics(params: any) {
|
||||
return request.get({ url: '/consult_basic.consult_statistics/index', params })
|
||||
}
|
||||
|
||||
export function apistatisSupervisionStatistics(params: any) {
|
||||
return request.get({ url: '/supervision_project.SupervisionStatistics/index', params })
|
||||
}
|
||||
|
||||
export function apistatiscost_statistics(params: any) {
|
||||
return request.get({ url: '/cost_project.cost_statistics/index', params })
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ import ProjectFund from "./components/ProjectFund.vue"
|
||||
<el-card shadow="never" class="mt-4 !border-none">
|
||||
<div>
|
||||
<div class="mb-6 flex justify-between items-center">
|
||||
<span class="text-2xl">用户趋势</span>
|
||||
<span class="text-2xl">趋势</span>
|
||||
<!-- <div class="flex items-center text-sm">
|
||||
<span class="mr-4">时间筛选: </span>
|
||||
<el-date-picker v-model="startEndTime2" type="daterange" range-separator="至"
|
||||
|
@ -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">
|
||||
@ -50,22 +50,15 @@ import ProjectFund from "./components/ProjectFund.vue"
|
||||
<el-card shadow="never" class="mt-4 !border-none">
|
||||
<div>
|
||||
<div class="mb-6 flex justify-between items-center">
|
||||
<span class="text-2xl">用户趋势</span>
|
||||
<div class="flex items-center text-sm">
|
||||
<span class="mr-4">时间筛选: </span>
|
||||
<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>
|
||||
<span class="text-2xl">趋势</span>
|
||||
</div>
|
||||
<v-charts style="height: 400px" :option="visitorOption" :autoresize="true" />
|
||||
</div>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup name="statistics_user">
|
||||
import { apistatisfinancialStatistics } from "@/api/statistics"
|
||||
import { apistatisSupervisionStatistics } from "@/api/statistics"
|
||||
import moment from 'moment'
|
||||
import vCharts from 'vue-echarts'
|
||||
|
||||
@ -208,7 +201,7 @@ const startEndTime2 = ref([]);
|
||||
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({
|
||||
apistatisSupervisionStatistics({
|
||||
date: date
|
||||
}).then(res => {
|
||||
// 清空echarts 数据
|
||||
|
@ -29,7 +29,7 @@
|
||||
<el-card shadow="never" class="mt-4 !border-none">
|
||||
<div>
|
||||
<div class="mb-6 flex justify-between items-center">
|
||||
<span class="text-2xl">用户趋势</span>
|
||||
<span class="text-2xl">趋势</span>
|
||||
|
||||
</div>
|
||||
<v-charts style="height: 400px" :option="visitorOption" :autoresize="true" />
|
||||
|
@ -50,7 +50,7 @@ import ProjectFund from "./components/ProjectFund.vue"
|
||||
<el-card shadow="never" class="mt-4 !border-none">
|
||||
<div>
|
||||
<div class="mb-6 flex justify-between items-center">
|
||||
<span class="text-2xl">用户趋势</span>
|
||||
<span class="text-2xl">趋势</span>
|
||||
<!-- <div class="flex items-center text-sm">
|
||||
<span class="mr-4">时间筛选: </span>
|
||||
<el-date-picker v-model="startEndTime2" type="daterange" range-separator="至"
|
||||
|
@ -6,9 +6,9 @@
|
||||
<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">
|
||||
@ -30,13 +30,7 @@
|
||||
<el-card shadow="never" class="mt-4 !border-none">
|
||||
<div>
|
||||
<div class="mb-6 flex justify-between items-center">
|
||||
<span class="text-2xl">用户趋势</span>
|
||||
<div class="flex items-center text-sm">
|
||||
<span class="mr-4">时间筛选: </span>
|
||||
<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>
|
||||
<span class="text-2xl">趋势</span>
|
||||
</div>
|
||||
<v-charts style="height: 400px" :option="visitorOption" :autoresize="true" />
|
||||
</div>
|
||||
@ -45,7 +39,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup name="statistics_user">
|
||||
import { apistatisfinancialStatistics } from "@/api/statistics"
|
||||
import { apistatiscost_statistics } from "@/api/statistics"
|
||||
import moment from 'moment'
|
||||
import vCharts from 'vue-echarts'
|
||||
|
||||
@ -188,7 +182,7 @@ const startEndTime2 = ref([]);
|
||||
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({
|
||||
apistatiscost_statistics({
|
||||
date: date
|
||||
}).then(res => {
|
||||
// 清空echarts 数据
|
||||
|
@ -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">
|
||||
@ -50,13 +50,7 @@ import ProjectFund from "./components/ProjectFund.vue"
|
||||
<el-card shadow="never" class="mt-4 !border-none">
|
||||
<div>
|
||||
<div class="mb-6 flex justify-between items-center">
|
||||
<span class="text-2xl">用户趋势</span>
|
||||
<div class="flex items-center text-sm">
|
||||
<span class="mr-4">时间筛选: </span>
|
||||
<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>
|
||||
<span class="text-2xl">趋势</span>
|
||||
</div>
|
||||
<v-charts style="height: 400px" :option="visitorOption" :autoresize="true" />
|
||||
</div>
|
||||
@ -65,7 +59,7 @@ import ProjectFund from "./components/ProjectFund.vue"
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup name="statistics_user">
|
||||
import { apistatisfinancialStatistics } from "@/api/statistics"
|
||||
import { apistatisconsultStatistics } from "@/api/statistics"
|
||||
import moment from 'moment'
|
||||
import vCharts from 'vue-echarts'
|
||||
|
||||
@ -208,7 +202,7 @@ const startEndTime2 = ref([]);
|
||||
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({
|
||||
apistatisconsultStatistics({
|
||||
date: date
|
||||
}).then(res => {
|
||||
// 清空echarts 数据
|
||||
|
Loading…
x
Reference in New Issue
Block a user