2545307760@qq.com 8 ヶ月 前
コミット
536ed0c3ed

+ 2 - 2
server/config.yaml

@@ -125,8 +125,8 @@ mysql:
     config: charset=utf8mb4&parseTime=True&loc=Local
     db-name: lc_finance
     username: root
-    password: root
-    path: 127.0.0.1
+    password: lczm*2019
+    path: 106.52.134.22
     engine: ""
     log-mode: error
     max-idle-conns: 10

+ 1 - 1
server/go.mod

@@ -25,6 +25,7 @@ require (
 	github.com/redis/go-redis/v9 v9.0.5
 	github.com/robfig/cron/v3 v3.0.1
 	github.com/shirou/gopsutil/v3 v3.23.6
+	github.com/shopspring/decimal v1.4.0
 	github.com/songzhibin97/gkit v1.2.11
 	github.com/spf13/viper v1.16.0
 	github.com/stretchr/testify v1.8.4
@@ -102,7 +103,6 @@ require (
 	github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
 	github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
 	github.com/shoenig/go-m1cpu v0.1.6 // indirect
-	github.com/shopspring/decimal v1.4.0 // indirect
 	github.com/spf13/afero v1.9.5 // indirect
 	github.com/spf13/cast v1.5.1 // indirect
 	github.com/spf13/jwalterweatherman v1.1.0 // indirect

+ 14 - 0
web/src/view/finance/components/hour.vue

@@ -0,0 +1,14 @@
+<template>
+
+</template>
+
+<script>
+defineOptions({
+  name: 'hour'
+})
+
+</script>
+
+<style scoped>
+
+</style>

+ 13 - 0
web/src/view/finance/components/payment.vue

@@ -0,0 +1,13 @@
+<template>
+
+</template>
+
+<script>
+defineOptions({
+  name: 'payment'
+})
+</script>
+
+<style scoped>
+
+</style>

+ 13 - 0
web/src/view/finance/components/reimburse.vue

@@ -0,0 +1,13 @@
+<template>
+
+</template>
+
+<script>
+defineOptions({
+  name: 'reimburse'
+})
+</script>
+
+<style scoped>
+
+</style>

+ 43 - 7
web/src/view/finance/financeAnalysis/financeAnalysis.vue

@@ -103,8 +103,14 @@
         :span="4"
         class="bg-white"
       >
-        <el-row style="height: 100px" align="middle">
-          <el-col :span="13" :offset="1">
+        <el-row
+          style="height: 100px"
+          align="middle"
+        >
+          <el-col
+            :span="13"
+            :offset="1"
+          >
             <el-text>项目收款</el-text>
           </el-col>
           <el-col
@@ -117,11 +123,17 @@
             />
           </el-col>
         </el-row>
-        <el-row style="height: 50px" align="middle">
-          <el-col :span="4" :offset="1">
+        <el-row
+          style="height: 50px"
+          align="middle"
+        >
+          <el-col
+            :span="4"
+            :offset="1"
+          >
             <el-image
-                :src="iconAmount"
-                class="countIcon"
+              :src="iconAmount"
+              class="countIcon"
             />
           </el-col>
         </el-row>
@@ -146,7 +158,28 @@
     <el-row
       class="bg-white mt-5"
       style="height: 540px"
-    />
+    >
+      <el-col :span="20" class="ml-10 mt-5">
+        <el-tabs
+            v-model="listSort"
+            class="demo-tabs"
+            @tab-click="changeSort"
+        >
+          <el-tab-pane
+              label="实施工时"
+              :name="1"
+          >User</el-tab-pane>
+          <el-tab-pane
+              label="费用报销"
+              :name="2"
+          >Config</el-tab-pane>
+          <el-tab-pane
+              label="项目收款"
+              :name="3"
+          >Role</el-tab-pane>
+        </el-tabs>
+      </el-col>
+    </el-row>
     <el-drawer
       v-model="listShow"
       direction="ltr"
@@ -239,6 +272,7 @@ const condition = reactive({
 const listData = reactive([])
 const projectTotal = ref(0)
 const projectMessage = reactive({})
+const listSort = ref(1)
 
 // 计算属性
 const buttonType = computed(() => (state) => {
@@ -294,6 +328,8 @@ const changePage = (page) => {
   projectList(search)
 }
 
+const changeSort = () => {}
+
 const incomeExpenses = (code) => {}
 
 </script>