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
package/LICENSE
CHANGED
File without changes
|
package/README.md
CHANGED
File without changes
|
package/dist/index.mjs
CHANGED
File without changes
|
package/package.json
CHANGED
@@ -1,7 +1,23 @@
|
|
1
1
|
{
|
2
2
|
"name": "create-young-proj",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.9.0",
|
4
4
|
"description": "create project from template",
|
5
|
+
"author": "BluesYoung-web",
|
6
|
+
"license": "MIT",
|
7
|
+
"homepage": "https://github.com/BluesYoung-web/create-young-proj/tree/main/packages/create-vite#readme",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "git+https://github.com/BluesYoung-web/create-young-proj.git"
|
11
|
+
},
|
12
|
+
"bugs": {
|
13
|
+
"url": "https://github.com/BluesYoung-web/create-young-proj/issues"
|
14
|
+
},
|
15
|
+
"keywords": [
|
16
|
+
"cli",
|
17
|
+
"project template",
|
18
|
+
"young project",
|
19
|
+
"vue"
|
20
|
+
],
|
5
21
|
"main": "index.mjs",
|
6
22
|
"bin": {
|
7
23
|
"create-young-proj": "index.mjs",
|
@@ -15,38 +31,30 @@
|
|
15
31
|
"engines": {
|
16
32
|
"node": "^14.18.0 || >=16.0.0"
|
17
33
|
},
|
18
|
-
"
|
19
|
-
"
|
20
|
-
"
|
21
|
-
"
|
22
|
-
"
|
23
|
-
|
24
|
-
"repository": {
|
25
|
-
"type": "git",
|
26
|
-
"url": "git+https://github.com/BluesYoung-web/create-young-proj.git"
|
27
|
-
},
|
28
|
-
"bugs": {
|
29
|
-
"url": "https://github.com/BluesYoung-web/create-young-proj/issues"
|
34
|
+
"scripts": {
|
35
|
+
"dev": "jiti ./src/index.ts",
|
36
|
+
"build": "unbuild",
|
37
|
+
"lint": "eslint .",
|
38
|
+
"lint:fix": "eslint . --fix",
|
39
|
+
"postinstall": "simple-git-hooks"
|
30
40
|
},
|
31
|
-
"homepage": "https://github.com/BluesYoung-web/create-young-proj/tree/main/packages/create-vite#readme",
|
32
|
-
"author": "BluesYoung-web",
|
33
|
-
"license": "MIT",
|
34
41
|
"devDependencies": {
|
35
|
-
"
|
36
|
-
"
|
42
|
+
"@antfu/eslint-config": "^0.41.0",
|
43
|
+
"@types/node": "16",
|
37
44
|
"cross-spawn": "^7.0.3",
|
45
|
+
"eslint": "^8.48.0",
|
46
|
+
"jiti": "^1.19.3",
|
38
47
|
"kolorist": "^1.6.0",
|
48
|
+
"lint-staged": "^14.0.1",
|
39
49
|
"minimist": "^1.2.7",
|
40
50
|
"prompts": "^2.4.2",
|
41
|
-
"
|
42
|
-
"unbuild": "^1.0.1"
|
43
|
-
"@types/node": "16"
|
51
|
+
"simple-git-hooks": "^2.9.0",
|
52
|
+
"unbuild": "^1.0.1"
|
44
53
|
},
|
45
|
-
"
|
46
|
-
"
|
47
|
-
|
48
|
-
|
49
|
-
"
|
50
|
-
"push": "pnpm publish --access public"
|
54
|
+
"simple-git-hooks": {
|
55
|
+
"pre-commit": "npx lint-staged"
|
56
|
+
},
|
57
|
+
"lint-staged": {
|
58
|
+
"*": "eslint --fix"
|
51
59
|
}
|
52
|
-
}
|
60
|
+
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"root": true,
|
3
|
+
"extends": "@antfu",
|
4
|
+
"rules": {
|
5
|
+
"@typescript-eslint/no-use-before-define": "off",
|
6
|
+
"no-console": "off",
|
7
|
+
"n/prefer-global/process": "off",
|
8
|
+
"unused-imports/no-unused-vars": "off",
|
9
|
+
"@typescript-eslint/ban-types": "off",
|
10
|
+
"vue/valid-v-model": "off",
|
11
|
+
"@typescript-eslint/ban-ts-comment": "off",
|
12
|
+
"no-throw-literal": "off"
|
13
|
+
}
|
14
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
{
|
2
|
+
"recommendations": [
|
3
|
+
"dbaeumer.vscode-eslint",
|
4
|
+
"editorconfig.editorconfig",
|
5
|
+
"mhutchie.git-graph",
|
6
|
+
"vue.vscode-typescript-vue-plugin",
|
7
|
+
"antfu.unocss",
|
8
|
+
"antfu.vscode-server-controller",
|
9
|
+
"vue.volar",
|
10
|
+
"voorjaar.windicss-intellisense"
|
11
|
+
]
|
12
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"prettier.enable": false,
|
3
|
+
"editor.formatOnSave": false,
|
4
|
+
"editor.codeActionsOnSave": {
|
5
|
+
"source.fixAll.eslint": true,
|
6
|
+
"source.organizeImports": false
|
7
|
+
},
|
8
|
+
|
9
|
+
// The following is optional.
|
10
|
+
// It's better to put under project setting `.vscode/settings.json`
|
11
|
+
// to avoid conflicts with working with different eslint configs
|
12
|
+
// that does not support all formats.
|
13
|
+
"eslint.validate": [
|
14
|
+
"javascript",
|
15
|
+
"javascriptreact",
|
16
|
+
"typescript",
|
17
|
+
"typescriptreact",
|
18
|
+
"vue",
|
19
|
+
"html",
|
20
|
+
"markdown",
|
21
|
+
"json",
|
22
|
+
"jsonc",
|
23
|
+
"yaml"
|
24
|
+
]
|
25
|
+
}
|
File without changes
|
@@ -1,5 +1,33 @@
|
|
1
1
|
# 基于 Nuxt 3 的后台
|
2
2
|
|
3
|
+
[![code style](https://antfu.me/badge-code-style.svg)](https://github.com/antfu/eslint-config)
|
4
|
+
|
5
|
+
## 配套 git 提交工具
|
6
|
+
|
7
|
+
### 安装
|
8
|
+
|
9
|
+
```bash
|
10
|
+
npm i -g young-commit
|
11
|
+
```
|
12
|
+
|
13
|
+
### 使用
|
14
|
+
|
15
|
+
> **依赖 which 命令,Windows 环境请在 git bash 内执行!!!**
|
16
|
+
|
17
|
+
- 正常使用 `git add` 将要提交的文件添加到暂存区
|
18
|
+
|
19
|
+
- 提交步骤使用 `yc` 或者 `young-commit` 进行提交
|
20
|
+
|
21
|
+
#### 命令选项
|
22
|
+
|
23
|
+
- `yc -i` 初始化(仅刚创建项目时使用,会自动执行 `git init`)
|
24
|
+
|
25
|
+
- `yc -r` 进行版本发布,会根据之前的提交及最近一个 `tag` 生成 `changelog`
|
26
|
+
|
27
|
+
## ⚠️ 注意
|
28
|
+
|
29
|
+
接口需要传递数组数据的,需要序列化为逗号拼接的字符串之后再传递!!!
|
30
|
+
|
3
31
|
## 使用响应式布局
|
4
32
|
|
5
33
|
兼容 `PC` 端与移动端
|
@@ -11,7 +39,7 @@
|
|
11
39
|
### 抛出错误
|
12
40
|
|
13
41
|
```ts
|
14
|
-
throw createError({ statusCode: 404, message: '数据迷路了' })
|
42
|
+
throw createError({ statusCode: 404, message: '数据迷路了' })
|
15
43
|
```
|
16
44
|
|
17
45
|
### 响应式屏幕尺寸
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Nuxt dev/build outputs
|
2
|
+
.output
|
3
|
+
.nuxt
|
4
|
+
.nitro
|
5
|
+
.cache
|
6
|
+
dist
|
7
|
+
|
8
|
+
# Node dependencies
|
9
|
+
node_modules
|
10
|
+
|
11
|
+
# Logs
|
12
|
+
logs
|
13
|
+
*.log
|
14
|
+
|
15
|
+
# Misc
|
16
|
+
.DS_Store
|
17
|
+
.fleet
|
18
|
+
.idea
|
19
|
+
|
20
|
+
# Local env files
|
21
|
+
.env
|
22
|
+
.env.*
|
23
|
+
!.env.example
|
@@ -5,22 +5,23 @@
|
|
5
5
|
* @Description:
|
6
6
|
-->
|
7
7
|
<script lang="ts" setup>
|
8
|
-
import { ElConfigProvider } from 'element-plus'
|
9
|
-
// @ts-ignore
|
10
|
-
import locale from 'element-plus/dist/locale/zh-cn.mjs';
|
8
|
+
import { ElConfigProvider } from 'element-plus'
|
11
9
|
|
12
|
-
|
13
|
-
|
10
|
+
// @ts-expect-error
|
11
|
+
import locale from 'element-plus/dist/locale/zh-cn.mjs'
|
12
|
+
|
13
|
+
const app = useNuxtApp()
|
14
|
+
const { isLoading } = storeToRefs(useNavStore())
|
14
15
|
|
15
16
|
app.hook('page:start', () => {
|
16
|
-
console.log('loading...')
|
17
|
-
isLoading.value = true
|
18
|
-
})
|
17
|
+
console.log('loading...')
|
18
|
+
isLoading.value = true
|
19
|
+
})
|
19
20
|
|
20
21
|
app.hook('page:finish', () => {
|
21
|
-
console.log('loading end ...')
|
22
|
-
isLoading.value = false
|
23
|
-
})
|
22
|
+
console.log('loading end ...')
|
23
|
+
isLoading.value = false
|
24
|
+
})
|
24
25
|
</script>
|
25
26
|
|
26
27
|
<template>
|
@@ -38,4 +39,3 @@ app.hook('page:finish', () => {
|
|
38
39
|
@import 'vant/lib/index.css';
|
39
40
|
@import '~/styles/index.scss';
|
40
41
|
</style>
|
41
|
-
|
File without changes
|
@@ -5,14 +5,15 @@
|
|
5
5
|
* @Description:
|
6
6
|
-->
|
7
7
|
<script lang="ts" setup>
|
8
|
-
const { toggle, isFullscreen, isSupported } = useFullscreen()
|
8
|
+
const { toggle, isFullscreen, isSupported } = useFullscreen()
|
9
9
|
|
10
|
-
const title = computed(() => isFullscreen.value ? '退出全屏' : '全屏')
|
10
|
+
const title = computed(() => isFullscreen.value ? '退出全屏' : '全屏')
|
11
11
|
</script>
|
12
12
|
|
13
13
|
<template>
|
14
|
-
<ElButton v-if="isSupported" circle
|
14
|
+
<ElButton v-if="isSupported" circle :title="title" @click="toggle">
|
15
15
|
<div
|
16
|
-
:class="[isFullscreen ? 'i-fluent:full-screen-minimize-24-filled' : 'i-fluent:full-screen-maximize-24-filled']"
|
16
|
+
:class="[isFullscreen ? 'i-fluent:full-screen-minimize-24-filled' : 'i-fluent:full-screen-maximize-24-filled']"
|
17
|
+
/>
|
17
18
|
</ElButton>
|
18
19
|
</template>
|
@@ -5,42 +5,42 @@
|
|
5
5
|
* @Description:
|
6
6
|
-->
|
7
7
|
<script lang="ts" setup>
|
8
|
-
import type { SelectOptionItem } from '@bluesyoung/ui-vue3-element-plus'
|
9
|
-
import { YoungCmdPopup } from '@bluesyoung/ui-vue3'
|
10
|
-
import { isHttpUrl } from '@bluesyoung/utils'
|
8
|
+
import type { SelectOptionItem } from '@bluesyoung/ui-vue3-element-plus'
|
9
|
+
import { YoungCmdPopup } from '@bluesyoung/ui-vue3'
|
10
|
+
import { isHttpUrl } from '@bluesyoung/utils'
|
11
11
|
|
12
|
-
const { flat_nav_arr, nav_arr } = storeToRefs(useNavStore())
|
12
|
+
const { flat_nav_arr, nav_arr } = storeToRefs(useNavStore())
|
13
13
|
|
14
|
-
const cmdRef = ref()
|
15
|
-
const searchStr = ref('')
|
16
|
-
const options = ref<SelectOptionItem<string>[]>([])
|
14
|
+
const cmdRef = ref()
|
15
|
+
const searchStr = ref('')
|
16
|
+
const options = ref<SelectOptionItem<string>[]>([])
|
17
17
|
|
18
|
-
|
18
|
+
function remoteMethod(query: string) {
|
19
19
|
if (query) {
|
20
20
|
options.value = flat_nav_arr.value
|
21
|
-
.filter(
|
22
|
-
.map(
|
23
|
-
} else {
|
24
|
-
options.value = [];
|
21
|
+
.filter(item => +item.visible === 1 && item.title?.toLowerCase().includes(query.toLowerCase()))
|
22
|
+
.map(item => ({ label: item.title || '', value: item.component }))
|
25
23
|
}
|
26
|
-
|
24
|
+
else {
|
25
|
+
options.value = []
|
26
|
+
}
|
27
|
+
}
|
27
28
|
|
28
|
-
|
29
|
+
function goPage(url: string) {
|
29
30
|
if (url) {
|
30
|
-
if (isHttpUrl(url))
|
31
|
-
window.open(url)
|
32
|
-
|
33
|
-
navigateTo(url)
|
34
|
-
}
|
35
|
-
searchStr.value = '';
|
36
|
-
cmdRef.value?.hide();
|
37
|
-
}
|
38
|
-
};
|
31
|
+
if (isHttpUrl(url))
|
32
|
+
window.open(url)
|
33
|
+
else
|
34
|
+
navigateTo(url)
|
39
35
|
|
36
|
+
searchStr.value = ''
|
37
|
+
cmdRef.value?.hide()
|
38
|
+
}
|
39
|
+
}
|
40
40
|
</script>
|
41
41
|
|
42
42
|
<template>
|
43
|
-
<ElButton v-bind="$attrs" circle @click="cmdRef?.show()"
|
43
|
+
<ElButton v-bind="$attrs" circle title="菜单搜索" @click="cmdRef?.show()">
|
44
44
|
<div class="i-ic-baseline-manage-search" />
|
45
45
|
</ElButton>
|
46
46
|
|
@@ -50,16 +50,20 @@ const goPage = (url: string) => {
|
|
50
50
|
<div class="text-xl mb-4">
|
51
51
|
快捷菜单搜索:
|
52
52
|
</div>
|
53
|
-
<ElSelect
|
54
|
-
|
53
|
+
<ElSelect
|
54
|
+
:ref="el" v-model="searchStr" class="w-260px" filterable remote reserve-keyword
|
55
|
+
placeholder="请输入菜单关键字,点击选中即可跳转" :remote-method="remoteMethod" @change="goPage"
|
56
|
+
>
|
55
57
|
<ElOption v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
56
58
|
</ElSelect>
|
57
59
|
|
58
|
-
<br
|
59
|
-
<ElTree
|
60
|
-
|
61
|
-
|
62
|
-
|
60
|
+
<br>
|
61
|
+
<ElTree
|
62
|
+
:data="nav_arr" size="large" :props="{
|
63
|
+
children: 'children',
|
64
|
+
label: 'title',
|
65
|
+
}" accordion class="w-full self-start" @node-click="(n: NavArrItem) => goPage(n.component)"
|
66
|
+
/>
|
63
67
|
</div>
|
64
68
|
</template>
|
65
69
|
</YoungCmdPopup>
|
@@ -5,20 +5,21 @@
|
|
5
5
|
* @Description:
|
6
6
|
-->
|
7
7
|
<script lang="ts" setup>
|
8
|
-
const { avatar, nick, cookie } = storeToRefs(useUserStore())
|
8
|
+
const { avatar, nick, cookie } = storeToRefs(useUserStore())
|
9
9
|
|
10
|
-
|
10
|
+
function loginOut() {
|
11
11
|
showDialog({
|
12
12
|
title: '温馨提示',
|
13
13
|
message: '确认退出登录?',
|
14
|
-
showCancelButton: true
|
14
|
+
showCancelButton: true,
|
15
15
|
}).then(() => {
|
16
|
-
// @ts-
|
17
|
-
cookie.value = undefined
|
18
|
-
navigateTo(`/login?redirect=${encodeURIComponent(location.href.replace(location.origin, ''))}`)
|
19
|
-
}).catch(() => null)
|
20
|
-
}
|
16
|
+
// @ts-expect-error
|
17
|
+
cookie.value = undefined
|
18
|
+
navigateTo(`/login?redirect=${encodeURIComponent(location.href.replace(location.origin, ''))}`)
|
19
|
+
}).catch(() => null)
|
20
|
+
}
|
21
21
|
</script>
|
22
|
+
|
22
23
|
<template>
|
23
24
|
<ElDropdown class="avatar-container" trigger="click">
|
24
25
|
<div class="inline-flex justify-center items-center mx-2 hover:cursor-pointer">
|
@@ -27,7 +28,9 @@ const loginOut = () => {
|
|
27
28
|
<div class="text-xl i-noto-v1-man-technologist-light-skin-tone" />
|
28
29
|
</ElAvatar>
|
29
30
|
|
30
|
-
<div class="text-sm ml-2">
|
31
|
+
<div class="text-sm ml-2">
|
32
|
+
{{ nick }}
|
33
|
+
</div>
|
31
34
|
<div class="mr-2 text-sm i-ion-md-arrow-dropdown" />
|
32
35
|
</div>
|
33
36
|
<template #dropdown>
|