From ea78a11e2b64f1cf9dad2bf44bb720f0bb1aae03 Mon Sep 17 00:00:00 2001 From: "liujw155@outlook.com" Date: Tue, 15 Mar 2022 18:01:06 +0800 Subject: [PATCH] add collection list --- src/pages.json | 6 ++ src/pages/collection/list/list.vue | 172 +++++++++++++++++++++++++++++++++++++ src/pages/index/index.vue | 2 +- src/pages/turnover/turnover.vue | 79 ++++++++++++----- 4 files changed, 237 insertions(+), 22 deletions(-) create mode 100644 src/pages/collection/list/list.vue diff --git a/src/pages.json b/src/pages.json index 4c5beba..51a24c8 100644 --- a/src/pages.json +++ b/src/pages.json @@ -104,6 +104,12 @@ } }, { + "path": "pages/collection/list/list", + "style": { + "navigationBarTitleText": "收款记录" + } + }, + { "path": "pages/collection/detail/detail", "style": { "navigationBarTitleText": "收款明细" diff --git a/src/pages/collection/list/list.vue b/src/pages/collection/list/list.vue new file mode 100644 index 0000000..dfa6577 --- /dev/null +++ b/src/pages/collection/list/list.vue @@ -0,0 +1,172 @@ + + + + + \ No newline at end of file diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 917757a..5d2bf04 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -79,7 +79,7 @@ const tabList = [ { id: 0, - name: '营业额', + name: '收入统计', path: '/pages/turnover/turnover', serverKey: 1001 // 后端对应权限编号 }, diff --git a/src/pages/turnover/turnover.vue b/src/pages/turnover/turnover.vue index c7fc3c1..81c7268 100644 --- a/src/pages/turnover/turnover.vue +++ b/src/pages/turnover/turnover.vue @@ -1,8 +1,8 @@