diff --git a/package-lock.json b/package-lock.json index a3e27b1..2e0dda5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,4 +1,3 @@ - { "name": "vue-project", "version": "0.0.0", @@ -6206,4 +6205,3 @@ } } } - diff --git a/package.json b/package.json index c0d0cfb..d2d7590 100644 --- a/package.json +++ b/package.json @@ -52,11 +52,11 @@ "tailwindcss": "^3.0.24", "terser": "^5.15.1", "typescript": "~4.7.4", - "unplugin-auto-import": "^0.16.6", - "unplugin-vue-components": "^0.25.1", + "unplugin-auto-import": "^0.9.2", + "unplugin-vue-components": "^0.19.9", "vite": "^3.0.0", "vite-plugin-style-import": "^2.0.0", - "vite-plugin-svg-icons": "^0.1.0", + "vite-plugin-svg-icons": "^2.0.1", "vite-plugin-vue-setup-extend": "^0.4.0", "vue-tsc": "^0.38.1" }, diff --git a/src/main.ts b/src/main.ts index ab8bc4c..3748860 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,3 +8,4 @@ import 'virtual:svg-icons-register' const app = createApp(App) app.use(install) app.mount('#app') +app.config.warnHandler = () => null \ No newline at end of file diff --git a/src/views/company/dialog_index_man.vue b/src/views/company/dialog_index_man.vue index c094fdd..4c101b2 100644 --- a/src/views/company/dialog_index_man.vue +++ b/src/views/company/dialog_index_man.vue @@ -51,7 +51,7 @@ import { usePaging } from '@/hooks/usePaging' import { roleAll } from "@/api/perms/role"; import { useDictData,useDictOptions } from '@/hooks/useDictOptions' import { adminLists} from "@/api/perms/admin"; -import { defineEmits } from 'vue' +import { defineEmits, defineProps } from 'vue' const { optionsData } = useDictOptions<{ role: any[]; }>({ @@ -65,6 +65,17 @@ const queryParams = reactive({ role_id: "", }) +const props = defineProps({ + type: { + type: Number, + defualt: 0 + } +}) + +if(props.type==8){ + queryParams.role_id = 8 +} + // 选中数据 const emits = defineEmits(['customEvent']) diff --git a/src/views/company/edit.vue b/src/views/company/edit.vue index 5721d27..65ca37f 100644 --- a/src/views/company/edit.vue +++ b/src/views/company/edit.vue @@ -1,11 +1,6 @@