create-young-proj 0.8.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 +34 -23
- 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 +8 -2
- package/template-nuxt-admin/_gitignore +0 -0
- package/template-nuxt-admin/_npmrc +0 -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 +51 -41
- 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 -2
- package/template-nuxt-admin/components/layout/NavBar.vue +12 -9
- package/template-nuxt-admin/components/layout/SideBar.vue +6 -4
- 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 +41 -47
- 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 +27 -27
- package/template-nuxt-admin/nuxt.config.ts +8 -7
- package/template-nuxt-admin/package.json +36 -16
- 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 +70 -52
- package/template-nuxt-admin/pages/system/api.vue +73 -60
- package/template-nuxt-admin/pages/system/hooks/useRole.ts +127 -128
- package/template-nuxt-admin/pages/system/menuList.vue +166 -141
- package/template-nuxt-admin/pages/system/role.vue +62 -34
- package/template-nuxt-admin/pages/system/user.vue +80 -69
- 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 +2969 -1437
- 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 +0 -0
- package/template-uni-app/_env +0 -0
- package/template-uni-app/_env.development +0 -0
- package/template-uni-app/_env.production +0 -0
- package/template-uni-app/_env.test +0 -0
- package/template-uni-app/_gitignore +0 -0
- package/template-uni-app/_npmrc +0 -0
- package/template-uni-app/auto-imports.d.ts +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/lib/index.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/get.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/index.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/post.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/app.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/app.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/app.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/common/assets.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/common/vendor.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxml +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxml +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxml +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/config/enum.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/config/index.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/config/map.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxml +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxml +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml +0 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxml +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxml +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.json +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxml +0 -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 +0 -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 +0 -0
- package/template-uni-app/dist/dev/mp-weixin/store/local/index.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/store/system.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/utils/modal.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/utils/route.js +0 -0
- package/template-uni-app/dist/dev/mp-weixin/utils/system.js +0 -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 +15 -14
- 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 +14 -9
- package/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue +13 -9
- 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 +6 -7
- package/template-uni-app/src/layouts/tabbar.vue +15 -12
- 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 +36 -20
- package/template-uni-app/src/pages/my.vue +7 -5
- package/template-uni-app/src/pages.json +1 -1
- 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 +10 -10
- package/template-uni-app/src/typings/global.d.ts +0 -0
- package/template-uni-app/src/uni.scss +0 -0
- package/template-uni-app/src/utils/auth.ts +93 -84
- 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 +49 -50
- 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 +0 -0
- 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,35 +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": {
|
42
|
+
"@antfu/eslint-config": "^0.41.0",
|
35
43
|
"@types/node": "16",
|
36
44
|
"cross-spawn": "^7.0.3",
|
45
|
+
"eslint": "^8.48.0",
|
46
|
+
"jiti": "^1.19.3",
|
37
47
|
"kolorist": "^1.6.0",
|
48
|
+
"lint-staged": "^14.0.1",
|
38
49
|
"minimist": "^1.2.7",
|
39
50
|
"prompts": "^2.4.2",
|
40
|
-
"
|
51
|
+
"simple-git-hooks": "^2.9.0",
|
41
52
|
"unbuild": "^1.0.1"
|
42
53
|
},
|
43
|
-
"
|
44
|
-
"
|
45
|
-
|
46
|
-
|
47
|
-
"
|
54
|
+
"simple-git-hooks": {
|
55
|
+
"pre-commit": "npx lint-staged"
|
56
|
+
},
|
57
|
+
"lint-staged": {
|
58
|
+
"*": "eslint --fix"
|
48
59
|
}
|
49
|
-
}
|
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,7 @@
|
|
1
1
|
# 基于 Nuxt 3 的后台
|
2
2
|
|
3
|
+
[![code style](https://antfu.me/badge-code-style.svg)](https://github.com/antfu/eslint-config)
|
4
|
+
|
3
5
|
## 配套 git 提交工具
|
4
6
|
|
5
7
|
### 安装
|
@@ -10,6 +12,8 @@ npm i -g young-commit
|
|
10
12
|
|
11
13
|
### 使用
|
12
14
|
|
15
|
+
> **依赖 which 命令,Windows 环境请在 git bash 内执行!!!**
|
16
|
+
|
13
17
|
- 正常使用 `git add` 将要提交的文件添加到暂存区
|
14
18
|
|
15
19
|
- 提交步骤使用 `yc` 或者 `young-commit` 进行提交
|
@@ -20,7 +24,9 @@ npm i -g young-commit
|
|
20
24
|
|
21
25
|
- `yc -r` 进行版本发布,会根据之前的提交及最近一个 `tag` 生成 `changelog`
|
22
26
|
|
23
|
-
|
27
|
+
## ⚠️ 注意
|
28
|
+
|
29
|
+
接口需要传递数组数据的,需要序列化为逗号拼接的字符串之后再传递!!!
|
24
30
|
|
25
31
|
## 使用响应式布局
|
26
32
|
|
@@ -33,7 +39,7 @@ npm i -g young-commit
|
|
33
39
|
### 抛出错误
|
34
40
|
|
35
41
|
```ts
|
36
|
-
throw createError({ statusCode: 404, message: '数据迷路了' })
|
42
|
+
throw createError({ statusCode: 404, message: '数据迷路了' })
|
37
43
|
```
|
38
44
|
|
39
45
|
### 响应式屏幕尺寸
|
File without changes
|
File without changes
|
@@ -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>
|
@@ -5,83 +5,93 @@
|
|
5
5
|
* @Description:
|
6
6
|
-->
|
7
7
|
<script lang="ts" setup>
|
8
|
-
import { isMobile } from '@bluesyoung/utils'
|
9
|
-
import type { FormInstance } from 'element-plus'
|
8
|
+
import { isMobile } from '@bluesyoung/utils'
|
9
|
+
import type { FormInstance } from 'element-plus'
|
10
10
|
|
11
|
-
|
12
|
-
onDestroy?: Function
|
13
|
-
}
|
11
|
+
interface Props {
|
12
|
+
onDestroy?: Function
|
13
|
+
}
|
14
14
|
|
15
15
|
const props = withDefaults(defineProps<Props>(), {
|
16
16
|
onDestroy: () => console.log('为了节省性能,此时应该销毁dom'),
|
17
|
-
})
|
17
|
+
})
|
18
18
|
|
19
|
-
const showPopup = ref(false)
|
19
|
+
const showPopup = ref(false)
|
20
20
|
|
21
|
-
|
22
|
-
showPopup.value = true
|
23
|
-
}
|
21
|
+
function show() {
|
22
|
+
showPopup.value = true
|
23
|
+
}
|
24
24
|
|
25
|
-
|
26
|
-
showPopup.value = false
|
27
|
-
props.onDestroy()
|
28
|
-
}
|
25
|
+
function hide() {
|
26
|
+
showPopup.value = false
|
27
|
+
props.onDestroy()
|
28
|
+
}
|
29
29
|
|
30
30
|
const form = reactive<LoginForm>({
|
31
31
|
mobile: '',
|
32
32
|
vercode: '',
|
33
33
|
password: '',
|
34
|
-
})
|
34
|
+
})
|
35
35
|
|
36
|
-
const { cookie } = storeToRefs(useUserStore())
|
36
|
+
const { cookie } = storeToRefs(useUserStore())
|
37
37
|
|
38
|
-
const formRef = ref<FormInstance>()
|
39
|
-
|
38
|
+
const formRef = ref<FormInstance>()
|
39
|
+
function sure() {
|
40
40
|
formRef.value?.validate(async (valid) => {
|
41
41
|
if (valid) {
|
42
|
-
await apis.post.changePassword(form)
|
43
|
-
hide()
|
42
|
+
await apis.post.changePassword(form)
|
43
|
+
hide()
|
44
44
|
await showDialog({
|
45
|
-
message: '密码修改成功,请重新登录'
|
45
|
+
message: '密码修改成功,请重新登录',
|
46
46
|
})
|
47
|
-
// @ts-
|
48
|
-
cookie.value = undefined
|
49
|
-
const redirect = location.pathname === '/login' ? '/' : encodeURIComponent(location.href.replace(location.origin, ''))
|
50
|
-
navigateTo(`/login?redirect=${redirect}`)
|
47
|
+
// @ts-expect-error
|
48
|
+
cookie.value = undefined
|
49
|
+
const redirect = location.pathname === '/login' ? '/' : encodeURIComponent(location.href.replace(location.origin, ''))
|
50
|
+
navigateTo(`/login?redirect=${redirect}`)
|
51
51
|
}
|
52
|
-
})
|
53
|
-
}
|
52
|
+
})
|
53
|
+
}
|
54
54
|
|
55
55
|
defineExpose({
|
56
|
-
show
|
57
|
-
})
|
56
|
+
show,
|
57
|
+
})
|
58
58
|
</script>
|
59
59
|
|
60
60
|
<template>
|
61
61
|
<ElDialog v-model="showPopup" title="修改密码" :before-close="hide" width="430px" lt-sm="!w-[96%]">
|
62
62
|
<template #default>
|
63
63
|
<ElForm ref="formRef" :model="form">
|
64
|
-
<ElFormItem
|
65
|
-
|
66
|
-
|
67
|
-
|
64
|
+
<ElFormItem
|
65
|
+
prop="mobile" :rules="[
|
66
|
+
{ required: true, trigger: 'blur', message: '请输入手机号' },
|
67
|
+
{ message: '请输入合法的手机号', trigger: 'blur', validator: (_: any, v: string) => isMobile(v) },
|
68
|
+
]" class="mt-20px"
|
69
|
+
>
|
68
70
|
<ElInput v-model.trim="form.mobile" placeholder="请输入手机号" maxlength="11" class="!h-52px" clearable />
|
69
71
|
</ElFormItem>
|
70
72
|
<ElFormItem prop="vercode" :rules="[{ required: true, trigger: 'blur', message: '请输入验证码' }]">
|
71
73
|
<YoungCodeInput v-model.trim="form.vercode" :tel="form.mobile" />
|
72
74
|
</ElFormItem>
|
73
|
-
<ElFormItem
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
75
|
+
<ElFormItem
|
76
|
+
prop="password" :rules="[
|
77
|
+
{ required: true, trigger: 'blur', message: '请输入密码' },
|
78
|
+
{ min: 8, max: 16, trigger: 'blur', message: '请输入8-16位字符!' },
|
79
|
+
]"
|
80
|
+
>
|
81
|
+
<ElInput
|
82
|
+
v-model.trim="form.password" type="password" minlength="8" maxlength="16" placeholder="请输入密码"
|
83
|
+
class="!h-52px" clearable show-password @keyup.enter="sure"
|
84
|
+
/>
|
79
85
|
</ElFormItem>
|
80
86
|
</ElForm>
|
81
87
|
</template>
|
82
88
|
<template #footer>
|
83
|
-
<ElButton @click="hide"
|
84
|
-
|
89
|
+
<ElButton @click="hide">
|
90
|
+
取消
|
91
|
+
</ElButton>
|
92
|
+
<ElButton type="primary" @click="sure">
|
93
|
+
确认
|
94
|
+
</ElButton>
|
85
95
|
</template>
|
86
96
|
</ElDialog>
|
87
97
|
</template>
|