Browse Source

项目文件管理完成

2545307760@qq.com 5 months ago
parent
commit
6194421ac0

+ 1 - 1
index.html

@@ -4,7 +4,7 @@
     <meta charset="UTF-8" />
     <link rel="icon" type="image/svg+xml" href="/vite.svg" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <title>Vite + Vue</title>
+    <title>龙弛财务</title>
   </head>
   <body>
     <div id="app"></div>

+ 1 - 0
package.json

@@ -12,6 +12,7 @@
     "amfe-flexible": "^2.2.1",
     "autoprefixer": "^10.4.20",
     "axios": "^1.7.7",
+    "echarts": "^5.5.1",
     "element-plus": "^2.8.4",
     "js-cookie": "^3.0.5",
     "jsencrypt": "^3.3.2",

+ 23 - 0
pnpm-lock.yaml

@@ -20,6 +20,9 @@ importers:
       axios:
         specifier: ^1.7.7
         version: 1.7.7
+      echarts:
+        specifier: ^5.5.1
+        version: 5.5.1
       element-plus:
         specifier: ^2.8.4
         version: 2.8.4(vue@3.5.10)
@@ -534,6 +537,9 @@ packages:
     resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
     engines: {node: '>=0.4.0'}
 
+  echarts@5.5.1:
+    resolution: {integrity: sha512-Fce8upazaAXUVUVsjgV6mBnGuqgO+JNDlcgF79Dksy4+wgGpQB2lmYoO4TSweFg/mZITdpGHomw/cNBJZj1icA==}
+
   electron-to-chromium@1.5.38:
     resolution: {integrity: sha512-VbeVexmZ1IFh+5EfrYz1I0HTzHVIlJa112UEWhciPyeOcKJGeTv6N8WnG4wsQB81DGCaVEGhpSb6o6a8WYFXXg==}
 
@@ -886,6 +892,9 @@ packages:
     resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
     engines: {node: '>=8.0'}
 
+  tslib@2.3.0:
+    resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
+
   tslib@2.7.0:
     resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
 
@@ -1009,6 +1018,9 @@ packages:
   webpack-virtual-modules@0.6.2:
     resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
 
+  zrender@5.6.0:
+    resolution: {integrity: sha512-uzgraf4njmmHAbEUxMJ8Oxg+P3fT04O+9p7gY+wJRVxo8Ge+KmYv0WJev945EH4wFuc4OY2NLXz46FZrWS9xJg==}
+
 snapshots:
 
   '@antfu/utils@0.7.10': {}
@@ -1369,6 +1381,11 @@ snapshots:
 
   delayed-stream@1.0.0: {}
 
+  echarts@5.5.1:
+    dependencies:
+      tslib: 2.3.0
+      zrender: 5.6.0
+
   electron-to-chromium@1.5.38: {}
 
   element-plus@2.8.4(vue@3.5.10):
@@ -1721,6 +1738,8 @@ snapshots:
     dependencies:
       is-number: 7.0.0
 
+  tslib@2.3.0: {}
+
   tslib@2.7.0: {}
 
   ufo@1.5.4: {}
@@ -1838,3 +1857,7 @@ snapshots:
       '@vue/shared': 3.5.10
 
   webpack-virtual-modules@0.6.2: {}
+
+  zrender@5.6.0:
+    dependencies:
+      tslib: 2.3.0

+ 18 - 0
src/api/project.js

@@ -77,3 +77,21 @@ export const queryProjectSum = (code) => {
         method: 'GET'
     })
 }
+
+// 按费用类型汇总费用
+export const queryProjectMonthFee = (params) => {
+    return service({
+        url: '/expenses/queryProjectMonthFee',
+        method: 'get',
+        params
+    })
+}
+
+// 按部门汇总费用
+export const queryMonthExpenses = (params) => {
+    return service({
+        url: '/expenses/queryMonthExpenses',
+        method: 'get',
+        params
+    })
+}

+ 167 - 0
src/view/dashboard/components/dataStat.vue

