Commit 16a24cfb authored by mengzixuan's avatar mengzixuan

feat: 页面路径添加与修改

parent ece0be8a
...@@ -17,7 +17,7 @@ const annualPlan: AppRouteModule = { ...@@ -17,7 +17,7 @@ const annualPlan: AppRouteModule = {
{ {
path: 'index', path: 'index',
name: 'annualPlan', name: 'annualPlan',
component: () => import('@/views/dashboard/analysis/index.vue'), component: () => import('@/views/annualPlan/index.vue'),
meta: { meta: {
// affix: true, // affix: true,
title: '年度工程资金计划', title: '年度工程资金计划',
......
...@@ -17,7 +17,7 @@ const completed: AppRouteModule = { ...@@ -17,7 +17,7 @@ const completed: AppRouteModule = {
{ {
path: 'index', path: 'index',
name: 'completed', name: 'completed',
component: () => import('@/views/dashboard/analysis/index.vue'), component: () => import('@/views/completed/index.vue'),
meta: { meta: {
// affix: true, // affix: true,
title: '已竣工验收项目陈欠资金计划', title: '已竣工验收项目陈欠资金计划',
......
...@@ -17,7 +17,7 @@ const engineeringProject: AppRouteModule = { ...@@ -17,7 +17,7 @@ const engineeringProject: AppRouteModule = {
{ {
path: 'index', path: 'index',
name: 'engineeringProject', name: 'engineeringProject',
component: () => import('@/views/dashboard/analysis/index.vue'), component: () => import('@/views/engineeringProject/index.vue'),
meta: { meta: {
// affix: true, // affix: true,
title: '工程项目投资计划', title: '工程项目投资计划',
......
...@@ -17,7 +17,7 @@ const monthlyPlan: AppRouteModule = { ...@@ -17,7 +17,7 @@ const monthlyPlan: AppRouteModule = {
{ {
path: 'index', path: 'index',
name: 'monthlyPlan', name: 'monthlyPlan',
component: () => import('@/views/dashboard/analysis/index.vue'), component: () => import('@/views/monthlyPlan/index.vue'),
meta: { meta: {
// affix: true, // affix: true,
title: '月度工程资金计划', title: '月度工程资金计划',
......
...@@ -17,7 +17,7 @@ const performance: AppRouteModule = { ...@@ -17,7 +17,7 @@ const performance: AppRouteModule = {
{ {
path: 'index', path: 'index',
name: 'performance', name: 'performance',
component: () => import('@/views/dashboard/analysis/index.vue'), component: () => import('@/views/performance/index.vue'),
meta: { meta: {
// affix: true, // affix: true,
title: '工程项目投资计划完成情况', title: '工程项目投资计划完成情况',
......
...@@ -18,7 +18,7 @@ const statement: AppRouteModule = { ...@@ -18,7 +18,7 @@ const statement: AppRouteModule = {
{ {
path: 'index', path: 'index',
name: 'statement', name: 'statement',
component: () => import('@/views/dashboard/analysis/index.vue'), component: () => import('@/views/statement/index.vue'),
meta: { meta: {
// affix: true, // affix: true,
title: '报表中心', title: '报表中心',
......
<template>
<div>
<BasicTable :title="'年度工程资金计划'"></BasicTable>
</div>
</template>
<script lang="ts" setup>
import { BasicTable } from '@/components/Table';
</script>
<template>
<div>
<BasicTable :title="'已竣工验收项目陈欠资金计划'" />
</div>
</template>
<script lang="ts" setup>
import { BasicTable } from '@/components/Table';
</script>
<template>
<div>
<BasicTable :title="'工程项目投资计划'"></BasicTable>
</div>
</template>
<script lang="ts" setup>
import { BasicTable } from '@/components/Table';
</script>
<template>
<div>
<BasicTable :title="'月度工程资金计划'"></BasicTable>
</div>
</template>
<script lang="ts" setup>
import { BasicTable } from '@/components/Table';
</script>
<template>
<div>
<BasicTable :title="'工程项目投资计划完成情况'" />
</div>
</template>
<script lang="ts" setup>
import { BasicTable } from '@/components/Table';
</script>
<template>
<div>
<BasicTable :title="'报表中心'"></BasicTable>
</div>
</template>
<script lang="ts" setup>
import { BasicTable } from '@/components/Table';
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment