From 61e12467fd0fa88984dec23167831b51b0709057 Mon Sep 17 00:00:00 2001 From: zhanli <719901725@qq.com> Date: Thu, 21 Dec 2023 21:22:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E9=93=B6=E8=A1=8C=E5=8D=A1?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E4=B8=AD=E7=9A=84=E9=93=B6=E8=A1=8C=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E5=92=8C=E5=A2=9E=E5=8A=A0=E5=BC=80=E6=88=B7=E8=A1=8C?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/Crud/CRUD.operation.vue | 4 +- Fiance-UI/src/router/index.js | 1 + .../src/views/system/mybusiness/index.vue | 185 ++++++++++++++++++ Fiance-UI/src/views/system/project/index.vue | 14 +- Fiance-UI/src/views/system/purchase/index.vue | 6 +- Fiance-UI/src/views/system/userbank/index.vue | 10 +- .../modules/system/domain/UserBank.java | 22 ++- .../system/rest/UserBankController.java | 2 +- .../system/service/dto/UserBankDto.java | 10 +- .../service/dto/UserBankQueryCriteria.java | 2 +- .../service/impl/UserBankServiceImpl.java | 31 +-- .../service/mapstruct/UserBankMapper.java | 2 +- 源码阅读笔记.md | 23 +++ 13 files changed, 267 insertions(+), 45 deletions(-) create mode 100644 Fiance-UI/src/views/system/mybusiness/index.vue create mode 100644 源码阅读笔记.md diff --git a/Fiance-UI/src/components/Crud/CRUD.operation.vue b/Fiance-UI/src/components/Crud/CRUD.operation.vue index 33d2077..e2c34e8 100644 --- a/Fiance-UI/src/components/Crud/CRUD.operation.vue +++ b/Fiance-UI/src/components/Crud/CRUD.operation.vue @@ -12,9 +12,9 @@ icon="el-icon-plus" @click="crud.toAdd" > - 新增 + 新增 - { const sdata = JSON.parse(JSON.stringify(res)) const rdata = JSON.parse(JSON.stringify(res)) const sidebarRoutes = filterAsyncRouter(sdata) + const rewriteRoutes = filterAsyncRouter(rdata, false, true) rewriteRoutes.push({ path: '*', redirect: '/404', hidden: true }) diff --git a/Fiance-UI/src/views/system/mybusiness/index.vue b/Fiance-UI/src/views/system/mybusiness/index.vue new file mode 100644 index 0000000..55f8066 --- /dev/null +++ b/Fiance-UI/src/views/system/mybusiness/index.vue @@ -0,0 +1,185 @@ + + + + + diff --git a/Fiance-UI/src/views/system/project/index.vue b/Fiance-UI/src/views/system/project/index.vue index fafd032..bde73e4 100644 --- a/Fiance-UI/src/views/system/project/index.vue +++ b/Fiance-UI/src/views/system/project/index.vue @@ -37,10 +37,11 @@ - + @@ -85,7 +86,6 @@