|
@@ -1,33 +1,79 @@
|
|
|
<template>
|
|
|
<div class="page">
|
|
|
<div class="gva-card-box">
|
|
|
- <div class="gva-card gva-top-card">
|
|
|
- <div class="gva-top-card-left">
|
|
|
- <div class="gva-top-card-left-title">早安,管理员,请开始一天的工作吧</div>
|
|
|
- <div class="gva-top-card-left-dot">{{ weatherInfo }}</div>
|
|
|
- </div>
|
|
|
- <img
|
|
|
- src="@/assets/dashboard.png"
|
|
|
- class="gva-top-card-right"
|
|
|
- alt
|
|
|
- >
|
|
|
- </div>
|
|
|
+ <div
|
|
|
+ id="main"
|
|
|
+ class="gva-card"
|
|
|
+ style="width: 100%; height: 300px;"
|
|
|
+ @click="handleChartClick"
|
|
|
+ />
|
|
|
</div>
|
|
|
|
|
|
<div class="gva-card-box">
|
|
|
<div class="gva-card">
|
|
|
- <div class="gva-card-title">数据统计</div>
|
|
|
+ <div class="gva-card-title">
|
|
|
+ <el-row :gutter="10">
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="2"
|
|
|
+ >
|
|
|
+ <span>数据统计</span>
|
|
|
+ </el-col>
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="4"
|
|
|
+ >
|
|
|
+ <el-date-picker
|
|
|
+ v-model="monthData"
|
|
|
+ type="month"
|
|
|
+ placeholder="选择月份"
|
|
|
+ value-format="YYYY-MM"
|
|
|
+ @change="choiceMonth"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="8"
|
|
|
+ >
|
|
|
+ <el-date-picker
|
|
|
+ v-model="yearData"
|
|
|
+ type="year"
|
|
|
+ placeholder="选择年份"
|
|
|
+ value-format="YYYY"
|
|
|
+ @change="choiceYear"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ <el-col
|
|
|
+ :xs="24"
|
|
|
+ :sm="6"
|
|
|
+ />
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
<div class="p-4">
|
|
|
<el-row :gutter="10">
|
|
|
<el-col
|
|
|
:xs="24"
|
|
|
- :sm="13"
|
|
|
+ :sm="12"
|
|
|
>
|
|
|
- <echarts-line />
|
|
|
+ <el-table :data="projectMonthFee">
|
|
|
+ <el-table-column
|
|
|
+ prop="projectFeeGenre.name"
|
|
|
+ label="费用类型"
|
|
|
+ width="200"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="totalExpenditure"
|
|
|
+ label="支出金额"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="totalDeposit"
|
|
|
+ label="支入金额"
|
|
|
+ />
|
|
|
+ </el-table>
|
|
|
</el-col>
|
|
|
<el-col
|
|
|
:xs="24"
|
|
|
- :sm="11"
|
|
|
+ :sm="12"
|
|
|
>
|
|
|
<dashboard-table />
|
|
|
</el-col>
|
|
@@ -39,70 +85,81 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import EchartsLine from '@/view/dashboard/dashboardCharts/echartsLine.vue'
|
|
|
import DashboardTable from '@/view/dashboard/dashboardTable/dashboardTable.vue'
|
|
|
-import { ref } from 'vue'
|
|
|
-import { useRouter } from 'vue-router'
|
|
|
-import { useWeatherInfo } from '@/view/dashboard/weather.js'
|
|
|
-import SelectImage from '@/components/selectImage/selectImage.vue'
|
|
|
+import { ref, onMounted } from 'vue'
|
|
|
+import { queryProjectSum } from '@/api/project'
|
|
|
+import * as echarts from 'echarts'
|
|
|
+import { queryProjectMonthFee } from '@/api/cost'
|
|
|
|
|
|
-defineOptions({
|
|
|
- name: 'Dashboard'
|
|
|
-})
|
|
|
+const initChart = () => {
|
|
|
+ const chartDom = document.getElementById('main')
|
|
|
+ const myChart = echarts.init(chartDom)
|
|
|
+ myChart.setOption({
|
|
|
+ title: {
|
|
|
+ text: '项目总表'
|
|
|
+ },
|
|
|
+ xAxis: {
|
|
|
+ type: 'value'
|
|
|
+ },
|
|
|
+ yAxis: {
|
|
|
+ type: 'category',
|
|
|
+ data: ['项目总营业额', '项目已收款', '项目应收款']
|
|
|
+ },
|
|
|
+ tooltip: {
|
|
|
+ trigger: 'axis',
|
|
|
+ axisPointer: {
|
|
|
+ type: 'shadow'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ series: [
|
|
|
+ {
|
|
|
+ data: xData.value,
|
|
|
+ type: 'bar'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ })
|
|
|
+}
|
|
|
|
|
|
-const weatherInfo = useWeatherInfo()
|
|
|
+// 筛选数据
|
|
|
+const monthData = ref('')
|
|
|
+const yearData = ref('')
|
|
|
|
|
|
-const toolCards = ref([
|
|
|
- {
|
|
|
- label: '用户管理',
|
|
|
- icon: 'monitor',
|
|
|
- name: 'user',
|
|
|
- color: '#ff9c6e',
|
|
|
- bg: 'rgba(255, 156, 110,.3)'
|
|
|
- },
|
|
|
- {
|
|
|
- label: '角色管理',
|
|
|
- icon: 'setting',
|
|
|
- name: 'authority',
|
|
|
- color: '#69c0ff',
|
|
|
- bg: 'rgba(105, 192, 255,.3)'
|
|
|
- },
|
|
|
- {
|
|
|
- label: '菜单管理',
|
|
|
- icon: 'menu',
|
|
|
- name: 'menu',
|
|
|
- color: '#b37feb',
|
|
|
- bg: 'rgba(179, 127, 235,.3)'
|
|
|
- },
|
|
|
- {
|
|
|
- label: '代码生成器',
|
|
|
- icon: 'cpu',
|
|
|
- name: 'autoCode',
|
|
|
- color: '#ffd666',
|
|
|
- bg: 'rgba(255, 214, 102,.3)'
|
|
|
- },
|
|
|
- {
|
|
|
- label: '表单生成器',
|
|
|
- icon: 'document-checked',
|
|
|
- name: 'formCreate',
|
|
|
- color: '#ff85c0',
|
|
|
- bg: 'rgba(255, 133, 192,.3)'
|
|
|
- },
|
|
|
- {
|
|
|
- label: '关于我们',
|
|
|
- icon: 'user',
|
|
|
- name: 'about',
|
|
|
- color: '#5cdbd3',
|
|
|
- bg: 'rgba(92, 219, 211,.3)'
|
|
|
- }
|
|
|
-])
|
|
|
+const projectSum = ref()
|
|
|
+const projectMonthFee = ref()
|
|
|
|
|
|
-const router = useRouter()
|
|
|
+const xData = ref([])
|
|
|
+const queryData = async() => {
|
|
|
+ await queryProjectSum().then(res => {
|
|
|
+ projectSum.value = res.data
|
|
|
+ for (const key in projectSum.value) {
|
|
|
+ xData.value.push(projectSum.value[key])
|
|
|
+ }
|
|
|
+ })
|
|
|
+ await queryProjectMonthFee(monthData.value, yearData.value).then(res => {
|
|
|
+ console.log(res.data)
|
|
|
+ projectMonthFee.value = res.data
|
|
|
+ })
|
|
|
+ initChart()
|
|
|
+}
|
|
|
|
|
|
-const toTarget = (name) => {
|
|
|
- router.push({ name })
|
|
|
+const handleChartClick = () => {
|
|
|
+ console.log('详情')
|
|
|
}
|
|
|
|
|
|
+// 项目费用
|
|
|
+const choiceYear = () => {
|
|
|
+ monthData.value = ''
|
|
|
+ queryData()
|
|
|
+}
|
|
|
+const choiceMonth = () => {
|
|
|
+ yearData.value = ''
|
|
|
+ queryData()
|
|
|
+}
|
|
|
+onMounted(() => {
|
|
|
+ queryData()
|
|
|
+ initChart()
|
|
|
+})
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|