create-young-proj 0.7.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/dist/index.mjs +0 -0
- package/package.json +36 -28
- package/template-admin-server/.editorconfig +0 -0
- package/template-admin-server/.nvmrc +0 -0
- package/template-admin-server/.vscode/extensions.json +0 -0
- package/template-admin-server/.vscode/settings.json +0 -0
- package/template-admin-server/README.md +0 -0
- package/template-admin-server/_gitignore +0 -0
- package/template-admin-server/boot.mjs +0 -0
- package/template-admin-server/package.json +0 -0
- package/template-admin-server/rome.json +0 -0
- package/template-admin-server/src/config/config.default.ts +0 -0
- package/template-admin-server/src/configuration.ts +0 -0
- package/template-admin-server/src/controller/admin.controller.ts +0 -0
- package/template-admin-server/src/controller/api.controller.ts +0 -0
- package/template-admin-server/src/controller/base.controller.ts +0 -0
- package/template-admin-server/src/controller/dto/api.ts +0 -0
- package/template-admin-server/src/controller/dto/index.ts +0 -0
- package/template-admin-server/src/controller/dto/menu.ts +0 -0
- package/template-admin-server/src/controller/dto/role.ts +0 -0
- package/template-admin-server/src/controller/dto/user.ts +0 -0
- package/template-admin-server/src/controller/menu.controller.ts +0 -0
- package/template-admin-server/src/controller/role.controller.ts +0 -0
- package/template-admin-server/src/controller/user.controller.ts +0 -0
- package/template-admin-server/src/entities/Api.ts +0 -0
- package/template-admin-server/src/entities/BaseCreate.ts +0 -0
- package/template-admin-server/src/entities/Menu.ts +0 -0
- package/template-admin-server/src/entities/Role.ts +0 -0
- package/template-admin-server/src/entities/User.ts +0 -0
- package/template-admin-server/src/entities/index.ts +0 -0
- package/template-admin-server/src/filter/default.filter.ts +0 -0
- package/template-admin-server/src/filter/notfound.filter.ts +0 -0
- package/template-admin-server/src/middleware/helper.middleware.ts +0 -0
- package/template-admin-server/src/middleware/index.ts +0 -0
- package/template-admin-server/src/middleware/jwt.middleware.ts +0 -0
- package/template-admin-server/src/middleware/report.middleware.ts +0 -0
- package/template-admin-server/src/service/api.service.ts +0 -0
- package/template-admin-server/src/service/basic.ts +0 -0
- package/template-admin-server/src/service/index.ts +0 -0
- package/template-admin-server/src/service/menu.service.ts +0 -0
- package/template-admin-server/src/service/role.service.ts +0 -0
- package/template-admin-server/src/service/user.service.ts +0 -0
- package/template-admin-server/src/strategy/jwt.strategy.ts +0 -0
- package/template-admin-server/src/types/index.ts +0 -0
- package/template-admin-server/src/types/types.d.ts +0 -0
- package/template-admin-server/tsconfig.json +0 -0
- package/template-nuxt-admin/.eslintrc +14 -0
- package/template-nuxt-admin/.vscode/extensions.json +12 -0
- package/template-nuxt-admin/.vscode/settings.json +25 -0
- package/template-nuxt-admin/Dockerfile +0 -0
- package/template-nuxt-admin/README.md +29 -1
- package/template-nuxt-admin/_gitignore +23 -0
- package/template-nuxt-admin/_npmrc +2 -0
- package/template-nuxt-admin/app.vue +12 -12
- package/template-nuxt-admin/boot.mjs +0 -0
- package/template-nuxt-admin/components/ScreenFull.vue +5 -4
- package/template-nuxt-admin/components/TopSearch.vue +35 -31
- package/template-nuxt-admin/components/TopUser.vue +12 -9
- package/template-nuxt-admin/components/YoungChangePassword.vue +54 -44
- package/template-nuxt-admin/components/YoungCodeInput.vue +31 -25
- package/template-nuxt-admin/components/YoungLink.vue +3 -2
- package/template-nuxt-admin/components/YoungLoading.vue +1 -1
- package/template-nuxt-admin/components/layout/Footer.vue +1 -1
- package/template-nuxt-admin/components/layout/Logo.vue +7 -5
- package/template-nuxt-admin/components/layout/Main.vue +2 -17
- package/template-nuxt-admin/components/layout/NavBar.vue +12 -9
- package/template-nuxt-admin/components/layout/SideBar.vue +7 -6
- package/template-nuxt-admin/components/layout/SubMenu.vue +12 -13
- package/template-nuxt-admin/components/layout/TabsBar.vue +45 -43
- package/template-nuxt-admin/composables/api.ts +39 -37
- package/template-nuxt-admin/composables/apis/delete.ts +7 -7
- package/template-nuxt-admin/composables/apis/get.ts +13 -13
- package/template-nuxt-admin/composables/apis/index.ts +4 -4
- package/template-nuxt-admin/composables/apis/patch.ts +11 -11
- package/template-nuxt-admin/composables/apis/post.ts +17 -17
- package/template-nuxt-admin/composables/config.ts +1 -1
- package/template-nuxt-admin/composables/icon.ts +4 -4
- package/template-nuxt-admin/composables/nav.ts +19 -21
- package/template-nuxt-admin/composables/tags.ts +50 -50
- package/template-nuxt-admin/composables/user.ts +10 -11
- package/template-nuxt-admin/config/.devrc +0 -0
- package/template-nuxt-admin/config/.onlinerc +0 -0
- package/template-nuxt-admin/config/.testrc +0 -0
- package/template-nuxt-admin/env.d.ts +0 -0
- package/template-nuxt-admin/error.vue +37 -29
- package/template-nuxt-admin/layouts/blank.vue +0 -0
- package/template-nuxt-admin/layouts/default.vue +18 -17
- package/template-nuxt-admin/middleware/auth.global.ts +31 -20
- package/template-nuxt-admin/nuxt.config.ts +8 -7
- package/template-nuxt-admin/package.json +39 -19
- package/template-nuxt-admin/pages/home/[id].vue +6 -6
- package/template-nuxt-admin/pages/index.vue +4 -4
- package/template-nuxt-admin/pages/login.vue +74 -56
- package/template-nuxt-admin/pages/system/api.vue +77 -64
- package/template-nuxt-admin/pages/system/hooks/useRole.ts +127 -128
- package/template-nuxt-admin/pages/system/menuList.vue +171 -146
- package/template-nuxt-admin/pages/system/role.vue +66 -38
- package/template-nuxt-admin/pages/system/user.vue +85 -74
- package/template-nuxt-admin/plugins/directive.ts +9 -9
- package/template-nuxt-admin/public/default_avatar.svg +0 -0
- package/template-nuxt-admin/public/favicon.ico +0 -0
- package/template-nuxt-admin/public/image_placeholder.svg +0 -0
- package/template-nuxt-admin/public/tabbar_bg.png +0 -0
- package/template-nuxt-admin/server/api/[...all].ts +3 -3
- package/template-nuxt-admin/server/plugins/env.ts +19 -20
- package/template-nuxt-admin/server/routes/get/env.ts +3 -3
- package/template-nuxt-admin/server/tsconfig.json +0 -0
- package/template-nuxt-admin/server/utils/index.ts +15 -14
- package/template-nuxt-admin/styles/element.scss +0 -0
- package/template-nuxt-admin/styles/index.scss +0 -0
- package/template-nuxt-admin/styles/variable.scss +0 -0
- package/template-nuxt-admin/tsconfig.json +0 -0
- package/template-nuxt-admin/typings/global.d.ts +0 -0
- package/template-nuxt-admin/typings/system.d.ts +0 -0
- package/template-nuxt-admin/typings/user.d.ts +0 -0
- package/template-nuxt-admin/uno.config.ts +1 -1
- package/template-nuxt-admin/utils/tool.ts +65 -65
- package/template-nuxt-admin/yarn.lock +3321 -1535
- package/template-uni-app/.eslintignore +1 -0
- package/template-uni-app/.eslintrc +16 -0
- package/template-uni-app/.vscode/.server-controller-port.log +5 -0
- package/template-uni-app/.vscode/css.code-snippets +0 -0
- package/template-uni-app/.vscode/extensions.json +5 -2
- package/template-uni-app/.vscode/js.code-snippets +0 -0
- package/template-uni-app/.vscode/settings.json +24 -6
- package/template-uni-app/.vscode/vue-html.code-snippets +0 -0
- package/template-uni-app/README.md +20 -0
- package/template-uni-app/_env +1 -1
- package/template-uni-app/_env.development +2 -2
- package/template-uni-app/_env.production +0 -3
- package/template-uni-app/_env.test +0 -3
- package/template-uni-app/_gitignore +0 -0
- package/template-uni-app/_npmrc +0 -0
- package/template-uni-app/auto-imports.d.ts +3 -0
- package/template-uni-app/components.d.ts +0 -0
- package/template-uni-app/custom-plugins/index.ts +2 -2
- package/template-uni-app/custom-plugins/multiconf.ts +17 -19
- package/template-uni-app/custom-plugins/polyfill.ts +9 -9
- package/template-uni-app/dist/dev/mp-weixin/apis/index.js +44 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/lib/index.js +90 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/get.js +10 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/index.js +1 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/post.js +15 -0
- package/template-uni-app/dist/dev/mp-weixin/app.js +93 -0
- package/template-uni-app/dist/dev/mp-weixin/app.json +51 -0
- package/template-uni-app/dist/dev/mp-weixin/app.wxss +2378 -0
- package/template-uni-app/dist/dev/mp-weixin/common/assets.js +13 -0
- package/template-uni-app/dist/dev/mp-weixin/common/vendor.js +10189 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.js +22 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.json +4 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.js +22 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.json +4 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.js +82 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.json +4 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxss +108 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.js +56 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.json +4 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxss +88 -0
- package/template-uni-app/dist/dev/mp-weixin/config/enum.js +21 -0
- package/template-uni-app/dist/dev/mp-weixin/config/index.js +1 -0
- package/template-uni-app/dist/dev/mp-weixin/config/map.js +1 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.js +30 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.json +6 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.js +56 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.json +9 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.js +98 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.json +4 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss +125 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.js +38 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.json +5 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.js +51 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.json +5 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.js +22 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.json +3 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxml +1 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/project.config.json +56 -0
- package/template-uni-app/dist/dev/mp-weixin/static/back.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/h.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/home.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/home_active.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/more.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/my.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/my_active.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/network.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/store/index.js +8 -0
- package/template-uni-app/dist/dev/mp-weixin/store/local/index.js +11 -0
- package/template-uni-app/dist/dev/mp-weixin/store/system.js +14 -0
- package/template-uni-app/dist/dev/mp-weixin/utils/modal.js +82 -0
- package/template-uni-app/dist/dev/mp-weixin/utils/route.js +85 -0
- package/template-uni-app/dist/dev/mp-weixin/utils/system.js +27 -0
- package/template-uni-app/index.html +0 -0
- package/template-uni-app/manifest.config.ts +11 -11
- package/template-uni-app/package.json +24 -6
- package/template-uni-app/pages.config.ts +11 -11
- package/template-uni-app/pnpm-lock.yaml +2677 -500
- package/template-uni-app/src/App.vue +24 -26
- package/template-uni-app/src/apis/index.ts +25 -21
- package/template-uni-app/src/apis/lib/index.ts +77 -78
- package/template-uni-app/src/apis/requests/get.ts +38 -38
- package/template-uni-app/src/apis/requests/index.ts +2 -2
- package/template-uni-app/src/apis/requests/post.ts +8 -8
- package/template-uni-app/src/components/young-loading/young-loading.vue +17 -19
- package/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue +14 -17
- package/template-uni-app/src/components/young-navbar/young-navbar.vue +43 -44
- package/template-uni-app/src/components/young-tabbar/young-tabbar.vue +39 -35
- package/template-uni-app/src/config/enum.ts +1 -1
- package/template-uni-app/src/config/index.ts +2 -2
- package/template-uni-app/src/config/map.ts +4 -4
- package/template-uni-app/src/env.d.ts +0 -0
- package/template-uni-app/src/layouts/default.vue +8 -10
- package/template-uni-app/src/layouts/tabbar.vue +25 -15
- package/template-uni-app/src/main.ts +7 -7
- package/template-uni-app/src/manifest.json +1 -1
- package/template-uni-app/src/pages/demo/index.vue +16 -10
- package/template-uni-app/src/pages/index.vue +46 -25
- package/template-uni-app/src/pages/my.vue +17 -8
- package/template-uni-app/src/pages.json +9 -3
- package/template-uni-app/src/static/back.png +0 -0
- package/template-uni-app/src/static/h.png +0 -0
- package/template-uni-app/src/static/home.png +0 -0
- package/template-uni-app/src/static/home_active.png +0 -0
- package/template-uni-app/src/static/more.png +0 -0
- package/template-uni-app/src/static/my.png +0 -0
- package/template-uni-app/src/static/my_active.png +0 -0
- package/template-uni-app/src/static/network.png +0 -0
- package/template-uni-app/src/store/index.ts +6 -6
- package/template-uni-app/src/store/local/index.ts +23 -21
- package/template-uni-app/src/store/system.ts +11 -10
- package/template-uni-app/src/typings/global.d.ts +7 -0
- package/template-uni-app/src/uni.scss +0 -0
- package/template-uni-app/src/utils/auth.ts +137 -58
- package/template-uni-app/src/utils/index.ts +5 -5
- package/template-uni-app/src/utils/map.ts +45 -45
- package/template-uni-app/src/utils/modal.ts +61 -39
- package/template-uni-app/src/utils/route.ts +40 -38
- package/template-uni-app/src/utils/system.ts +25 -24
- package/template-uni-app/tsconfig.json +11 -11
- package/template-uni-app/unocss.config.ts +4 -4
- package/template-uni-app/vite.config.ts +15 -15
- package/template-uni-app/volar.config.js +2 -2
- package/template-vue-admin/.vscode/extensions.json +0 -0
- package/template-vue-admin/.vscode/list-add.code-snippets +0 -0
- package/template-vue-admin/.vscode/list-export.code-snippets +0 -0
- package/template-vue-admin/.vscode/list.code-snippets +0 -0
- package/template-vue-admin/.vscode/settings.json +0 -0
- package/template-vue-admin/Dockerfile +0 -0
- package/template-vue-admin/README.md +0 -0
- package/template-vue-admin/_env +0 -0
- package/template-vue-admin/_gitignore +0 -0
- package/template-vue-admin/boot.mjs +0 -0
- package/template-vue-admin/build/custom-plugin.ts +0 -0
- package/template-vue-admin/build/index.ts +0 -0
- package/template-vue-admin/build/plugins.ts +0 -0
- package/template-vue-admin/config/.devrc +0 -0
- package/template-vue-admin/config/.onlinerc +0 -0
- package/template-vue-admin/config/.testrc +0 -0
- package/template-vue-admin/index.html +0 -0
- package/template-vue-admin/nitro.config.ts +0 -0
- package/template-vue-admin/package.json +0 -0
- package/template-vue-admin/plugins/init.ts +0 -0
- package/template-vue-admin/public/vite.svg +0 -0
- package/template-vue-admin/rome.json +0 -0
- package/template-vue-admin/routes/api/[...all].ts +0 -0
- package/template-vue-admin/routes/get/env.ts +0 -0
- package/template-vue-admin/src/App.vue +0 -0
- package/template-vue-admin/src/apis/delete.ts +0 -0
- package/template-vue-admin/src/apis/get.ts +0 -0
- package/template-vue-admin/src/apis/index.ts +0 -0
- package/template-vue-admin/src/apis/patch.ts +0 -0
- package/template-vue-admin/src/apis/post.ts +0 -0
- package/template-vue-admin/src/assets/img/login_background.jpg +0 -0
- package/template-vue-admin/src/auto-components.d.ts +0 -0
- package/template-vue-admin/src/auto-imports.d.ts +0 -0
- package/template-vue-admin/src/layouts/blank.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/Link.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/Logo.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/Menu.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/NavSearch.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/ScrollPane.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/TagsView.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/TopMenu.vue +0 -0
- package/template-vue-admin/src/layouts/default/components/UserCenter.vue +0 -0
- package/template-vue-admin/src/layouts/default/index.vue +0 -0
- package/template-vue-admin/src/main.ts +0 -0
- package/template-vue-admin/src/modules/1-router.ts +0 -0
- package/template-vue-admin/src/modules/2-pinia.ts +0 -0
- package/template-vue-admin/src/modules/3-net.ts +0 -0
- package/template-vue-admin/src/modules/4-auth.ts +0 -0
- package/template-vue-admin/src/modules/5-checkupdate.ts +0 -0
- package/template-vue-admin/src/shims.d.ts +0 -0
- package/template-vue-admin/src/stores/index.ts +0 -0
- package/template-vue-admin/src/stores/local/index.ts +0 -0
- package/template-vue-admin/src/stores/session/index.ts +0 -0
- package/template-vue-admin/src/stores/tags.ts +0 -0
- package/template-vue-admin/src/typings/global.d.ts +0 -0
- package/template-vue-admin/src/typings/index.ts +0 -0
- package/template-vue-admin/src/typings/system.d.ts +0 -0
- package/template-vue-admin/src/views/403.vue +0 -0
- package/template-vue-admin/src/views/[...all_404].vue +0 -0
- package/template-vue-admin/src/views/base/login.vue +0 -0
- package/template-vue-admin/src/views/dashboard/[name].vue +0 -0
- package/template-vue-admin/src/views/index.vue +0 -0
- package/template-vue-admin/src/views/system/api.vue +0 -0
- package/template-vue-admin/src/views/system/hooks/useRole.ts +0 -0
- package/template-vue-admin/src/views/system/menuList.vue +3 -3
- package/template-vue-admin/src/views/system/role.vue +0 -0
- package/template-vue-admin/src/views/system/user.vue +0 -0
- package/template-vue-admin/src/vite-env.d.ts +0 -0
- package/template-vue-admin/tsconfig.json +0 -0
- package/template-vue-admin/tsconfig.node.json +0 -0
- package/template-vue-admin/unocss.config.ts +0 -0
- package/template-vue-admin/vite.config.ts +0 -0
- package/template-vue-mobile/.vscode/base.code-snippets +0 -0
- package/template-vue-mobile/.vscode/extensions.json +0 -0
- package/template-vue-mobile/.vscode/settings.json +0 -0
- package/template-vue-mobile/Dockerfile +0 -0
- package/template-vue-mobile/README.md +0 -0
- package/template-vue-mobile/_env +0 -0
- package/template-vue-mobile/_gitignore +0 -0
- package/template-vue-mobile/boot.mjs +0 -0
- package/template-vue-mobile/build/custom-plugin.ts +0 -0
- package/template-vue-mobile/build/index.ts +0 -0
- package/template-vue-mobile/build/plugins.ts +0 -0
- package/template-vue-mobile/config/.devrc +0 -0
- package/template-vue-mobile/config/.onlinerc +0 -0
- package/template-vue-mobile/config/.testrc +0 -0
- package/template-vue-mobile/index.html +0 -0
- package/template-vue-mobile/nitro.config.ts +0 -0
- package/template-vue-mobile/package.json +0 -0
- package/template-vue-mobile/plugins/env.ts +0 -0
- package/template-vue-mobile/public/vite.svg +0 -0
- package/template-vue-mobile/rome.json +0 -0
- package/template-vue-mobile/routes/[...all].ts +0 -0
- package/template-vue-mobile/routes/get/env.ts +0 -0
- package/template-vue-mobile/src/App.vue +0 -0
- package/template-vue-mobile/src/auto-components.d.ts +0 -0
- package/template-vue-mobile/src/auto-imports.d.ts +0 -0
- package/template-vue-mobile/src/components/Init.vue +0 -0
- package/template-vue-mobile/src/global.d.ts +0 -0
- package/template-vue-mobile/src/hooks/useVerifyCode.ts +0 -0
- package/template-vue-mobile/src/layouts/blank.vue +0 -0
- package/template-vue-mobile/src/layouts/default.vue +0 -0
- package/template-vue-mobile/src/layouts/sub.vue +0 -0
- package/template-vue-mobile/src/main.ts +0 -0
- package/template-vue-mobile/src/modules/1-router.ts +0 -0
- package/template-vue-mobile/src/modules/2-pinia.ts +0 -0
- package/template-vue-mobile/src/modules/3-net.ts +0 -0
- package/template-vue-mobile/src/modules/4-auth.ts +0 -0
- package/template-vue-mobile/src/views/[...all_404].vue +0 -0
- package/template-vue-mobile/src/views/base/login.vue +0 -0
- package/template-vue-mobile/src/views/base/resetPasswd.vue +0 -0
- package/template-vue-mobile/src/views/index.vue +0 -0
- package/template-vue-mobile/src/views/my.vue +0 -0
- package/template-vue-mobile/src/views/sub.vue +0 -0
- package/template-vue-mobile/src/vite-env.d.ts +0 -0
- package/template-vue-mobile/tsconfig.json +0 -0
- package/template-vue-mobile/tsconfig.node.json +0 -0
- package/template-vue-mobile/unocss.config.ts +0 -0
- package/template-vue-mobile/vite.config.ts +0 -0
- package/template-vue-mobile/yarn.lock +0 -0
- package/template-vue-thin/.vscode/extensions.json +0 -0
- package/template-vue-thin/.vscode/settings.json +0 -0
- package/template-vue-thin/README.md +0 -0
- package/template-vue-thin/_env +0 -0
- package/template-vue-thin/_gitignore +0 -0
- package/template-vue-thin/index.html +0 -0
- package/template-vue-thin/package.json +0 -0
- package/template-vue-thin/public/vite.svg +0 -0
- package/template-vue-thin/src/App.vue +0 -0
- package/template-vue-thin/src/layouts/blank.vue +0 -0
- package/template-vue-thin/src/layouts/default.vue +0 -0
- package/template-vue-thin/src/layouts/list.vue +0 -0
- package/template-vue-thin/src/main.ts +0 -0
- package/template-vue-thin/src/views/[...all_404].vue +0 -0
- package/template-vue-thin/src/views/index.vue +0 -0
- package/template-vue-thin/src/views/list.vue +0 -0
- package/template-vue-thin/src/vite-env.d.ts +0 -0
- package/template-vue-thin/tsconfig.json +0 -0
- package/template-vue-thin/tsconfig.node.json +0 -0
- package/template-vue-thin/unocss.config.ts +0 -0
- package/template-vue-thin/vite.config.ts +0 -0
- package/template-nuxt-admin/rome.json +0 -26
- package/template-uni-app/rome.json +0 -26
@@ -1,28 +1,28 @@
|
|
1
1
|
<!--
|
2
2
|
* @Author: zhangyang
|
3
3
|
* @Date: 2023-07-25 16:44:56
|
4
|
-
* @LastEditTime: 2023-
|
4
|
+
* @LastEditTime: 2023-08-25 16:54:08
|
5
5
|
* @Description:
|
6
6
|
-->
|
7
7
|
<script lang="ts" setup>
|
8
|
-
import {
|
9
|
-
import type { TableDataItem, TableHeadItem,
|
10
|
-
import { deepClone } from '@bluesyoung/utils'
|
11
|
-
import { ElButton, ElTag } from 'element-plus'
|
8
|
+
import { YoungDialog, YoungPagination, YoungSearchForm, YoungSelect, YoungTablePro, useFormMode, useQuery } from '@bluesyoung/ui-vue3-element-plus'
|
9
|
+
import type { SelectOptionItem, TableDataItem, TableHeadItem, YoungSearchScheme } from '@bluesyoung/ui-vue3-element-plus'
|
10
|
+
import { deepClone } from '@bluesyoung/utils'
|
11
|
+
import { ElButton, ElTag } from 'element-plus'
|
12
12
|
|
13
13
|
definePageMeta({
|
14
|
-
title: '接口管理'
|
15
|
-
})
|
14
|
+
title: '接口管理',
|
15
|
+
})
|
16
16
|
|
17
|
-
interface Form extends ApiItem { op?: any
|
17
|
+
interface Form extends ApiItem { op?: any };
|
18
18
|
const FORM_TEMP: Form = {
|
19
19
|
id: 0,
|
20
20
|
path: '',
|
21
21
|
desc: '',
|
22
22
|
method: 'POST',
|
23
23
|
category: '',
|
24
|
-
roleIds: []
|
25
|
-
}
|
24
|
+
roleIds: [],
|
25
|
+
}
|
26
26
|
const {
|
27
27
|
isAdd,
|
28
28
|
isEdit,
|
@@ -32,33 +32,33 @@ const {
|
|
32
32
|
clear,
|
33
33
|
form,
|
34
34
|
formRef,
|
35
|
-
validForm
|
35
|
+
validForm,
|
36
36
|
} = useFormMode<Form>(FORM_TEMP, {
|
37
37
|
addCbk: async () => {
|
38
|
-
const res = await validForm() as boolean
|
38
|
+
const res = await validForm() as boolean
|
39
39
|
if (res) {
|
40
|
-
const v = deepClone(form.value)
|
41
|
-
await apis.post.addApiItem(v)
|
42
|
-
ElMessage.success('新增成功!')
|
40
|
+
const v = deepClone(form.value)
|
41
|
+
await apis.post.addApiItem(v)
|
42
|
+
ElMessage.success('新增成功!')
|
43
43
|
}
|
44
|
-
return res
|
44
|
+
return res
|
45
45
|
},
|
46
46
|
modCbk: async () => {
|
47
|
-
const res = await validForm() as boolean
|
47
|
+
const res = await validForm() as boolean
|
48
48
|
if (res) {
|
49
|
-
const v = deepClone(form.value)
|
50
|
-
await apis.patch.changeApiItem(v)
|
51
|
-
ElMessage.success('修改成功!')
|
49
|
+
const v = deepClone(form.value)
|
50
|
+
await apis.patch.changeApiItem(v)
|
51
|
+
ElMessage.success('修改成功!')
|
52
52
|
}
|
53
|
-
return res
|
53
|
+
return res
|
54
54
|
},
|
55
55
|
delCbk: async (row) => {
|
56
|
-
await apis.delete.deleteApi(row.id.toString())
|
57
|
-
ElMessage.success('删除成功!')
|
58
|
-
query.value.pageNum = 1
|
56
|
+
await apis.delete.deleteApi(row.id.toString())
|
57
|
+
ElMessage.success('删除成功!')
|
58
|
+
query.value.pageNum = 1
|
59
59
|
},
|
60
60
|
cgEffect: () => getList(),
|
61
|
-
})
|
61
|
+
})
|
62
62
|
const tableHead: TableHeadItem<Form>[] = [
|
63
63
|
{ prop: 'id', label: '接口ID' },
|
64
64
|
{ prop: 'desc', label: '接口描述' },
|
@@ -66,41 +66,45 @@ const tableHead: TableHeadItem<Form>[] = [
|
|
66
66
|
{ prop: 'path', label: '接口路径' },
|
67
67
|
{ prop: 'creator', label: '创建信息' },
|
68
68
|
{
|
69
|
-
prop: 'method',
|
69
|
+
prop: 'method',
|
70
|
+
label: '接口方法',
|
71
|
+
render: row => h(ElTag, {
|
70
72
|
effect: 'dark',
|
71
|
-
type: MethodObj[row.method]
|
73
|
+
type: MethodObj[row.method],
|
72
74
|
},
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
)
|
75
|
+
{
|
76
|
+
default: () => row.method,
|
77
|
+
},
|
78
|
+
),
|
77
79
|
},
|
78
80
|
{
|
79
|
-
prop: 'op',
|
81
|
+
prop: 'op',
|
82
|
+
label: '操作',
|
83
|
+
render: row => h('div', [
|
80
84
|
h(ElButton, { type: 'primary', link: true, onClick: () => edit(row) }, { default: () => '编辑' }),
|
81
|
-
h(ElButton, { type: 'danger', link: true, onClick: () => del(row) }, { default: () => '删除' })
|
82
|
-
])
|
83
|
-
}
|
84
|
-
]
|
85
|
-
const tableData = ref<TableDataItem<Form>[]>([])
|
85
|
+
h(ElButton, { type: 'danger', link: true, onClick: () => del(row) }, { default: () => '删除' }),
|
86
|
+
]),
|
87
|
+
},
|
88
|
+
]
|
89
|
+
const tableData = ref<TableDataItem<Form>[]>([])
|
86
90
|
|
87
|
-
|
88
|
-
const { list: role_list } = await apis.get.getRoleList({ noPagination: true })
|
91
|
+
async function getList() {
|
92
|
+
const { list: role_list } = await apis.get.getRoleList({ noPagination: true })
|
89
93
|
roleList.value = (role_list || []).map((item: RoleItem) => {
|
90
94
|
return {
|
91
95
|
label: item.name,
|
92
|
-
value: item.id
|
93
|
-
}
|
94
|
-
})
|
96
|
+
value: item.id,
|
97
|
+
}
|
98
|
+
})
|
95
99
|
|
96
|
-
const { list, pageNum, pageSize, total } = await apis.get.getApiList(query.value)
|
97
|
-
tableData.value = deepClone(list || [])
|
98
|
-
query.value.pageNum = +pageNum || 1
|
99
|
-
query.value.pageSize = +pageSize || 50
|
100
|
-
query.value.total = +total || 0
|
101
|
-
}
|
100
|
+
const { list, pageNum, pageSize, total } = await apis.get.getApiList(query.value)
|
101
|
+
tableData.value = deepClone(list || [])
|
102
|
+
query.value.pageNum = +pageNum || 1
|
103
|
+
query.value.pageSize = +pageSize || 50
|
104
|
+
query.value.total = +total || 0
|
105
|
+
}
|
102
106
|
|
103
|
-
type Query = BaseQuery & Partial<Form
|
107
|
+
type Query = BaseQuery & Partial<Form>
|
104
108
|
const { query, reset } = useQuery<Query>(
|
105
109
|
{
|
106
110
|
pageNum: 1,
|
@@ -109,7 +113,7 @@ const { query, reset } = useQuery<Query>(
|
|
109
113
|
path: '',
|
110
114
|
},
|
111
115
|
getList,
|
112
|
-
)
|
116
|
+
)
|
113
117
|
const queryScheme: YoungSearchScheme<Query> = {
|
114
118
|
path: {
|
115
119
|
type: 'input',
|
@@ -118,44 +122,53 @@ const queryScheme: YoungSearchScheme<Query> = {
|
|
118
122
|
placeholder: '请输入接口路径',
|
119
123
|
},
|
120
124
|
},
|
121
|
-
}
|
125
|
+
}
|
122
126
|
|
123
|
-
const roleList = ref<SelectOptionItem<number>[]>([])
|
127
|
+
const roleList = ref<SelectOptionItem<number>[]>([])
|
124
128
|
|
125
|
-
getList
|
129
|
+
useTabReOpen(getList)
|
126
130
|
</script>
|
131
|
+
|
127
132
|
<template>
|
128
133
|
<ElCard>
|
129
134
|
<YoungSearchForm v-model="query" :search-scheme="queryScheme" :on-search="getList" :on-reset="reset">
|
130
135
|
<template #btns>
|
131
|
-
<ElButton type="success" @click="isAdd = true"
|
136
|
+
<ElButton type="success" @click="isAdd = true">
|
137
|
+
添加接口
|
138
|
+
</ElButton>
|
132
139
|
</template>
|
133
140
|
</YoungSearchForm>
|
134
141
|
</ElCard>
|
135
142
|
|
136
|
-
<br
|
143
|
+
<br>
|
137
144
|
|
138
145
|
<ElCard>
|
139
146
|
<YoungTablePro :table-data="tableData" :table-head="tableHead" />
|
140
|
-
<YoungPagination
|
141
|
-
|
147
|
+
<YoungPagination
|
148
|
+
v-model:page="query.pageNum" v-model:limit="query.pageSize" :total="query.total"
|
149
|
+
@page-change="getList"
|
150
|
+
/>
|
142
151
|
</ElCard>
|
143
152
|
<YoungDialog :is-add="isAdd" :is-edit="isEdit" :diff-form="form" width="520px" @sure="sure" @clear="clear">
|
144
153
|
<template #body>
|
145
154
|
<ElForm ref="formRef" :model="form" label-width="100px" :label-position="WindowSize['lt-lg'] ? 'top' : 'left'">
|
146
155
|
<ElFormItem label="分组名称" prop="category" :rules="{ required: true, message: '请填写分组名称', trigger: 'blur' }">
|
147
|
-
<ElInput v-model="form.category" class="!w-300px" />
|
156
|
+
<ElInput v-model.trim="form.category" class="!w-300px" />
|
148
157
|
</ElFormItem>
|
149
158
|
<ElFormItem label="接口描述" prop="desc" :rules="{ required: true, message: '请填写接口描述', trigger: 'blur' }">
|
150
|
-
<ElInput v-model="form.desc" class="!w-300px" />
|
159
|
+
<ElInput v-model.trim="form.desc" class="!w-300px" />
|
151
160
|
</ElFormItem>
|
152
161
|
<ElFormItem label="请求方法">
|
153
|
-
<YoungSelect
|
154
|
-
|
162
|
+
<YoungSelect
|
163
|
+
v-model="form.method" class="!w-300px"
|
164
|
+
:options="Object.keys(MethodObj).map((item) => ({ label: item, value: item }))"
|
165
|
+
/>
|
155
166
|
</ElFormItem>
|
156
|
-
<ElFormItem
|
157
|
-
|
158
|
-
|
167
|
+
<ElFormItem
|
168
|
+
label="接口路径" prop="path"
|
169
|
+
:rules="{ message: '请填写合法的接口路径, eg: /user/list', trigger: 'blur', validator: (_: any, v: string) => /\/(.*)\/(.*)/.test(v) }"
|
170
|
+
>
|
171
|
+
<ElInput v-model.trim="form.path" class="!w-300px" />
|
159
172
|
</ElFormItem>
|
160
173
|
<ElFormItem label="关联角色">
|
161
174
|
<YoungSelect v-model="form.roleIds" multiple placeholder="请选择角色" class="!w-300px" :options="roleList" />
|
@@ -9,11 +9,11 @@ import type {
|
|
9
9
|
TableDataItem,
|
10
10
|
TableHeadItem,
|
11
11
|
YoungSearchScheme,
|
12
|
-
} from '@bluesyoung/ui-vue3-element-plus'
|
13
|
-
import { YoungSelect, useFormMode, useQuery } from '@bluesyoung/ui-vue3-element-plus'
|
14
|
-
import { deepClone } from '@bluesyoung/utils'
|
12
|
+
} from '@bluesyoung/ui-vue3-element-plus'
|
13
|
+
import { YoungSelect, useFormMode, useQuery } from '@bluesyoung/ui-vue3-element-plus'
|
14
|
+
import { deepClone } from '@bluesyoung/utils'
|
15
15
|
|
16
|
-
export
|
16
|
+
export function useRoleBase() {
|
17
17
|
const FORM_TEMP: RoleItem = {
|
18
18
|
id: 0,
|
19
19
|
name: '',
|
@@ -21,42 +21,42 @@ export const useRoleBase = () => {
|
|
21
21
|
desc: '',
|
22
22
|
status: 1,
|
23
23
|
sort: 0,
|
24
|
-
}
|
24
|
+
}
|
25
25
|
|
26
26
|
const { isAdd, isEdit, edit, del, sure, clear, form, formRef, validForm } = useFormMode(
|
27
27
|
FORM_TEMP,
|
28
28
|
{
|
29
29
|
addCbk: async () => {
|
30
|
-
const res = (await validForm()) as boolean
|
30
|
+
const res = (await validForm()) as boolean
|
31
31
|
if (res) {
|
32
|
-
const v = deepClone(form.value)
|
33
|
-
await apis.post.addRoleItem(v)
|
34
|
-
ElMessage.success('新增成功!')
|
32
|
+
const v = deepClone(form.value)
|
33
|
+
await apis.post.addRoleItem(v)
|
34
|
+
ElMessage.success('新增成功!')
|
35
35
|
}
|
36
|
-
return res
|
36
|
+
return res
|
37
37
|
},
|
38
38
|
modCbk: async () => {
|
39
|
-
const res = (await validForm()) as boolean
|
39
|
+
const res = (await validForm()) as boolean
|
40
40
|
if (res) {
|
41
|
-
const v = deepClone(form.value)
|
42
|
-
await apis.patch.changeRoleItem(v)
|
43
|
-
ElMessage.success('修改成功!')
|
41
|
+
const v = deepClone(form.value)
|
42
|
+
await apis.patch.changeRoleItem(v)
|
43
|
+
ElMessage.success('修改成功!')
|
44
44
|
}
|
45
|
-
return res
|
45
|
+
return res
|
46
46
|
},
|
47
47
|
delCbk: async (row) => {
|
48
|
-
await apis.delete.deleteRole(row.id.toString())
|
49
|
-
ElMessage.success('删除成功!')
|
50
|
-
query.value.pageNum = 1
|
48
|
+
await apis.delete.deleteRole(row.id.toString())
|
49
|
+
ElMessage.success('删除成功!')
|
50
|
+
query.value.pageNum = 1
|
51
51
|
},
|
52
52
|
cgEffect: () => getList(),
|
53
53
|
},
|
54
|
-
)
|
54
|
+
)
|
55
55
|
|
56
56
|
const options: SelectOptionItem[] = [
|
57
57
|
{ label: '禁用', value: 0 },
|
58
58
|
{ label: '启用', value: 1 },
|
59
|
-
]
|
59
|
+
]
|
60
60
|
|
61
61
|
const tableHead: TableHeadItem<RoleItem>[] = [
|
62
62
|
{ label: '角色ID', prop: 'id' },
|
@@ -67,36 +67,35 @@ export const useRoleBase = () => {
|
|
67
67
|
{
|
68
68
|
label: '启用状态',
|
69
69
|
prop: 'status',
|
70
|
-
render:
|
70
|
+
render: row =>
|
71
71
|
h(YoungSelect, {
|
72
|
-
modelValue: row.status,
|
72
|
+
'modelValue': row.status,
|
73
73
|
options,
|
74
74
|
'onUpdate:modelValue': async (status) => {
|
75
75
|
// 状态未修改
|
76
|
-
if (status === row.status)
|
77
|
-
return
|
78
|
-
}
|
76
|
+
if (status === row.status)
|
77
|
+
return
|
79
78
|
|
80
|
-
row.status = status as 0 | 1
|
81
|
-
await apis.patch.changeRoleItem(row)
|
82
|
-
ElMessage.success('修改成功!')
|
79
|
+
row.status = status as 0 | 1
|
80
|
+
await apis.patch.changeRoleItem(row)
|
81
|
+
ElMessage.success('修改成功!')
|
83
82
|
},
|
84
83
|
}),
|
85
84
|
},
|
86
|
-
]
|
87
|
-
const tableData = ref<TableDataItem<RoleItem>[]>([])
|
85
|
+
]
|
86
|
+
const tableData = ref<TableDataItem<RoleItem>[]>([])
|
88
87
|
const getList = async () => {
|
89
|
-
const { list, pageNum, pageSize, total } = await apis.get.getRoleList(query.value)
|
90
|
-
tableData.value = deepClone(list || [])
|
91
|
-
query.value.pageNum = +pageNum || 1
|
92
|
-
query.value.pageSize = +pageSize || 50
|
93
|
-
query.value.total = +total || 0
|
94
|
-
}
|
88
|
+
const { list, pageNum, pageSize, total } = await apis.get.getRoleList(query.value)
|
89
|
+
tableData.value = deepClone(list || [])
|
90
|
+
query.value.pageNum = +pageNum || 1
|
91
|
+
query.value.pageSize = +pageSize || 50
|
92
|
+
query.value.total = +total || 0
|
93
|
+
}
|
95
94
|
|
96
95
|
interface Query extends BaseQuery {
|
97
|
-
name: string
|
98
|
-
keyword: string
|
99
|
-
status: 0 | 1
|
96
|
+
name: string
|
97
|
+
keyword: string
|
98
|
+
status: 0 | 1
|
100
99
|
}
|
101
100
|
|
102
101
|
const { query, reset } = useQuery<Query>(
|
@@ -109,7 +108,7 @@ export const useRoleBase = () => {
|
|
109
108
|
status: 1,
|
110
109
|
},
|
111
110
|
getList,
|
112
|
-
)
|
111
|
+
)
|
113
112
|
|
114
113
|
const queryScheme: YoungSearchScheme<Query> = {
|
115
114
|
name: {
|
@@ -134,7 +133,7 @@ export const useRoleBase = () => {
|
|
134
133
|
},
|
135
134
|
options,
|
136
135
|
},
|
137
|
-
}
|
136
|
+
}
|
138
137
|
|
139
138
|
return {
|
140
139
|
query,
|
@@ -153,37 +152,36 @@ export const useRoleBase = () => {
|
|
153
152
|
sure,
|
154
153
|
clear,
|
155
154
|
}),
|
156
|
-
}
|
157
|
-
}
|
155
|
+
}
|
156
|
+
}
|
158
157
|
|
159
|
-
export
|
160
|
-
const showPriority = ref(false)
|
161
|
-
const currRole = ref(0)
|
162
|
-
const access = ref<number[]>([])
|
163
|
-
const origin = ref<number[]>([])
|
158
|
+
export function useRoleMenu() {
|
159
|
+
const showPriority = ref(false)
|
160
|
+
const currRole = ref(0)
|
161
|
+
const access = ref<number[]>([])
|
162
|
+
const origin = ref<number[]>([])
|
164
163
|
|
165
164
|
const tableHead = ref<TableHeadItem<NavArrItem>[]>([
|
166
165
|
{ label: '菜单名称', prop: 'title' },
|
167
166
|
{ label: '菜单id', prop: 'id' },
|
168
167
|
{ label: '父节点', prop: 'parentId' },
|
169
168
|
{ label: '页面路径', prop: 'component' },
|
170
|
-
])
|
171
|
-
const tableData = ref<TableDataItem<NavArrItem>[]>([])
|
169
|
+
])
|
170
|
+
const tableData = ref<TableDataItem<NavArrItem>[]>([])
|
172
171
|
|
173
|
-
const checkMap = ref<Record<number, boolean>>({})
|
172
|
+
const checkMap = ref<Record<number, boolean>>({})
|
174
173
|
|
175
174
|
/**
|
176
175
|
* 生成节点映射
|
177
176
|
*/
|
178
|
-
const nodeMap = new Map<number, NavArrItem>()
|
177
|
+
const nodeMap = new Map<number, NavArrItem>()
|
179
178
|
const generateNodeMap = (list: NavArrItem[]) => {
|
180
179
|
for (const node of list) {
|
181
|
-
nodeMap.set(node.id, node)
|
182
|
-
if (node.children && node.children?.length > 0)
|
183
|
-
generateNodeMap(node.children)
|
184
|
-
}
|
180
|
+
nodeMap.set(node.id, node)
|
181
|
+
if (node.children && node.children?.length > 0)
|
182
|
+
generateNodeMap(node.children)
|
185
183
|
}
|
186
|
-
}
|
184
|
+
}
|
187
185
|
|
188
186
|
/**
|
189
187
|
* 多级联动选择
|
@@ -191,57 +189,58 @@ export const useRoleMenu = () => {
|
|
191
189
|
const selectChange = (item: NavArrItem) => {
|
192
190
|
if (item.children && item.children?.length !== 0) {
|
193
191
|
item.children.forEach((v) => {
|
194
|
-
checkMap.value[v.id] = checkMap.value[item.id]
|
195
|
-
selectChange(v)
|
196
|
-
})
|
192
|
+
checkMap.value[v.id] = checkMap.value[item.id]
|
193
|
+
selectChange(v)
|
194
|
+
})
|
197
195
|
}
|
198
196
|
if (checkMap.value[item.id]) {
|
199
197
|
while (item.parentId) {
|
200
|
-
const tp = nodeMap.get(item.parentId)
|
198
|
+
const tp = nodeMap.get(item.parentId)
|
201
199
|
if (tp) {
|
202
|
-
item = tp
|
203
|
-
checkMap.value[item.id] = true
|
204
|
-
}
|
205
|
-
|
200
|
+
item = tp
|
201
|
+
checkMap.value[item.id] = true
|
202
|
+
}
|
203
|
+
else {
|
204
|
+
break
|
206
205
|
}
|
207
206
|
}
|
208
207
|
}
|
209
|
-
}
|
208
|
+
}
|
210
209
|
|
211
210
|
const edit = async (row: TableDataItem<RoleItem>) => {
|
212
|
-
currRole.value = row.id
|
213
|
-
checkMap.value = {}
|
214
|
-
nodeMap.clear()
|
211
|
+
currRole.value = row.id
|
212
|
+
checkMap.value = {}
|
213
|
+
nodeMap.clear()
|
215
214
|
|
216
|
-
const { list, accessIds } = await apis.get.getRoleMenuTree(row.id)
|
215
|
+
const { list, accessIds } = await apis.get.getRoleMenuTree(row.id)
|
217
216
|
generateNodeMap(list);
|
218
217
|
(Array.from(accessIds) as number[]).forEach((v) => {
|
219
|
-
checkMap.value[v] = true
|
220
|
-
})
|
221
|
-
|
222
|
-
tableData.value = deepClone(list)
|
223
|
-
access.value = accessIds
|
224
|
-
origin.value = accessIds
|
225
|
-
showPriority.value = true
|
226
|
-
}
|
218
|
+
checkMap.value[v] = true
|
219
|
+
})
|
220
|
+
|
221
|
+
tableData.value = deepClone(list)
|
222
|
+
access.value = accessIds
|
223
|
+
origin.value = accessIds
|
224
|
+
showPriority.value = true
|
225
|
+
}
|
227
226
|
const clear = () => {
|
228
|
-
showPriority.value = false
|
229
|
-
currRole.value = 0
|
230
|
-
tableData.value.length = 0
|
231
|
-
}
|
227
|
+
showPriority.value = false
|
228
|
+
currRole.value = 0
|
229
|
+
tableData.value.length = 0
|
230
|
+
}
|
232
231
|
|
233
232
|
const sure = async () => {
|
234
|
-
const before = origin.value.slice()
|
233
|
+
const before = origin.value.slice()
|
235
234
|
const now = Object.entries(checkMap.value)
|
236
235
|
.filter(([k, v]) => v)
|
237
|
-
.map(([k, v]) => +k)
|
236
|
+
.map(([k, v]) => +k)
|
238
237
|
|
239
|
-
const add = now.filter(
|
240
|
-
const del = before.filter(
|
241
|
-
await apis.patch.changeRoleMenu(currRole.value, add, del)
|
242
|
-
ElMessage.success('修改成功!')
|
243
|
-
clear()
|
244
|
-
}
|
238
|
+
const add = now.filter(v => !before.includes(v))
|
239
|
+
const del = before.filter(v => !now.includes(v))
|
240
|
+
await apis.patch.changeRoleMenu(currRole.value, add, del)
|
241
|
+
ElMessage.success('修改成功!')
|
242
|
+
clear()
|
243
|
+
}
|
245
244
|
|
246
245
|
return {
|
247
246
|
showPriority,
|
@@ -254,71 +253,71 @@ export const useRoleMenu = () => {
|
|
254
253
|
sure,
|
255
254
|
selectChange,
|
256
255
|
}),
|
257
|
-
}
|
258
|
-
}
|
256
|
+
}
|
257
|
+
}
|
259
258
|
|
260
|
-
export
|
261
|
-
const showApi = ref(false)
|
262
|
-
const currRole = ref(0)
|
263
|
-
const access = ref<number[]>([])
|
264
|
-
const origin = ref<number[]>([])
|
259
|
+
export function useRoleApi() {
|
260
|
+
const showApi = ref(false)
|
261
|
+
const currRole = ref(0)
|
262
|
+
const access = ref<number[]>([])
|
263
|
+
const origin = ref<number[]>([])
|
265
264
|
|
266
265
|
const tableHead = ref<TableHeadItem<ApiItem>[]>([
|
267
266
|
{ prop: 'desc', label: '接口描述' },
|
268
267
|
{ prop: 'id', label: '接口ID' },
|
269
268
|
{ prop: 'method', label: '接口方法' },
|
270
269
|
{ prop: 'path', label: '请求地址' },
|
271
|
-
])
|
272
|
-
const tableData = ref<TableDataItem<ApiItem>[]>([])
|
270
|
+
])
|
271
|
+
const tableData = ref<TableDataItem<ApiItem>[]>([])
|
273
272
|
|
274
|
-
const checkMap = ref<Record<number, boolean>>({})
|
273
|
+
const checkMap = ref<Record<number, boolean>>({})
|
275
274
|
|
276
275
|
const edit = async (row: TableDataItem<RoleItem>) => {
|
277
|
-
currRole.value = row.id
|
278
|
-
checkMap.value = {}
|
276
|
+
currRole.value = row.id
|
277
|
+
checkMap.value = {}
|
279
278
|
|
280
279
|
const { list, accessIds } = await apis.get.getRoleApis(row.id);
|
281
280
|
(Array.from(accessIds) as number[]).forEach((v) => {
|
282
|
-
checkMap.value[v] = true
|
283
|
-
})
|
281
|
+
checkMap.value[v] = true
|
282
|
+
})
|
284
283
|
|
285
284
|
tableData.value = deepClone(
|
286
285
|
Array.from(list)
|
287
286
|
.map((item: any) => item.children)
|
288
287
|
.flat(),
|
289
|
-
)
|
288
|
+
)
|
290
289
|
|
291
|
-
access.value = accessIds
|
292
|
-
origin.value = accessIds
|
293
|
-
showApi.value = true
|
290
|
+
access.value = accessIds
|
291
|
+
origin.value = accessIds
|
292
|
+
showApi.value = true
|
294
293
|
|
295
|
-
isAll.value = tableData.value.length === access.value.length
|
296
|
-
}
|
294
|
+
isAll.value = tableData.value.length === access.value.length
|
295
|
+
}
|
297
296
|
const clear = () => {
|
298
|
-
showApi.value = false
|
299
|
-
currRole.value = 0
|
300
|
-
tableData.value.length = 0
|
301
|
-
}
|
297
|
+
showApi.value = false
|
298
|
+
currRole.value = 0
|
299
|
+
tableData.value.length = 0
|
300
|
+
}
|
302
301
|
|
303
302
|
const sure = async () => {
|
304
|
-
const before = origin.value.slice()
|
303
|
+
const before = origin.value.slice()
|
305
304
|
const now = Object.entries(checkMap.value)
|
306
305
|
.filter(([k, v]) => v)
|
307
|
-
.map(([k, v]) => +k)
|
306
|
+
.map(([k, v]) => +k)
|
308
307
|
|
309
|
-
const add = now.filter(
|
310
|
-
const del = before.filter(
|
311
|
-
await apis.patch.changeRoleApi(currRole.value, add, del)
|
312
|
-
ElMessage.success('修改成功!')
|
313
|
-
clear()
|
314
|
-
}
|
308
|
+
const add = now.filter(v => !before.includes(v))
|
309
|
+
const del = before.filter(v => !now.includes(v))
|
310
|
+
await apis.patch.changeRoleApi(currRole.value, add, del)
|
311
|
+
ElMessage.success('修改成功!')
|
312
|
+
clear()
|
313
|
+
}
|
315
314
|
|
316
|
-
const isAll = ref(false)
|
315
|
+
const isAll = ref(false)
|
317
316
|
const changeAll = () => {
|
318
317
|
tableData.value.forEach((i) => {
|
319
|
-
checkMap.value[i.id] = isAll.value
|
320
|
-
})
|
321
|
-
}
|
318
|
+
checkMap.value[i.id] = isAll.value
|
319
|
+
})
|
320
|
+
}
|
322
321
|
|
323
322
|
return {
|
324
323
|
showApi,
|
@@ -332,5 +331,5 @@ export const useRoleApi = () => {
|
|
332
331
|
isAll,
|
333
332
|
changeAll,
|
334
333
|
}),
|
335
|
-
}
|
336
|
-
}
|
334
|
+
}
|
335
|
+
}
|