@@ -0,0 +1,167 @@
+<template>
+  <van-tabs v-model:active="active">
+    <van-tab title="按费用类型">
+      <van-cell-group>
+        <van-cell is-link title="筛选条件" @click="feeScreenShow = true" size="large">
+          <template #value>
+            <van-row justify="end">
+              <van-col @click.stop="resetFeeDetail">
+                <van-text-ellipsis content="重置"/>
+              </van-col>
+            </van-row>
+          </template>
+        </van-cell>
+      </van-cell-group>
+      <van-collapse v-model="activeType" style="margin-top: 0.5rem">
+        <van-collapse-item
+            size="large"
+            v-for="(item,index) in feeList"
+            :key="item.ID"
+            :title="item.projectFeeGenre.name"
+            :name="index">
+          <van-row justify="space-around">
+            <van-col>
+              <van-text-ellipsis :content="expenditure(item.totalDeposit)"/>
+            </van-col>
+            <van-col>
+              <van-text-ellipsis :content="expenditures(item.totalExpenditure)"/>
+            </van-col>
+          </van-row>
+        </van-collapse-item>
+      </van-collapse>
+    </van-tab>
+    <van-tab title="按部门">
+      <van-collapse v-model="activeNames" style="margin-top: 0.5rem">
+        <van-collapse-item
+            size="large"
+            v-for="(item,index) in expensesList"
+            :key="item.ID"
+            :title="item.department.name"
+            :name="index">
+          <van-row justify="space-around">
+            <van-col>
+              <van-text-ellipsis :content="expenditure(item.totalDeposit)"/>
+            </van-col>
+            <van-col>
+              <van-text-ellipsis :content="expenditures(item.totalExpenditure)"/>
+            </van-col>
+          </van-row>
+        </van-collapse-item>
+      </van-collapse>
+    </van-tab>
+  </van-tabs>
+  <van-popup
+      v-model:show="feeScreenShow"
+      position="bottom"
+  >
+    <van-row style="margin-top: 0.5rem" class="feeScreenBox">
+      <van-col :span="22" :offset="1">
+        <el-form label-width="90" label-position="left" size="large">
+          <el-form-item label="年份:">
+            <el-date-picker
+                v-model="monthFee.yearTime"
+                type="year"
+                placeholder="请选择年份"
+                format="YYYY"
+                value-format="YYYY"
+                clearable
+                @clear="monthFee.yearTime = ''"
+            />
+          </el-form-item>
+          <el-form-item
+              label="月份:"
+          >
+            <el-date-picker
+                v-model="monthFee.monthTime"
+                type="month"
+                placeholder="请选择月份"
+                format="YYYY-MM"
+                value-format="YYYY-MM"
+                clearable
+                @clear="monthFee.monthTime = ''"
+            />
+          </el-form-item>
+        </el-form>
+        <van-row style="margin-top: 1rem">
+          <van-col :span="24">
+            <van-button type="primary" size="large">查询</van-button>
+          </van-col>
+        </van-row>
+      </van-col>
+    </van-row>
+  </van-popup>
+</template>
+
+<script setup>
+import { queryProjectMonthFee, queryMonthExpenses } from '@/api/project'
+defineOptions({
+  name: 'DataStat',
+})
+onMounted(() => {
+  getProjectMonthFee()
+  getMonthExpenses()
+})
+const active = ref(0);
+const activeType = ref(['1'])
+const activeNames = ref(['1']);
+const monthFee = reactive({
+  monthTime: '',
+  yearTime: '',
+  code: ''
+})
+const monthExpenses = reactive({
+  monthTime: '',
+  yearTime: '',
+  genre: 0
+})
+// 费用类型搜索、重置
+const feeScreenShow = ref(false)
+const resetFeeDetail = () => {
+  console.log('重置')
+}
+const feeList = reactive([])
+const getProjectMonthFee = () => {
+  queryProjectMonthFee(monthFee).then(res => {
+    if (res.code === 0) {
+      console.log('费用类型', res.data)
+      feeList.length = 0
+      feeList.push(...res.data)
+    }
+  })
+}
+const expensesList = reactive([])
+const getMonthExpenses = () => {
+  queryMonthExpenses(monthExpenses).then(res => {
+    if (res.code === 0) {
+      console.log('部门', res.data)
+      expensesList.length = 0
+      expensesList.push(...res.data)
+    }
+  })
+}
+const openCondition = () => {
+  console.log('打开')
+}
+// 计算属性
+const expenditure = computed(() => {
+  return (amount) => '支入:' + amount
+})
+const expenditures = computed(() => {
+  return (amount) => '支出:' + amount
+})
+</script>
+
+<style scoped lang="less">
+.cellBox{
+  height: 50px;
+}
+.conditionBox{
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.feeScreenBox{
+  height: 300px;
+}
+</style>

+ 99 - 0
src/view/dashboard/components/projectSum.vue

@@ -0,0 +1,99 @@
+<template>
+  <van-cell-group>
+    <van-cell
+        title="当前项目:"
+        :value="currentProject"
+        size="large"
+        @click="projectPickerShow = true"
+    />
+  </van-cell-group>
+  <div ref="myChart" id="myChart" class="chartBox"></div>
+  <van-popup v-model:show="projectPickerShow" position="bottom">
+    <van-picker
+        :columns-field-names="columnsField"
+        :columns="projectList"
+        @cancel="projectPickerShow = false"
+        @confirm="confirmProject"
+    />
+  </van-popup>
+</template>
+
+<script setup>
+import { getAllProject, queryProjectSum } from '@/api/project'
+import * as echarts from 'echarts';
+defineOptions({
+  name: 'ProjectSum',
+})
+const columnsField = {
+  text: 'name',
+  value: 'code'
+}
+const currentProject = ref('')
+const projectPickerShow = ref(false)
+onMounted(() => {
+  const dom = document.getElementById('myChart');
+  const myChart = echarts.init(dom);
+  const option = {
+    tooltip: {
+      trigger: 'axis',
+      axisPointer: { type: 'cross' }
+    },
+    xAxis: {
+      type: 'category',
+      data: ['项目应收款', '项目已收款', '项目总营业额']
+    },
+    yAxis: {
+      type: 'value'
+    },
+    grid: {
+      left: "2%",
+      containLabel: true
+    },
+    series: [
+      {
+        data: [900000, 120000, 920000],
+        type: 'bar',
+        barWidth: '25%'
+      }
+    ]
+  }
+  myChart.setOption(option)
+  queryAllProject()
+})
+// 查询项目列表
+const projectList = reactive([])
+const queryAllProject = () => {
+  getAllProject().then(res => {
+    if (res.code === 0) {
+      console.log(res.data)
+      projectList.length = 0
+      projectList.push(...res.data)
+    }
+  })
+}
+
+const confirmProject = (val) => {
+  currentProject.value = val.selectedOptions[0].name
+  const code = val.selectedOptions[0].code
+  getProjectSum(code)
+  projectPickerShow.value = false
+}
+
+const getProjectSum = (code) => {
+  queryProjectSum(code).then(res => {
+    if (res.code === 0) {
+      console.log(res.data)
+      console.log('应收', res.data.Receivables)
+      console.log('收款', res.data.TotalCollectionAmount)
+      console.log('总营业额', res.data.TotalProjectAmount)
+    }
+  })
+}
+</script>
+
+<style scoped lang="less">
+.chartBox{
+  width: 100vw;
+  height: 400px;
+}
+</style>

+ 8 - 54
src/view/dashboard/dashboard.vue

@@ -1,27 +1,14 @@
 <template>
   <van-dropdown-menu>
-    <van-dropdown-item v-model="dataGraph" :options="dataGraphList" />
+    <van-dropdown-item v-model="dataGraph" :options="dataGraphList" @change="changeDropdown"/>
   </van-dropdown-menu>
-  <van-cell-group>
-    <van-cell
-        title="当前项目:"
-        :value="currentProject"
-        size="large"
-        @click="projectPickerShow = true"
-    />
-  </van-cell-group>
-  <van-popup v-model:show="projectPickerShow" position="bottom">
-    <van-picker
-        :columns-field-names="columnsField"
-        :columns="projectList"
-        @cancel="projectPickerShow = false"
-        @confirm="confirmProject"
-    />
-  </van-popup>
+  <project-sum v-if="dataGraph === 'projectSum'"/>
+  <data-stat v-if="dataGraph === 'dataStat'" />
 </template>
 
 <script setup>
-import { getAllProject, queryProjectSum } from '@/api/project'
+import projectSum from './components/projectSum.vue'
+import dataStat from './components/dataStat.vue'
 defineOptions({
   name: 'Dashboard',
 })
@@ -30,43 +17,10 @@ const dataGraphList = [
   { text: '项目总表', value: 'projectSum' },
   { text: '数据统计', value: 'dataStat' },
 ]
-const columnsField = {
-  text: 'name',
-  value: 'code'
-}
-const currentProject = ref('')
-const projectPickerShow = ref(false)
-onMounted(() => {
-  queryAllProject()
-})
-// 查询项目列表
-const projectList = reactive([])
-const queryAllProject = () => {
-  getAllProject().then(res => {
-    if (res.code === 0) {
-      console.log(res.data)
-      projectList.length = 0
-      projectList.push(...res.data)
-    }
-  })
-}
-
-const confirmProject = (val) => {
-  currentProject.value = val.selectedOptions[0].name
-  const code = val.selectedOptions[0].code
-  getProjectSum(code)
-  projectPickerShow.value = false
-}
+onMounted(() => {})
 
-const getProjectSum = (code) => {
-  queryProjectSum(code).then(res => {
-    if (res.code === 0) {
-      console.log(res.data)
-      console.log('应收', res.data.Receivables)
-      console.log('收款', res.data.TotalCollectionAmount)
-      console.log('总营业额', res.data.TotalProjectAmount)
-    }
-  })
+const changeDropdown = (val) => {
+  dataGraph.value = val
 }
 </script>