diff --git a/.gitignore b/.gitignore
index 4032f4e..1f95568 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,5 +10,4 @@ dist
*.mjs
-*.map
-*.css
\ No newline at end of file
+*.map
\ No newline at end of file
diff --git a/src/components/popup/details.vue b/src/components/popup/details.vue
new file mode 100644
index 0000000..db48cef
--- /dev/null
+++ b/src/components/popup/details.vue
@@ -0,0 +1,151 @@
+
+
+
+
+
+
+
+
+
+
+
+
受理编号:{{ number }}
+
{{ title }}
+
+
+
+ {{ content }}
+
+
+
+
+
+
+
+
diff --git a/src/router/routes.ts b/src/router/routes.ts
index 3e92a93..d4ef9f0 100644
--- a/src/router/routes.ts
+++ b/src/router/routes.ts
@@ -20,6 +20,11 @@ export const routes = [
path: '/countyData',
component: () => import('@/views/datascreen/countyData.vue')
},
+ {
+ path: '/datascreen/details',
+ component: () => import('@/views/datascreen/details.vue')
+ },
+
{
path: '/layout',
component: LAYOUT,
diff --git a/src/views/datascreen/assets/css/index.css b/src/views/datascreen/assets/css/index.css
index 459b3e1..972b3ee 100644
--- a/src/views/datascreen/assets/css/index.css
+++ b/src/views/datascreen/assets/css/index.css
@@ -13,10 +13,6 @@ a:active {
text-decoration: none;
color: #ffffff;
}
-body{
- background-image: url('@/assets/bg.png'); /* 背景图片的路径 */
- background-size: cover; /* 背景图片大小适应容器 */
-}
.header{
width: 824px;
diff --git a/src/views/datascreen/details.vue b/src/views/datascreen/details.vue
index 6790277..849ba74 100644
--- a/src/views/datascreen/details.vue
+++ b/src/views/datascreen/details.vue
@@ -1,97 +1,353 @@
-