├── .eslintrc.json ├── .gitignore ├── README.md ├── index.js ├── package.json ├── package_copy.json ├── shims-vue.d.ts ├── src ├── commands │ ├── contact │ │ └── index.ts │ └── create │ │ ├── index.ts │ │ ├── project_template │ │ ├── .env.development │ │ ├── .env.production │ │ ├── .eslintrc_js.cjs │ │ ├── .eslintrc_ts.cjs │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── public │ │ │ └── image │ │ │ │ ├── bd.jpg │ │ │ │ └── star-squashed.jpg │ │ ├── src │ │ │ ├── App.scss │ │ │ ├── App.ts │ │ │ ├── App.vue │ │ │ ├── api │ │ │ │ └── user.ts │ │ │ ├── components │ │ │ │ ├── svgIcon │ │ │ │ │ ├── icon.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── index.vue │ │ │ │ └── table │ │ │ │ │ ├── table.ts │ │ │ │ │ └── table.vue │ │ │ ├── config │ │ │ │ └── white-list.ts │ │ │ ├── hooks │ │ │ │ ├── useI18.ts │ │ │ │ ├── userEcharts.ts │ │ │ │ └── userVModel.ts │ │ │ ├── icons │ │ │ │ └── svg │ │ │ │ │ ├── 404.svg │ │ │ │ │ ├── MagicStick.svg │ │ │ │ │ ├── a-businesscard.svg │ │ │ │ │ ├── a-chartqushitiaoyantongji.svg │ │ │ │ │ ├── account.svg │ │ │ │ │ ├── duoyuyan.svg │ │ │ │ │ ├── full-screen.svg │ │ │ │ │ ├── fullscreen-exit.svg │ │ │ │ │ ├── graph.svg │ │ │ │ │ ├── jiazai.svg │ │ │ │ │ ├── login-bg.svg │ │ │ │ │ ├── mima.svg │ │ │ │ │ └── money.svg │ │ │ ├── lang │ │ │ │ ├── en.json │ │ │ │ ├── lang.ts │ │ │ │ └── zh-CN.json │ │ │ ├── layouts │ │ │ │ ├── components │ │ │ │ │ ├── aside │ │ │ │ │ │ ├── index.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── menu-item.scss │ │ │ │ │ │ ├── menu-item.ts │ │ │ │ │ │ ├── menu-item.vue │ │ │ │ │ │ ├── menu.scss │ │ │ │ │ │ ├── menu.ts │ │ │ │ │ │ ├── menu.vue │ │ │ │ │ │ ├── subMenu.scss │ │ │ │ │ │ ├── subMenu.ts │ │ │ │ │ │ └── subMenu.vue │ │ │ │ │ ├── head │ │ │ │ │ │ ├── index.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── tab-bar.scss │ │ │ │ │ │ ├── tab-bar.ts │ │ │ │ │ │ └── tab-bar.vue │ │ │ │ │ └── main │ │ │ │ │ │ └── index.vue │ │ │ │ ├── hooks │ │ │ │ │ ├── useLang.ts │ │ │ │ │ ├── useScreen.ts │ │ │ │ │ └── useTheme.ts │ │ │ │ ├── index.scss │ │ │ │ ├── index.ts │ │ │ │ ├── index.vue │ │ │ │ ├── lay.scss │ │ │ │ ├── lay.ts │ │ │ │ ├── lay.vue │ │ │ │ ├── leftModel.scss │ │ │ │ ├── leftModel.ts │ │ │ │ └── leftModel.vue │ │ │ ├── router │ │ │ │ ├── index.ts │ │ │ │ └── protector.ts │ │ │ ├── store │ │ │ │ ├── index.ts │ │ │ │ └── modules │ │ │ │ │ ├── system.ts │ │ │ │ │ └── user.ts │ │ │ ├── style.css │ │ │ ├── styles │ │ │ │ ├── dark.css │ │ │ │ ├── darkBlue.css │ │ │ │ ├── florid.css │ │ │ │ ├── index.scss │ │ │ │ ├── light.css │ │ │ │ └── normal.css │ │ │ ├── utils │ │ │ │ ├── index.ts │ │ │ │ ├── request.ts │ │ │ │ └── three │ │ │ │ │ ├── ModelThree.ts │ │ │ │ │ ├── SpriteThree.ts │ │ │ │ │ ├── Three.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── indexdb │ │ │ │ │ └── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils │ │ │ │ │ └── index.ts │ │ │ └── views │ │ │ │ ├── error │ │ │ │ ├── 404.scss │ │ │ │ ├── 404.ts │ │ │ │ └── 404.vue │ │ │ │ ├── option_1 │ │ │ │ ├── a.scss │ │ │ │ ├── a.ts │ │ │ │ ├── a.vue │ │ │ │ ├── b.scss │ │ │ │ ├── b.ts │ │ │ │ ├── b.vue │ │ │ │ ├── c.scss │ │ │ │ ├── c.ts │ │ │ │ └── c.vue │ │ │ │ ├── resident │ │ │ │ ├── home │ │ │ │ │ ├── home.scss │ │ │ │ │ ├── home.ts │ │ │ │ │ └── home.vue │ │ │ │ └── login │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── sign-in.ts │ │ │ │ │ └── sign-in.vue │ │ │ │ ├── system │ │ │ │ ├── router │ │ │ │ │ └── router.vue │ │ │ │ └── user │ │ │ │ │ ├── editUser.ts │ │ │ │ │ ├── editUser.vue │ │ │ │ │ ├── user.ts │ │ │ │ │ └── user.vue │ │ │ │ └── three │ │ │ │ ├── three.ts │ │ │ │ └── three.vue │ │ ├── tsconfig.json │ │ └── tsconfig.node.json │ │ └── utils │ │ ├── convertVue.ts │ │ ├── index.ts │ │ ├── main.ts │ │ ├── packageConfig.ts │ │ ├── uiReflection.ts │ │ └── viteConfig.ts ├── const │ └── index.ts ├── helpers │ ├── log.ts │ └── spinner.ts ├── index.ts └── utils │ └── index.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/package.json -------------------------------------------------------------------------------- /package_copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/package_copy.json -------------------------------------------------------------------------------- /shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/shims-vue.d.ts -------------------------------------------------------------------------------- /src/commands/contact/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/contact/index.ts -------------------------------------------------------------------------------- /src/commands/create/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/.env.development -------------------------------------------------------------------------------- /src/commands/create/project_template/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/.env.production -------------------------------------------------------------------------------- /src/commands/create/project_template/.eslintrc_js.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/.eslintrc_js.cjs -------------------------------------------------------------------------------- /src/commands/create/project_template/.eslintrc_ts.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/.eslintrc_ts.cjs -------------------------------------------------------------------------------- /src/commands/create/project_template/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /src/commands/create/project_template/.prettierrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/commands/create/project_template/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/env.d.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/index.html -------------------------------------------------------------------------------- /src/commands/create/project_template/public/image/bd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/public/image/bd.jpg -------------------------------------------------------------------------------- /src/commands/create/project_template/public/image/star-squashed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/public/image/star-squashed.jpg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/App.scss: -------------------------------------------------------------------------------- 1 | //#end; 2 | return { 3 | } 4 | -------------------------------------------------------------------------------- /src/commands/create/project_template/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/App.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/App.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/api/user.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/components/svgIcon/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/components/svgIcon/icon.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/components/svgIcon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/components/svgIcon/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/components/svgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/components/svgIcon/index.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/components/table/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/components/table/table.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/components/table/table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/components/table/table.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/config/white-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/config/white-list.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/hooks/useI18.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/hooks/useI18.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/hooks/userEcharts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/hooks/userEcharts.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/hooks/userVModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/hooks/userVModel.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/404.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/MagicStick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/MagicStick.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/a-businesscard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/a-businesscard.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/a-chartqushitiaoyantongji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/a-chartqushitiaoyantongji.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/account.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/duoyuyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/duoyuyan.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/full-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/full-screen.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/fullscreen-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/fullscreen-exit.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/graph.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/jiazai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/jiazai.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/login-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/login-bg.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/mima.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/mima.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/icons/svg/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/icons/svg/money.svg -------------------------------------------------------------------------------- /src/commands/create/project_template/src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/lang/en.json -------------------------------------------------------------------------------- /src/commands/create/project_template/src/lang/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/lang/lang.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/lang/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/lang/zh-CN.json -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/index.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/index.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/menu-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/menu-item.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/menu-item.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/menu-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/menu-item.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/menu.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/menu.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/menu.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/subMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/subMenu.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/subMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/subMenu.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/aside/subMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/aside/subMenu.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/head/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/head/index.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/head/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/head/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/head/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/head/index.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/head/tab-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/head/tab-bar.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/head/tab-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/head/tab-bar.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/head/tab-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/head/tab-bar.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/components/main/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/components/main/index.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/hooks/useLang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/hooks/useLang.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/hooks/useScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/hooks/useScreen.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/hooks/useTheme.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/index.scss: -------------------------------------------------------------------------------- 1 | //#end; 2 | return { 3 | } 4 | -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/index.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/lay.scss: -------------------------------------------------------------------------------- 1 | //#end; 2 | return { 3 | } 4 | -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/lay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/lay.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/lay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/lay.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/leftModel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/leftModel.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/leftModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/leftModel.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/layouts/leftModel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/layouts/leftModel.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/router/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/router/protector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/router/protector.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/store/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/store/modules/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/store/modules/system.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/store/modules/user.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/style.css -------------------------------------------------------------------------------- /src/commands/create/project_template/src/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/styles/dark.css -------------------------------------------------------------------------------- /src/commands/create/project_template/src/styles/darkBlue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/styles/darkBlue.css -------------------------------------------------------------------------------- /src/commands/create/project_template/src/styles/florid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/styles/florid.css -------------------------------------------------------------------------------- /src/commands/create/project_template/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/styles/index.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/styles/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/styles/light.css -------------------------------------------------------------------------------- /src/commands/create/project_template/src/styles/normal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/styles/normal.css -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/request.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/three/ModelThree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/three/ModelThree.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/three/SpriteThree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/three/SpriteThree.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/three/Three.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/three/Three.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/three/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/three/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/three/indexdb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/three/indexdb/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/three/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/three/interface/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/utils/three/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/utils/three/utils/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/error/404.scss: -------------------------------------------------------------------------------- 1 | //#end; 2 | return { 3 | } 4 | -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/error/404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/error/404.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/error/404.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/a.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/option_1/a.scss -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/option_1/a.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/a.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/option_1/a.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/b.scss: -------------------------------------------------------------------------------- 1 | //#end; 2 | return { 3 | } 4 | -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/option_1/b.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/b.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/option_1/b.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/c.scss: -------------------------------------------------------------------------------- 1 | //#end; 2 | return { 3 | } 4 | -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/option_1/c.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/option_1/c.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/option_1/c.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/resident/home/home.scss: -------------------------------------------------------------------------------- 1 | //#end; 2 | return { 3 | } 4 | -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/resident/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/resident/home/home.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/resident/home/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/resident/home/home.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/resident/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/resident/login/index.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/resident/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/resident/login/index.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/resident/login/sign-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/resident/login/sign-in.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/resident/login/sign-in.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/resident/login/sign-in.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/system/router/router.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/system/router/router.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/system/user/editUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/system/user/editUser.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/system/user/editUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/system/user/editUser.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/system/user/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/system/user/user.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/system/user/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/system/user/user.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/three/three.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/three/three.ts -------------------------------------------------------------------------------- /src/commands/create/project_template/src/views/three/three.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/src/views/three/three.vue -------------------------------------------------------------------------------- /src/commands/create/project_template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/tsconfig.json -------------------------------------------------------------------------------- /src/commands/create/project_template/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/project_template/tsconfig.node.json -------------------------------------------------------------------------------- /src/commands/create/utils/convertVue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/utils/convertVue.ts -------------------------------------------------------------------------------- /src/commands/create/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/utils/index.ts -------------------------------------------------------------------------------- /src/commands/create/utils/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/utils/main.ts -------------------------------------------------------------------------------- /src/commands/create/utils/packageConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/utils/packageConfig.ts -------------------------------------------------------------------------------- /src/commands/create/utils/uiReflection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/utils/uiReflection.ts -------------------------------------------------------------------------------- /src/commands/create/utils/viteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/commands/create/utils/viteConfig.ts -------------------------------------------------------------------------------- /src/const/index.ts: -------------------------------------------------------------------------------- 1 | export const version = "1.0.12"; 2 | -------------------------------------------------------------------------------- /src/helpers/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/helpers/log.ts -------------------------------------------------------------------------------- /src/helpers/spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/helpers/spinner.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhpCode/bd-admin/HEAD/tsconfig.json --------------------------------------------------------------------------------