diff --git a/lib/component/form/select/select-api.vue b/lib/component/form/select/select-api.vue index 645a0b5..2ead21d 100644 --- a/lib/component/form/select/select-api.vue +++ b/lib/component/form/select/select-api.vue @@ -180,7 +180,6 @@ * 获取数据 */ const fetch = () => { - console.log('requiredParams', getBindValues.value.checkRequiredParams); if (getBindValues.value.checkRequiredParams === false) { options.value = []; return; diff --git a/lib/saas/store/modules/authorization-service.ts b/lib/saas/store/modules/authorization-service.ts index f720eba..ab02964 100644 --- a/lib/saas/store/modules/authorization-service.ts +++ b/lib/saas/store/modules/authorization-service.ts @@ -70,7 +70,6 @@ export const authorizationService = defineStore({ this.dealResourceTree(this.userResourceList); } else { const res = await this.appConfig.userResource(); - console.log(res, 'hshshhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh'); this.userResourceList = res.data ? res.data : []; if (this.appConfig.defaultResource) { @@ -92,7 +91,6 @@ export const authorizationService = defineStore({ //初始化菜单树 async initMenuResource() { const res = await this.appConfig.userResource(); - console.log(res, 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb'); this.initMenus = []; if (this.appConfig.resourceName && res.data && res.data.length) { diff --git a/lib/saas/view/system/application.vue b/lib/saas/view/system/application.vue index 2f325aa..3b432cf 100644 --- a/lib/saas/view/system/application.vue +++ b/lib/saas/view/system/application.vue @@ -75,12 +75,10 @@ authorizationStore.setProjectId(Cookies.get('projectUuid')); } const { route: routeModules, routeModuleObject, routeModule } = storeToRefs(useRouteStore()); - console.log(routeModules, 'routeModules'); const headers = computed(() => { const module = cloneDeep(routeModules.value); const list = []; - console.log('----'); keepAliveStore.clearKeepAlive(); for (let i = 0, j = module.length; i < j; i++) { const mod = module[i] || {}; diff --git a/lib/saas/view/system/layout/header.vue b/lib/saas/view/system/layout/header.vue index 2c79bdc..b939ed6 100644 --- a/lib/saas/view/system/layout/header.vue +++ b/lib/saas/view/system/layout/header.vue @@ -178,7 +178,6 @@ const configStore = appConfigStore(); const { getThemeConfig: themeConfig } = storeToRefs(configStore); - console.log(configStore.headerSlotConfig); const headerSlot = computed(() => { return configStore.headerSlotConfig; }); diff --git a/lib/saas/view/system/layout/tags.vue b/lib/saas/view/system/layout/tags.vue index 8dbf797..cb0283f 100644 --- a/lib/saas/view/system/layout/tags.vue +++ b/lib/saas/view/system/layout/tags.vue @@ -90,7 +90,6 @@ clickTag(rightTarget.value); }; const selectTags = inject('selectTags'); - console.log(selectTags); const baseHeader = inject('baseHeader'); const closeMenu = () => { visible.value = false;