添加财务页面

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", index: "6",
title: "财务", title: "财务",
path: "/06" path: "/finance"
}, },
{ {
index: "8", 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> <template>
<div class="main"> <div class="main">
<!-- <userStatus />-->
<!-- <h1>首页</h1> -->
<!-- <img class="h1" src="../../assets/img/h1.png" />-->
<Header :headerObj="{title:'中科软养老大数据分析平台', index: '6'}"/> <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> </div>
</template> </template>
<script> <script>
import Header from '@/components/header' import Header from '@/components/header'
import home from './home.vue'
import userStatus from "@/components/userStatus";
import { Index } from "@/api/index";
export default { export default {
name: "index", name: "index",
@ -26,6 +34,8 @@ export default {
}, },
components: { components: {
Header, Header,
home,
userStatus,
}, },
methods: { methods: {
init() { init() {

View File

@ -393,7 +393,7 @@
</div> </div>
<!-- 内容--> <!-- 内容-->
<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> <span style="font-size: 16px">预定总人数</span>
<div style="display: flex"> <div style="display: flex">
<img src="../../assets/img/bigScreen/number-bg.png"> <img src="../../assets/img/bigScreen/number-bg.png">

View File

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