黑曜石记账

  • 平台:手机
  • 包含界面
    • 首页详情页面、账目编辑页面、添加记账页面、添加记账标签页面、图表统计页面
  • 功能:
    • 记账:金额 标签 备注 类型
    • 管理标签:添加 删除
    • 账目:修改账目
    • 统计:包括echarts制作柱状图
    • 查看:按周 月 年查看
  • 源码地址:https://github.com/Gaocarri/obsidian-app
  • 项目预览:http://gaocarri.gitee.io/obsidian-website/#/money

路由配置

1.使用VueRouter配置路由

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const routes = [
  {
    path: '/',
    redirect: '/money'
  },
  {
    path: '/money',
    component: Money
  },
  {
    path: '/money/editLabel/:number',
    component: EditLabel
  },
  {
    path: '/add',
    component: Add
  },
  {
    path: '/statistics',
    component: Statistics
  },
  {
    path: '/tags',
    component: Tags
  },
  {
    path: '*',
    component: NotFound
  }
]