diff --git a/policeManagement/src/router/staticRouters.ts b/policeManagement/src/router/staticRouters.ts index 244a79f..41cf84c 100644 --- a/policeManagement/src/router/staticRouters.ts +++ b/policeManagement/src/router/staticRouters.ts @@ -68,7 +68,6 @@ export const staticRouter: RouteRecordRaw[] = }, component: () => import('@/views/login.vue') }, - { //登录页面 path: '/register-index', diff --git a/securityManagement/package.json b/securityManagement/package.json index 1986058..513bdda 100644 --- a/securityManagement/package.json +++ b/securityManagement/package.json @@ -13,19 +13,22 @@ "ant-design-vue": "^4.2.3", "axios": "^1.7.5", "jsencrypt": "^3.3.2", + "lodash-es": "^4.17.21", "pinia": "^2.2.2", "pinia-plugin-persistedstate": "^3.2.0", "sass": "^1.77.8", "vue": "^3.4.37", "vue-router": "4", - "vue-uuid": "^3.0.0", - "lodash-es": "^4.17.21" + "vue-uuid": "^3.0.0" }, "devDependencies": { "@types/lodash-es": "^4.17.8", "@types/node": "^22.5.1", "@vitejs/plugin-vue": "^5.1.2", "@vitejs/plugin-vue-jsx": "^4.0.1", + "autoprefixer": "^10.4.20", + "postcss": "^8.4.44", + "tailwindcss": "^3.4.10", "typescript": "^5.5.3", "unplugin-vue-components": "^0.27.4", "vite": "^5.4.1", diff --git a/securityManagement/postcss.config.js b/securityManagement/postcss.config.js new file mode 100644 index 0000000..2e7af2b --- /dev/null +++ b/securityManagement/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/securityManagement/src/components/iconfont/IconFont.vue b/securityManagement/src/components/iconfont/IconFont.vue new file mode 100644 index 0000000..fc208f1 --- /dev/null +++ b/securityManagement/src/components/iconfont/IconFont.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/securityManagement/src/components/layout/MenuItem.vue b/securityManagement/src/components/layout/MenuItem.vue new file mode 100644 index 0000000..0d928f6 --- /dev/null +++ b/securityManagement/src/components/layout/MenuItem.vue @@ -0,0 +1,47 @@ + + + + + diff --git a/securityManagement/src/components/layout/SystemMenus.vue b/securityManagement/src/components/layout/SystemMenus.vue new file mode 100644 index 0000000..4e34340 --- /dev/null +++ b/securityManagement/src/components/layout/SystemMenus.vue @@ -0,0 +1,30 @@ + + + + + diff --git a/securityManagement/src/components/layout/layout.vue b/securityManagement/src/components/layout/layout.vue index f69b7c5..09ce243 100644 --- a/securityManagement/src/components/layout/layout.vue +++ b/securityManagement/src/components/layout/layout.vue @@ -12,6 +12,7 @@ + import {ref} from "vue"; import LayoutHeader from "@/components/layout/header/LayoutHeader.vue"; +import SystemMenus from "@/components/layout/SystemMenus.vue"; const collapsed = ref(false); diff --git a/securityManagement/src/components/login/TelephoneLogin.vue b/securityManagement/src/components/login/TelephoneLogin.vue index 3e2b9a2..99a5d89 100644 --- a/securityManagement/src/components/login/TelephoneLogin.vue +++ b/securityManagement/src/components/login/TelephoneLogin.vue @@ -38,17 +38,22 @@ \ No newline at end of file diff --git a/securityManagement/src/views/serviceManagement/index.vue b/securityManagement/src/views/serviceManagement/index.vue new file mode 100644 index 0000000..84db465 --- /dev/null +++ b/securityManagement/src/views/serviceManagement/index.vue @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/securityManagement/src/views/test.vue b/securityManagement/src/views/test.vue index 1a58db2..ba851b8 100644 --- a/securityManagement/src/views/test.vue +++ b/securityManagement/src/views/test.vue @@ -1,13 +1,11 @@ + + \ No newline at end of file + diff --git a/securityManagement/src/views/userManagement/bgManagement/index.vue b/securityManagement/src/views/userManagement/bgManagement/index.vue new file mode 100644 index 0000000..d3e0a2c --- /dev/null +++ b/securityManagement/src/views/userManagement/bgManagement/index.vue @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/securityManagement/src/views/userManagement/uniManagement/index.vue b/securityManagement/src/views/userManagement/uniManagement/index.vue new file mode 100644 index 0000000..902efdc --- /dev/null +++ b/securityManagement/src/views/userManagement/uniManagement/index.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/securityManagement/tailwind.config.js b/securityManagement/tailwind.config.js new file mode 100644 index 0000000..5eef83c --- /dev/null +++ b/securityManagement/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], + theme: { + extend: {}, + }, + plugins: [], +} +