添加财务页面

This commit is contained in:
陈诗浩 2023-09-06 11:09:01 +08:00
parent 4561d30eae
commit 9b41eccd44
7 changed files with 1119 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 567 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

View File

@ -83,7 +83,7 @@ export default {
{
index: "6",
title: "财务",
path: "/06"
path: "/finance"
},
{
index: "8",

1102
src/pages/finance/home.vue Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,19 @@
<template>
<div class="main">
<!-- <userStatus />-->
<!-- <h1>首页</h1> -->
<!-- <img class="h1" src="../../assets/img/h1.png" />-->
<Header :headerObj="{title:'中科软养老大数据分析平台', index: '6'}"/>
<img src="@/assets/img/page2/06财务.png" alt="" style="width: 100vw;height: calc(100vh - 5vw);">
<home></home>
<!-- <Nav />-->
<!-- <img class="b" src="../../assets/img/1.png" alt="" />-->
</div>
</template>
<script>
import Header from '@/components/header'
import home from './home.vue'
import userStatus from "@/components/userStatus";
import { Index } from "@/api/index";
export default {
name: "index",
@ -26,9 +34,11 @@ export default {
},
components: {
Header,
home,
userStatus,
},
methods: {
init() {
init() {
this.getData();
},
getData() {

View File

@ -393,7 +393,7 @@
</div>
<!-- 内容-->
<div>
<div style="margin-bottom: 25px;margin-top:25px;display: flex; justify-content: center;align-items: center">
<div style="margin:5% 0;display: flex; justify-content: center;align-items: center">
<span style="font-size: 16px">预定总人数</span>
<div style="display: flex">
<img src="../../assets/img/bigScreen/number-bg.png">

View File

@ -66,9 +66,9 @@ export default new Router({
}
},
{
path: '/06',
name: '06',
component: () => import('@/pages/page/06'),
path: '/finance',
name: 'finance',
component: () => import('@/pages/finance/index'),
meta: {
index: 0,
}