create-young-proj 0.12.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +31 -22
- package/dist/index.mjs +34 -34
- package/package.json +12 -11
- package/template-nuxt-admin/README.md +23 -16
- package/template-nuxt-website/README.md +117 -0
- package/template-uni-app/README.md +5 -0
- package/template-admin-server/.editorconfig +0 -11
- package/template-admin-server/.nvmrc +0 -1
- package/template-admin-server/.vscode/extensions.json +0 -6
- package/template-admin-server/.vscode/settings.json +0 -4
- package/template-admin-server/_gitignore +0 -15
- package/template-admin-server/boot.mjs +0 -11
- package/template-admin-server/package.json +0 -60
- package/template-admin-server/rome.json +0 -22
- package/template-admin-server/src/config/config.default.ts +0 -56
- package/template-admin-server/src/configuration.ts +0 -47
- package/template-admin-server/src/controller/admin.controller.ts +0 -397
- package/template-admin-server/src/controller/api.controller.ts +0 -98
- package/template-admin-server/src/controller/base.controller.ts +0 -70
- package/template-admin-server/src/controller/dto/api.ts +0 -47
- package/template-admin-server/src/controller/dto/index.ts +0 -36
- package/template-admin-server/src/controller/dto/menu.ts +0 -41
- package/template-admin-server/src/controller/dto/role.ts +0 -41
- package/template-admin-server/src/controller/dto/user.ts +0 -52
- package/template-admin-server/src/controller/menu.controller.ts +0 -138
- package/template-admin-server/src/controller/role.controller.ts +0 -116
- package/template-admin-server/src/controller/user.controller.ts +0 -108
- package/template-admin-server/src/entities/Api.ts +0 -29
- package/template-admin-server/src/entities/BaseCreate.ts +0 -30
- package/template-admin-server/src/entities/Menu.ts +0 -39
- package/template-admin-server/src/entities/Role.ts +0 -36
- package/template-admin-server/src/entities/User.ts +0 -35
- package/template-admin-server/src/entities/index.ts +0 -10
- package/template-admin-server/src/filter/default.filter.ts +0 -22
- package/template-admin-server/src/filter/notfound.filter.ts +0 -23
- package/template-admin-server/src/middleware/helper.middleware.ts +0 -28
- package/template-admin-server/src/middleware/index.ts +0 -9
- package/template-admin-server/src/middleware/jwt.middleware.ts +0 -32
- package/template-admin-server/src/middleware/report.middleware.ts +0 -26
- package/template-admin-server/src/service/api.service.ts +0 -174
- package/template-admin-server/src/service/basic.ts +0 -118
- package/template-admin-server/src/service/index.ts +0 -10
- package/template-admin-server/src/service/menu.service.ts +0 -139
- package/template-admin-server/src/service/role.service.ts +0 -286
- package/template-admin-server/src/service/user.service.ts +0 -124
- package/template-admin-server/src/strategy/jwt.strategy.ts +0 -26
- package/template-admin-server/src/types/index.ts +0 -42
- package/template-admin-server/src/types/types.d.ts +0 -31
- package/template-admin-server/tsconfig.json +0 -24
- package/template-nuxt-admin/.eslintrc +0 -14
- package/template-nuxt-admin/.vscode/extensions.json +0 -12
- package/template-nuxt-admin/.vscode/settings.json +0 -25
- package/template-nuxt-admin/Dockerfile +0 -41
- package/template-nuxt-admin/_gitignore +0 -23
- package/template-nuxt-admin/_npmrc +0 -2
- package/template-nuxt-admin/app.vue +0 -41
- package/template-nuxt-admin/boot.mjs +0 -16
- package/template-nuxt-admin/components/ScreenFull.vue +0 -19
- package/template-nuxt-admin/components/TopSearch.vue +0 -77
- package/template-nuxt-admin/components/TopUser.vue +0 -72
- package/template-nuxt-admin/components/YoungChangePassword.vue +0 -97
- package/template-nuxt-admin/components/YoungCodeInput.vue +0 -66
- package/template-nuxt-admin/components/YoungLink.vue +0 -24
- package/template-nuxt-admin/components/YoungLoading.vue +0 -39
- package/template-nuxt-admin/components/layout/Footer.vue +0 -29
- package/template-nuxt-admin/components/layout/Logo.vue +0 -54
- package/template-nuxt-admin/components/layout/Main.vue +0 -26
- package/template-nuxt-admin/components/layout/NavBar.vue +0 -89
- package/template-nuxt-admin/components/layout/SideBar.vue +0 -96
- package/template-nuxt-admin/components/layout/SubMenu.vue +0 -52
- package/template-nuxt-admin/components/layout/TabsBar.vue +0 -184
- package/template-nuxt-admin/composables/api.ts +0 -105
- package/template-nuxt-admin/composables/apis/delete.ts +0 -37
- package/template-nuxt-admin/composables/apis/get.ts +0 -83
- package/template-nuxt-admin/composables/apis/index.ts +0 -10
- package/template-nuxt-admin/composables/apis/patch.ts +0 -74
- package/template-nuxt-admin/composables/apis/post.ts +0 -85
- package/template-nuxt-admin/composables/config.ts +0 -13
- package/template-nuxt-admin/composables/icon.ts +0 -27
- package/template-nuxt-admin/composables/nav.ts +0 -75
- package/template-nuxt-admin/composables/tags.ts +0 -136
- package/template-nuxt-admin/composables/user.ts +0 -46
- package/template-nuxt-admin/config/.devrc +0 -1
- package/template-nuxt-admin/config/.onlinerc +0 -1
- package/template-nuxt-admin/config/.testrc +0 -1
- package/template-nuxt-admin/env.d.ts +0 -47
- package/template-nuxt-admin/error.vue +0 -61
- package/template-nuxt-admin/layouts/blank.vue +0 -9
- package/template-nuxt-admin/layouts/default.vue +0 -125
- package/template-nuxt-admin/middleware/auth.global.ts +0 -69
- package/template-nuxt-admin/nuxt.config.ts +0 -106
- package/template-nuxt-admin/package.json +0 -64
- package/template-nuxt-admin/pages/home/[id].vue +0 -28
- package/template-nuxt-admin/pages/index.vue +0 -15
- package/template-nuxt-admin/pages/login.vue +0 -199
- package/template-nuxt-admin/pages/system/api.vue +0 -179
- package/template-nuxt-admin/pages/system/hooks/useRole.ts +0 -335
- package/template-nuxt-admin/pages/system/menuList.vue +0 -353
- package/template-nuxt-admin/pages/system/role.vue +0 -145
- package/template-nuxt-admin/pages/system/user.vue +0 -225
- package/template-nuxt-admin/plugins/directive.ts +0 -26
- package/template-nuxt-admin/public/bg.webp +0 -0
- package/template-nuxt-admin/public/default_avatar.svg +0 -1
- package/template-nuxt-admin/public/favicon.svg +0 -2
- package/template-nuxt-admin/public/image_placeholder.svg +0 -15
- package/template-nuxt-admin/public/logo.svg +0 -2
- package/template-nuxt-admin/public/tabbar_bg.png +0 -0
- package/template-nuxt-admin/server/api/[...all].ts +0 -10
- package/template-nuxt-admin/server/plugins/env.ts +0 -87
- package/template-nuxt-admin/server/routes/get/env.ts +0 -13
- package/template-nuxt-admin/server/tsconfig.json +0 -3
- package/template-nuxt-admin/server/utils/index.ts +0 -36
- package/template-nuxt-admin/styles/element.scss +0 -30
- package/template-nuxt-admin/styles/index.scss +0 -59
- package/template-nuxt-admin/styles/variable.scss +0 -103
- package/template-nuxt-admin/tsconfig.json +0 -7
- package/template-nuxt-admin/typings/global.d.ts +0 -16
- package/template-nuxt-admin/typings/system.d.ts +0 -66
- package/template-nuxt-admin/typings/user.d.ts +0 -19
- package/template-nuxt-admin/uno.config.ts +0 -40
- package/template-nuxt-admin/utils/tool.ts +0 -199
- package/template-nuxt-admin/yarn.lock +0 -8635
- package/template-uni-app/.eslintignore +0 -1
- package/template-uni-app/.eslintrc +0 -16
- package/template-uni-app/.vscode/.server-controller-port.log +0 -5
- package/template-uni-app/.vscode/css.code-snippets +0 -398
- package/template-uni-app/.vscode/extensions.json +0 -12
- package/template-uni-app/.vscode/js.code-snippets +0 -1669
- package/template-uni-app/.vscode/settings.json +0 -25
- package/template-uni-app/.vscode/vue-html.code-snippets +0 -682
- package/template-uni-app/_env +0 -3
- package/template-uni-app/_env.development +0 -11
- package/template-uni-app/_env.production +0 -8
- package/template-uni-app/_env.test +0 -11
- package/template-uni-app/_gitignore +0 -3
- package/template-uni-app/_npmrc +0 -2
- package/template-uni-app/auto-imports.d.ts +0 -410
- package/template-uni-app/components.d.ts +0 -17
- package/template-uni-app/custom-plugins/index.ts +0 -8
- package/template-uni-app/custom-plugins/multiconf.ts +0 -74
- package/template-uni-app/custom-plugins/polyfill.ts +0 -32
- package/template-uni-app/dist/dev/mp-weixin/apis/index.js +0 -44
- package/template-uni-app/dist/dev/mp-weixin/apis/lib/index.js +0 -90
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/get.js +0 -10
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/index.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/post.js +0 -15
- package/template-uni-app/dist/dev/mp-weixin/app.js +0 -93
- package/template-uni-app/dist/dev/mp-weixin/app.json +0 -51
- package/template-uni-app/dist/dev/mp-weixin/app.wxss +0 -2378
- package/template-uni-app/dist/dev/mp-weixin/common/assets.js +0 -13
- package/template-uni-app/dist/dev/mp-weixin/common/vendor.js +0 -10189
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.js +0 -22
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxml +0 -1
- 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 -22
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml +0 -1
- 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 -82
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxss +0 -108
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.js +0 -56
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxss +0 -88
- package/template-uni-app/dist/dev/mp-weixin/config/enum.js +0 -21
- package/template-uni-app/dist/dev/mp-weixin/config/index.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/config/map.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.js +0 -30
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.json +0 -6
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxml +0 -1
- 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 -56
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.json +0 -9
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxml +0 -1
- 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 -98
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss +0 -125
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.js +0 -38
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.json +0 -5
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxml +0 -1
- 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 -51
- package/template-uni-app/dist/dev/mp-weixin/pages/index.json +0 -5
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxml +0 -1
- 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 -22
- package/template-uni-app/dist/dev/mp-weixin/pages/my.json +0 -3
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxml +0 -1
- 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 -56
- 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 -8
- package/template-uni-app/dist/dev/mp-weixin/store/local/index.js +0 -11
- package/template-uni-app/dist/dev/mp-weixin/store/system.js +0 -14
- package/template-uni-app/dist/dev/mp-weixin/utils/modal.js +0 -82
- package/template-uni-app/dist/dev/mp-weixin/utils/route.js +0 -85
- package/template-uni-app/dist/dev/mp-weixin/utils/system.js +0 -27
- package/template-uni-app/index.html +0 -23
- package/template-uni-app/manifest.config.ts +0 -88
- package/template-uni-app/package.json +0 -109
- package/template-uni-app/pages.config.ts +0 -58
- package/template-uni-app/pnpm-lock.yaml +0 -9918
- package/template-uni-app/src/App.vue +0 -79
- package/template-uni-app/src/apis/index.ts +0 -54
- package/template-uni-app/src/apis/lib/index.ts +0 -235
- package/template-uni-app/src/apis/requests/get.ts +0 -52
- package/template-uni-app/src/apis/requests/index.ts +0 -8
- package/template-uni-app/src/apis/requests/post.ts +0 -23
- package/template-uni-app/src/components/young-loading/young-loading.vue +0 -36
- package/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue +0 -35
- package/template-uni-app/src/components/young-navbar/young-navbar.vue +0 -252
- package/template-uni-app/src/components/young-tabbar/young-tabbar.vue +0 -145
- package/template-uni-app/src/config/enum.ts +0 -47
- package/template-uni-app/src/config/index.ts +0 -8
- package/template-uni-app/src/config/map.ts +0 -15
- package/template-uni-app/src/env.d.ts +0 -36
- package/template-uni-app/src/layouts/default.vue +0 -22
- package/template-uni-app/src/layouts/tabbar.vue +0 -38
- package/template-uni-app/src/main.ts +0 -20
- package/template-uni-app/src/manifest.json +0 -75
- package/template-uni-app/src/pages/demo/index.vue +0 -30
- package/template-uni-app/src/pages/index.vue +0 -65
- package/template-uni-app/src/pages/my.vue +0 -30
- package/template-uni-app/src/pages.json +0 -74
- 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 +0 -16
- package/template-uni-app/src/store/local/index.ts +0 -42
- package/template-uni-app/src/store/system.ts +0 -21
- package/template-uni-app/src/typings/global.d.ts +0 -7
- package/template-uni-app/src/uni.scss +0 -76
- package/template-uni-app/src/utils/auth.ts +0 -204
- package/template-uni-app/src/utils/index.ts +0 -11
- package/template-uni-app/src/utils/map.ts +0 -98
- package/template-uni-app/src/utils/modal.ts +0 -120
- package/template-uni-app/src/utils/route.ts +0 -151
- package/template-uni-app/src/utils/system.ts +0 -67
- package/template-uni-app/tsconfig.json +0 -16
- package/template-uni-app/unocss.config.ts +0 -30
- package/template-uni-app/vite.config.ts +0 -64
- package/template-uni-app/volar.config.js +0 -6
- package/template-vue-mobile/.vscode/base.code-snippets +0 -24
- package/template-vue-mobile/.vscode/extensions.json +0 -10
- package/template-vue-mobile/.vscode/settings.json +0 -7
- package/template-vue-mobile/Dockerfile +0 -42
- package/template-vue-mobile/_env +0 -6
- package/template-vue-mobile/_gitignore +0 -30
- package/template-vue-mobile/boot.mjs +0 -16
- package/template-vue-mobile/build/custom-plugin.ts +0 -30
- package/template-vue-mobile/build/index.ts +0 -7
- package/template-vue-mobile/build/plugins.ts +0 -68
- package/template-vue-mobile/config/.devrc +0 -2
- package/template-vue-mobile/config/.onlinerc +0 -1
- package/template-vue-mobile/config/.testrc +0 -1
- package/template-vue-mobile/index.html +0 -25
- package/template-vue-mobile/nitro.config.ts +0 -19
- package/template-vue-mobile/package.json +0 -48
- package/template-vue-mobile/plugins/env.ts +0 -26
- package/template-vue-mobile/public/vite.svg +0 -1
- package/template-vue-mobile/rome.json +0 -24
- package/template-vue-mobile/routes/[...all].ts +0 -11
- package/template-vue-mobile/routes/get/env.ts +0 -25
- package/template-vue-mobile/src/App.vue +0 -29
- package/template-vue-mobile/src/auto-components.d.ts +0 -24
- package/template-vue-mobile/src/auto-imports.d.ts +0 -289
- package/template-vue-mobile/src/components/Init.vue +0 -36
- package/template-vue-mobile/src/global.d.ts +0 -7
- package/template-vue-mobile/src/hooks/useVerifyCode.ts +0 -46
- package/template-vue-mobile/src/layouts/blank.vue +0 -9
- package/template-vue-mobile/src/layouts/default.vue +0 -27
- package/template-vue-mobile/src/layouts/sub.vue +0 -20
- package/template-vue-mobile/src/main.ts +0 -35
- package/template-vue-mobile/src/modules/1-router.ts +0 -40
- package/template-vue-mobile/src/modules/2-pinia.ts +0 -10
- package/template-vue-mobile/src/modules/3-net.ts +0 -46
- package/template-vue-mobile/src/modules/4-auth.ts +0 -64
- package/template-vue-mobile/src/views/[...all_404].vue +0 -557
- package/template-vue-mobile/src/views/base/login.vue +0 -110
- package/template-vue-mobile/src/views/base/resetPasswd.vue +0 -88
- package/template-vue-mobile/src/views/index.vue +0 -18
- package/template-vue-mobile/src/views/my.vue +0 -15
- package/template-vue-mobile/src/views/sub.vue +0 -18
- package/template-vue-mobile/src/vite-env.d.ts +0 -43
- package/template-vue-mobile/tsconfig.json +0 -21
- package/template-vue-mobile/tsconfig.node.json +0 -9
- package/template-vue-mobile/unocss.config.ts +0 -47
- package/template-vue-mobile/vite.config.ts +0 -32
- package/template-vue-mobile/yarn.lock +0 -4395
- package/template-vue-thin/.vscode/extensions.json +0 -10
- package/template-vue-thin/.vscode/settings.json +0 -4
- package/template-vue-thin/_env +0 -1
- package/template-vue-thin/_gitignore +0 -29
- package/template-vue-thin/index.html +0 -21
- package/template-vue-thin/package.json +0 -40
- package/template-vue-thin/public/vite.svg +0 -1
- package/template-vue-thin/src/App.vue +0 -9
- package/template-vue-thin/src/layouts/blank.vue +0 -9
- package/template-vue-thin/src/layouts/default.vue +0 -12
- package/template-vue-thin/src/layouts/list.vue +0 -12
- package/template-vue-thin/src/main.ts +0 -58
- package/template-vue-thin/src/views/[...all_404].vue +0 -488
- package/template-vue-thin/src/views/index.vue +0 -19
- package/template-vue-thin/src/views/list.vue +0 -17
- package/template-vue-thin/src/vite-env.d.ts +0 -22
- package/template-vue-thin/tsconfig.json +0 -21
- package/template-vue-thin/tsconfig.node.json +0 -9
- package/template-vue-thin/unocss.config.ts +0 -47
- package/template-vue-thin/vite.config.ts +0 -64
@@ -1,96 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-21 12:25:23
|
4
|
-
* @LastEditTime: 2023-09-15 15:25:15
|
5
|
-
* @Description:
|
6
|
-
-->
|
7
|
-
<script lang="ts" setup>
|
8
|
-
const { isCollapse, nav_arr, nav_index_map } = storeToRefs(useNavStore())
|
9
|
-
|
10
|
-
const route = useRoute()
|
11
|
-
const active = computed(() => nav_index_map.value.get(route.path))
|
12
|
-
</script>
|
13
|
-
|
14
|
-
<template>
|
15
|
-
<div class="layout-sidebar-container" :class="{ 'is-collapse': isCollapse }">
|
16
|
-
<LayoutLogo />
|
17
|
-
|
18
|
-
<ElScrollbar>
|
19
|
-
<ElMenu
|
20
|
-
:default-active="active"
|
21
|
-
background-color="#001529" text-color="hsla(0,0%,100%,.65)" active-text-color="#fff" unique-opened
|
22
|
-
:collapse="isCollapse || WindowSize['lt-lg']" menu-trigger="click" :collapse-transition="false"
|
23
|
-
>
|
24
|
-
<LayoutSubMenu :menu-list="nav_arr" />
|
25
|
-
</ElMenu>
|
26
|
-
</ElScrollbar>
|
27
|
-
</div>
|
28
|
-
</template>
|
29
|
-
|
30
|
-
<style scoped lang="scss">
|
31
|
-
@mixin active {
|
32
|
-
&:hover {
|
33
|
-
color: $base-color-white;
|
34
|
-
}
|
35
|
-
|
36
|
-
&.is-active {
|
37
|
-
color: $base-color-white;
|
38
|
-
background-color: var(--el-color-primary) !important;
|
39
|
-
}
|
40
|
-
}
|
41
|
-
|
42
|
-
.layout-sidebar-container {
|
43
|
-
position: fixed;
|
44
|
-
top: 0;
|
45
|
-
bottom: 0;
|
46
|
-
left: 0;
|
47
|
-
z-index: $base-z-index;
|
48
|
-
width: $base-left-menu-width;
|
49
|
-
height: 100vh;
|
50
|
-
background: $base-menu-background;
|
51
|
-
box-shadow: 2px 0 6px rgb(0 21 41 / 35%);
|
52
|
-
transition: width $base-transition-time;
|
53
|
-
|
54
|
-
@screen lt-lg {
|
55
|
-
& {
|
56
|
-
@apply hidden;
|
57
|
-
// @apply block;
|
58
|
-
// width: $base-left-menu-width-min;
|
59
|
-
}
|
60
|
-
}
|
61
|
-
|
62
|
-
&.is-collapse {
|
63
|
-
width: $base-left-menu-width-min;
|
64
|
-
border-right: 0;
|
65
|
-
|
66
|
-
// @screen lt-lg {
|
67
|
-
// & {
|
68
|
-
// @apply hidden;
|
69
|
-
// }
|
70
|
-
// }
|
71
|
-
}
|
72
|
-
|
73
|
-
:deep(.el-scrollbar__wrap) {
|
74
|
-
overflow-x: hidden;
|
75
|
-
height: calc(100vh - $base-nav-bar-height);
|
76
|
-
|
77
|
-
.el-menu {
|
78
|
-
border: 0;
|
79
|
-
}
|
80
|
-
|
81
|
-
.el-menu-item,
|
82
|
-
.el-submenu__title {
|
83
|
-
height: $base-menu-item-height;
|
84
|
-
overflow: hidden;
|
85
|
-
line-height: $base-menu-item-height;
|
86
|
-
text-overflow: ellipsis;
|
87
|
-
white-space: nowrap;
|
88
|
-
vertical-align: middle;
|
89
|
-
}
|
90
|
-
|
91
|
-
.el-menu-item {
|
92
|
-
@include active;
|
93
|
-
}
|
94
|
-
}
|
95
|
-
}
|
96
|
-
</style>
|
@@ -1,52 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-21 14:06:48
|
4
|
-
* @LastEditTime: 2023-09-15 15:24:33
|
5
|
-
* @Description:
|
6
|
-
-->
|
7
|
-
<script lang="ts" setup>
|
8
|
-
import { randomId } from '@bluesyoung/utils'
|
9
|
-
|
10
|
-
const props = withDefaults(defineProps<{
|
11
|
-
menuList?: NavArrItem[]
|
12
|
-
}>(), {
|
13
|
-
menuList: () => [],
|
14
|
-
})
|
15
|
-
|
16
|
-
const randomKey = randomId()
|
17
|
-
const visibleMenu = computed(() => props.menuList.filter(n => +n.visible === 1))
|
18
|
-
const { isCollapse, nav_index_map } = storeToRefs(useNavStore())
|
19
|
-
|
20
|
-
watch(() => visibleMenu.value, (v) => {
|
21
|
-
v.forEach((n, i) => {
|
22
|
-
nav_index_map.value.set(n.component, (n.component + randomKey + i))
|
23
|
-
})
|
24
|
-
}, { immediate: true, deep: true })
|
25
|
-
|
26
|
-
function collapseMenu() {
|
27
|
-
if (WindowSize['lt-lg'])
|
28
|
-
isCollapse.value = true
|
29
|
-
}
|
30
|
-
</script>
|
31
|
-
|
32
|
-
<template>
|
33
|
-
<template v-for="(subItem, index) in visibleMenu" :key="subItem.component + randomKey + index">
|
34
|
-
<ElSubMenu v-if="subItem.children && subItem.children.length > 0" :index="subItem.component + randomKey + index">
|
35
|
-
<template #title>
|
36
|
-
<ElIcon>
|
37
|
-
<div v-if="subItem.icon" :class="subItem.icon" />
|
38
|
-
</ElIcon>
|
39
|
-
<span>{{ subItem.title }}</span>
|
40
|
-
</template>
|
41
|
-
<LayoutSubMenu :menu-list="subItem.children" />
|
42
|
-
</ElSubMenu>
|
43
|
-
<ElMenuItem v-else :index="subItem.component + randomKey + index">
|
44
|
-
<YoungLink :to="subItem.component" @click="collapseMenu">
|
45
|
-
<ElIcon>
|
46
|
-
<div v-if="subItem.icon" :class="subItem.icon" />
|
47
|
-
</ElIcon>
|
48
|
-
{{ subItem.title }}
|
49
|
-
</YoungLink>
|
50
|
-
</ElMenuItem>
|
51
|
-
</template>
|
52
|
-
</template>
|
@@ -1,184 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-21 17:05:40
|
4
|
-
* @LastEditTime: 2023-09-18 14:14:12
|
5
|
-
* @Description:
|
6
|
-
-->
|
7
|
-
<script lang="ts" setup>
|
8
|
-
import type { RouteLocationNormalized, RouteRecordRaw } from '#vue-router'
|
9
|
-
|
10
|
-
const route = useRoute()
|
11
|
-
const tagsState = useTagsStore()
|
12
|
-
|
13
|
-
const { visitedViews } = storeToRefs(tagsState)
|
14
|
-
|
15
|
-
function tabClick(e: any) {
|
16
|
-
const currentName = e.paneName
|
17
|
-
if (isActive(currentName))
|
18
|
-
return
|
19
|
-
|
20
|
-
navigateTo(currentName)
|
21
|
-
}
|
22
|
-
|
23
|
-
const isActive = (view: RouteLocationNormalized) => view.path === route.path
|
24
|
-
const isAffix = (route: RouteLocationNormalized | RouteRecordRaw) => visitedViews.value.length === 1 || (route?.meta?.affix ?? false)
|
25
|
-
|
26
|
-
function toLastView(visitedViews: RouteLocationNormalized[]) {
|
27
|
-
const lastView = visitedViews.slice(-1)[0]
|
28
|
-
if (lastView)
|
29
|
-
navigateTo(lastView.fullPath)
|
30
|
-
}
|
31
|
-
|
32
|
-
function removeTab(currentName: any) {
|
33
|
-
const to = visitedViews.value.find(r => r.path === currentName as string)
|
34
|
-
if (to) {
|
35
|
-
tagsState.delView(to)
|
36
|
-
isActive(to) && toLastView(visitedViews.value)
|
37
|
-
}
|
38
|
-
|
39
|
-
if (visitedViews.value.length === 0)
|
40
|
-
navigateTo('/')
|
41
|
-
}
|
42
|
-
|
43
|
-
function closeCurrentTab() {
|
44
|
-
removeTab(route.path)
|
45
|
-
}
|
46
|
-
|
47
|
-
function closeOtherTab() {
|
48
|
-
const currentName = route.path
|
49
|
-
const to = visitedViews.value.find(r => r.path === currentName as string)
|
50
|
-
to && tagsState.delOtherViews(to)
|
51
|
-
}
|
52
|
-
|
53
|
-
function closeAllTab() {
|
54
|
-
tagsState.delAllViews()
|
55
|
-
navigateTo('/')
|
56
|
-
}
|
57
|
-
</script>
|
58
|
-
|
59
|
-
<template>
|
60
|
-
<div class="tabs-bar-container">
|
61
|
-
<div class="tabs-content">
|
62
|
-
<ElTabs
|
63
|
-
v-if="visitedViews.length > 0" type="card" :model-value="$route.path" @tab-click="tabClick"
|
64
|
-
@tab-remove="removeTab"
|
65
|
-
>
|
66
|
-
<ElTabPane
|
67
|
-
v-for="item in visitedViews" :key="item.path" type="card" :path="item.path"
|
68
|
-
:label="item.meta.title as string" :name="item.path" :closable="!isAffix(item)"
|
69
|
-
>
|
70
|
-
<template #label>
|
71
|
-
{{ item.meta.title }}
|
72
|
-
</template>
|
73
|
-
</ElTabPane>
|
74
|
-
</ElTabs>
|
75
|
-
</div>
|
76
|
-
<div class="tabs-action">
|
77
|
-
<ElDropdown trigger="click" :disabled="visitedViews.length <= 1">
|
78
|
-
<ElIcon color="rgba(0, 0, 0, 0.65)" :size="20" :class="[visitedViews.length <= 1 ? '!cursor-not-allowed' : '!cursor-pointer']">
|
79
|
-
<div class="i-ep-menu" />
|
80
|
-
</ElIcon>
|
81
|
-
<template #dropdown>
|
82
|
-
<ElDropdownMenu>
|
83
|
-
<ElDropdownItem @click="closeCurrentTab">
|
84
|
-
<ElIcon :size="14">
|
85
|
-
<div class="i-ep-folder-remove" />
|
86
|
-
</ElIcon>
|
87
|
-
关闭当前
|
88
|
-
</ElDropdownItem>
|
89
|
-
<ElDropdownItem @click="closeOtherTab">
|
90
|
-
<ElIcon :size="14">
|
91
|
-
<div class="i-ep-close" />
|
92
|
-
</ElIcon>
|
93
|
-
关闭其他
|
94
|
-
</ElDropdownItem>
|
95
|
-
<ElDropdownItem @click="closeAllTab">
|
96
|
-
<ElIcon :size="14">
|
97
|
-
<div class="i-ep-folder-delete" />
|
98
|
-
</ElIcon>
|
99
|
-
关闭所有
|
100
|
-
</ElDropdownItem>
|
101
|
-
</ElDropdownMenu>
|
102
|
-
</template>
|
103
|
-
</ElDropdown>
|
104
|
-
</div>
|
105
|
-
</div>
|
106
|
-
</template>
|
107
|
-
|
108
|
-
<style lang="scss" scoped>
|
109
|
-
.tabs-action {
|
110
|
-
padding-bottom: 5px;
|
111
|
-
|
112
|
-
:deep(.el-icon) {
|
113
|
-
transition: all 0.3s;
|
114
|
-
}
|
115
|
-
}
|
116
|
-
|
117
|
-
.tabs-bar-container {
|
118
|
-
position: relative;
|
119
|
-
box-sizing: border-box;
|
120
|
-
display: flex;
|
121
|
-
align-content: center;
|
122
|
-
align-items: flex-end;
|
123
|
-
justify-content: space-between;
|
124
|
-
height: $base-tabs-bar-height;
|
125
|
-
padding-right: $base-padding;
|
126
|
-
padding-left: $base-padding;
|
127
|
-
user-select: none;
|
128
|
-
background: $base-color-white;
|
129
|
-
border-top: 1px solid #f6f6f6;
|
130
|
-
|
131
|
-
.tabs-content {
|
132
|
-
width: calc(100% - 0px);
|
133
|
-
}
|
134
|
-
|
135
|
-
:deep(.el-tabs--card) {
|
136
|
-
height: $base-tag-item-height;
|
137
|
-
|
138
|
-
.el-tabs__nav-next,
|
139
|
-
.el-tabs__nav-prev {
|
140
|
-
height: $base-tag-item-height;
|
141
|
-
line-height: $base-tag-item-height;
|
142
|
-
}
|
143
|
-
|
144
|
-
.el-tabs__header {
|
145
|
-
margin: 0;
|
146
|
-
border-bottom: 0;
|
147
|
-
}
|
148
|
-
|
149
|
-
.el-tabs__nav {
|
150
|
-
border: 0;
|
151
|
-
}
|
152
|
-
|
153
|
-
.tabs-icon {
|
154
|
-
top: 3px;
|
155
|
-
font-size: 15px;
|
156
|
-
}
|
157
|
-
|
158
|
-
.el-tabs__item {
|
159
|
-
box-sizing: border-box;
|
160
|
-
height: $base-tag-item-height;
|
161
|
-
line-height: $base-tag-item-height;
|
162
|
-
border: none;
|
163
|
-
border-radius: $base-border-radius;
|
164
|
-
transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
|
165
|
-
}
|
166
|
-
|
167
|
-
.el-tabs__item.is-active {
|
168
|
-
background-color: #e8f4ff;
|
169
|
-
-webkit-mask-image: url('/tabbar_bg.png');
|
170
|
-
mask-image: url('/tabbar_bg.png');
|
171
|
-
-webkit-mask-size: 100% 100%;
|
172
|
-
mask-size: 100% 100%;
|
173
|
-
}
|
174
|
-
|
175
|
-
.el-tabs__item:not(.is_active):hover {
|
176
|
-
background-color: #f6f8f9;
|
177
|
-
-webkit-mask-image: url('/tabbar_bg.png');
|
178
|
-
mask-image: url('/tabbar_bg.png');
|
179
|
-
-webkit-mask-size: 100% 100%;
|
180
|
-
mask-size: 100% 100%;
|
181
|
-
}
|
182
|
-
}
|
183
|
-
}
|
184
|
-
</style>
|
@@ -1,105 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-06-20 17:14:58
|
4
|
-
* @LastEditTime: 2023-09-08 17:33:20
|
5
|
-
* @Description:
|
6
|
-
*/
|
7
|
-
import { useHttp } from '@bluesyoung/http'
|
8
|
-
import type { LoadingInstance } from 'element-plus/es/components/loading/src/loading'
|
9
|
-
import { ElLoadingService } from 'element-plus'
|
10
|
-
import { useDelete, useGet, usePatch, usePost } from './apis'
|
11
|
-
|
12
|
-
export function startLoading() {
|
13
|
-
const { isLoading } = storeToRefs(useNavStore())
|
14
|
-
isLoading.value = true
|
15
|
-
}
|
16
|
-
|
17
|
-
export function endLoading() {
|
18
|
-
const { isLoading } = storeToRefs(useNavStore())
|
19
|
-
isLoading.value = false
|
20
|
-
}
|
21
|
-
|
22
|
-
let loading: LoadingInstance
|
23
|
-
|
24
|
-
export function ajaxStartLoading() {
|
25
|
-
loading = ElLoadingService({
|
26
|
-
lock: true,
|
27
|
-
text: '拼命加载中...',
|
28
|
-
background: 'rgba(0, 0, 0, 0.7)',
|
29
|
-
})
|
30
|
-
}
|
31
|
-
|
32
|
-
export const ajaxEndLoading = () => loading?.close?.()
|
33
|
-
|
34
|
-
const http = useHttp<{
|
35
|
-
code: number
|
36
|
-
data: any
|
37
|
-
msg: string
|
38
|
-
}>({
|
39
|
-
timeout: -1,
|
40
|
-
loading: {
|
41
|
-
start: ajaxStartLoading,
|
42
|
-
end: ajaxEndLoading,
|
43
|
-
},
|
44
|
-
fail: (err: any) => {
|
45
|
-
console.log('🚀 ~ file: api.ts:28 ~ err:', err)
|
46
|
-
const user = useUserStore()
|
47
|
-
if (err?.response?.status === 401) {
|
48
|
-
user.removeToken()
|
49
|
-
checkLogin(true)
|
50
|
-
|
51
|
-
throw err
|
52
|
-
}
|
53
|
-
|
54
|
-
if (typeof err === 'string') {
|
55
|
-
// 通用失败,弹出提示信息
|
56
|
-
showNotify({
|
57
|
-
type: 'danger',
|
58
|
-
message: err,
|
59
|
-
})
|
60
|
-
}
|
61
|
-
if ((err as any) instanceof Error) {
|
62
|
-
showNotify({
|
63
|
-
type: 'danger',
|
64
|
-
// 接口出错
|
65
|
-
message:
|
66
|
-
err?.response?.data?.message
|
67
|
-
|| err?.response?.data?.msg
|
68
|
-
|| err?.response?.data
|
69
|
-
|| err.message
|
70
|
-
|| '网络错误!',
|
71
|
-
})
|
72
|
-
}
|
73
|
-
|
74
|
-
throw err
|
75
|
-
},
|
76
|
-
headers: {
|
77
|
-
getAuthHeaders: () => {
|
78
|
-
const { token } = storeToRefs(useUserStore())
|
79
|
-
return {
|
80
|
-
Authorization: `Bearer ${token.value}`,
|
81
|
-
}
|
82
|
-
},
|
83
|
-
},
|
84
|
-
checkFn: ({ code, msg, data }) => {
|
85
|
-
if (code === 0) {
|
86
|
-
// 通用成功
|
87
|
-
return data
|
88
|
-
}
|
89
|
-
else if (code === -1) {
|
90
|
-
// 通用失败
|
91
|
-
throw msg
|
92
|
-
}
|
93
|
-
else {
|
94
|
-
// 特殊状态码
|
95
|
-
throw code
|
96
|
-
}
|
97
|
-
},
|
98
|
-
})
|
99
|
-
|
100
|
-
export const apis = http.__mixin__({
|
101
|
-
get: useGet(http),
|
102
|
-
post: usePost(http),
|
103
|
-
patch: usePatch(http),
|
104
|
-
delete: useDelete(http),
|
105
|
-
})
|
@@ -1,37 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-26 11:54:08
|
4
|
-
* @LastEditTime: 2023-07-26 11:56:39
|
5
|
-
* @Description:
|
6
|
-
*/
|
7
|
-
import type { YoungHttp, YoungHttpAuthReq } from '@bluesyoung/http'
|
8
|
-
|
9
|
-
export function useDelete(http: YoungHttp) {
|
10
|
-
const AuthReq: YoungHttpAuthReq = args => http.authReq({ method: 'DELETE', ...args })
|
11
|
-
|
12
|
-
const del = async (url: string, ids: string) => {
|
13
|
-
await AuthReq({
|
14
|
-
url,
|
15
|
-
data: { ids },
|
16
|
-
})
|
17
|
-
}
|
18
|
-
|
19
|
-
return {
|
20
|
-
/**
|
21
|
-
* 删除用户
|
22
|
-
*/
|
23
|
-
deleteUser: async (ids: string) => del('/user/delete/batch', ids),
|
24
|
-
/**
|
25
|
-
* 删除菜单
|
26
|
-
*/
|
27
|
-
deleteMenu: async (ids: string) => del('/menu/delete/batch', ids),
|
28
|
-
/**
|
29
|
-
* 删除接口
|
30
|
-
*/
|
31
|
-
deleteApi: async (ids: string) => del('/api/delete/batch', ids),
|
32
|
-
/**
|
33
|
-
* 删除角色
|
34
|
-
*/
|
35
|
-
deleteRole: async (ids: string) => del('/role/delete/batch', ids),
|
36
|
-
}
|
37
|
-
}
|
@@ -1,83 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-21 09:09:37
|
4
|
-
* @LastEditTime: 2023-07-26 11:58:32
|
5
|
-
* @Description:
|
6
|
-
*/
|
7
|
-
import type { YoungHttp, YoungHttpAuthReq, YoungHttpFreeReq } from '@bluesyoung/http'
|
8
|
-
|
9
|
-
export function useGet(http: YoungHttp) {
|
10
|
-
const FreeReq: YoungHttpFreeReq = args => http.freeReq({ method: 'GET', ...args })
|
11
|
-
const AuthReq: YoungHttpAuthReq = args => http.authReq({ method: 'GET', ...args })
|
12
|
-
|
13
|
-
return {
|
14
|
-
/**
|
15
|
-
* 发送短信验证码
|
16
|
-
*/
|
17
|
-
sendCode: async (phone: string) => {
|
18
|
-
showToast(`todo: ${phone}发送短信验证码`)
|
19
|
-
// await FreeReq({ url: '/v1/user/sendCode', params: { phone } });
|
20
|
-
},
|
21
|
-
/**
|
22
|
-
* 获取用户的菜单树
|
23
|
-
*/
|
24
|
-
getUserMenuTree: async () => {
|
25
|
-
return AuthReq<Record<number, NavArrItem>>({
|
26
|
-
url: '/menu/tree',
|
27
|
-
})
|
28
|
-
},
|
29
|
-
/**
|
30
|
-
* 获取角色列表
|
31
|
-
*/
|
32
|
-
getRoleList: async (params: Partial<BaseQuery> = {}) =>
|
33
|
-
AuthReq<PagesData>({
|
34
|
-
url: '/role/list',
|
35
|
-
params,
|
36
|
-
}),
|
37
|
-
/**
|
38
|
-
* 获取用户列表
|
39
|
-
*/
|
40
|
-
getUserList: async (params: Partial<BaseQuery> = {}) =>
|
41
|
-
AuthReq<PagesData>({
|
42
|
-
url: '/user/list',
|
43
|
-
|
44
|
-
params,
|
45
|
-
}),
|
46
|
-
/**
|
47
|
-
* 获取菜单列表
|
48
|
-
*/
|
49
|
-
getMenuList: async () =>
|
50
|
-
AuthReq<Record<string, NavArrItem>>({
|
51
|
-
url: '/menu/list',
|
52
|
-
}),
|
53
|
-
/**
|
54
|
-
* 获取接口列表
|
55
|
-
*/
|
56
|
-
getApiList: async (params: Partial<BaseQuery> = {}) =>
|
57
|
-
AuthReq<PagesData>({
|
58
|
-
url: '/api/list',
|
59
|
-
|
60
|
-
params,
|
61
|
-
}),
|
62
|
-
/**
|
63
|
-
* 获取角色拥有权限的菜单
|
64
|
-
*/
|
65
|
-
getRoleMenuTree: async (id: number) =>
|
66
|
-
AuthReq<{
|
67
|
-
list: NavArrItem[]
|
68
|
-
accessIds: number[]
|
69
|
-
}>({
|
70
|
-
url: `/menu/all/${id}`,
|
71
|
-
}),
|
72
|
-
/**
|
73
|
-
* 获取角色拥有的接口权限
|
74
|
-
*/
|
75
|
-
getRoleApis: async (id: number) =>
|
76
|
-
AuthReq<{
|
77
|
-
list: ApiItem[]
|
78
|
-
accessIds: number[]
|
79
|
-
}>({
|
80
|
-
url: `/api/all/category/${id}`,
|
81
|
-
}),
|
82
|
-
}
|
83
|
-
}
|
@@ -1,74 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-26 11:51:44
|
4
|
-
* @LastEditTime: 2023-07-26 16:37:45
|
5
|
-
* @Description:
|
6
|
-
*/
|
7
|
-
import type { YoungHttp, YoungHttpAuthReq } from '@bluesyoung/http'
|
8
|
-
|
9
|
-
export function usePatch(http: YoungHttp) {
|
10
|
-
const AuthReq: YoungHttpAuthReq = args => http.authReq({ method: 'PATCH', ...args })
|
11
|
-
|
12
|
-
return {
|
13
|
-
/**
|
14
|
-
* 更新接口
|
15
|
-
*/
|
16
|
-
changeApiItem: async ({ id, ...data }: Partial<ApiItem>) => {
|
17
|
-
await AuthReq({
|
18
|
-
url: `/api/update/${id}`,
|
19
|
-
data,
|
20
|
-
})
|
21
|
-
},
|
22
|
-
/**
|
23
|
-
* 更新菜单信息
|
24
|
-
*/
|
25
|
-
changeMenuItem: async ({ id, ...data }: Partial<NavArrItem>) => {
|
26
|
-
await AuthReq({
|
27
|
-
url: `/menu/update/${id}`,
|
28
|
-
data,
|
29
|
-
})
|
30
|
-
},
|
31
|
-
/**
|
32
|
-
* 更新角色
|
33
|
-
*/
|
34
|
-
changeRoleItem: async ({ id, ...data }: Partial<RoleItem>) => {
|
35
|
-
await AuthReq({
|
36
|
-
url: `/role/update/${id}`,
|
37
|
-
data,
|
38
|
-
})
|
39
|
-
},
|
40
|
-
/**
|
41
|
-
* 更新角色菜单权限
|
42
|
-
*/
|
43
|
-
changeRoleMenu: async (roleId: number, add: number[], del: number[]) => {
|
44
|
-
await AuthReq({
|
45
|
-
url: `role/menus/update/${roleId}`,
|
46
|
-
data: {
|
47
|
-
create: add,
|
48
|
-
delete: del,
|
49
|
-
},
|
50
|
-
})
|
51
|
-
},
|
52
|
-
/**
|
53
|
-
* 更新角色接口权限
|
54
|
-
*/
|
55
|
-
changeRoleApi: async (roleId: number, add: number[], del: number[]) => {
|
56
|
-
await AuthReq({
|
57
|
-
url: `role/apis/update/${roleId}`,
|
58
|
-
data: {
|
59
|
-
create: add,
|
60
|
-
delete: del,
|
61
|
-
},
|
62
|
-
})
|
63
|
-
},
|
64
|
-
/**
|
65
|
-
* 更新用户信息
|
66
|
-
*/
|
67
|
-
changeUserItem: async ({ id, ...data }: Partial<UserItem>) => {
|
68
|
-
await AuthReq({
|
69
|
-
url: `/user/update/${id}`,
|
70
|
-
data,
|
71
|
-
})
|
72
|
-
},
|
73
|
-
}
|
74
|
-
}
|