From d04fd9b9cc87c29244a733fc6f503d0cd1c41ed0 Mon Sep 17 00:00:00 2001 From: meizf <48540969@qq.com> Date: Tue, 9 Sep 2025 16:17:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=82=E5=A4=96=E4=BC=81=E4=B8=9A=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E7=99=BB=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/enforce.js | 6 + src/views/administrative/appointment.vue | 1 + src/views/administrative/appointmentBase.vue | 8 +- src/views/enforce/comprehensiveAnalysis.vue | 6 +- src/views/enforce/noScanFilter.vue | 8 +- src/views/enforce/outsideRegister.vue | 465 +++++++++++++++++++ src/views/enforce/sign.vue | 1 + src/views/enterprise/companyFilter.vue | 54 +++ src/views/non-law/noScanFilter.vue | 49 ++ src/views/non-law/sign.vue | 1 + 10 files changed, 594 insertions(+), 5 deletions(-) create mode 100644 src/views/enforce/outsideRegister.vue diff --git a/src/router/enforce.js b/src/router/enforce.js index 5d46378..000c5f9 100644 --- a/src/router/enforce.js +++ b/src/router/enforce.js @@ -65,6 +65,12 @@ const routes = [ name: "noAccess", component: () => import("@/views/noAccess.vue"), }, + // 市外企业信息登记 + { + path: "/outsideRegister", + name: "outsideRegister", + component: () => import("@/views/enforce/outsideRegister.vue"), + }, ]; export { routes }; diff --git a/src/views/administrative/appointment.vue b/src/views/administrative/appointment.vue index 8188066..9bbb074 100644 --- a/src/views/administrative/appointment.vue +++ b/src/views/administrative/appointment.vue @@ -16,6 +16,7 @@ - + @@ -200,6 +200,12 @@ const props = defineProps( { } }); } + const toRegister = () => { + router.push({ + path: "/outsideRegister", + + }); + }; diff --git a/src/views/enforce/outsideRegister.vue b/src/views/enforce/outsideRegister.vue new file mode 100644 index 0000000..78b5f06 --- /dev/null +++ b/src/views/enforce/outsideRegister.vue @@ -0,0 +1,465 @@ + + + + + diff --git a/src/views/enforce/sign.vue b/src/views/enforce/sign.vue index 42f0667..3c386f4 100644 --- a/src/views/enforce/sign.vue +++ b/src/views/enforce/sign.vue @@ -22,6 +22,7 @@ + @@ -139,6 +140,12 @@ } } + const toRegister = () => { + router.push({ + path: "../enforce/outsideRegister", + + }); + }; \ No newline at end of file diff --git a/src/views/non-law/noScanFilter.vue b/src/views/non-law/noScanFilter.vue index 1aef3b3..bff26dc 100644 --- a/src/views/non-law/noScanFilter.vue +++ b/src/views/non-law/noScanFilter.vue @@ -46,6 +46,7 @@ + @@ -405,4 +406,52 @@ const props = defineProps( { color: #f50; font-size: 0.35rem; } +.link-box { + position: relative; + margin: 10% 3%; + width: 94%; + height: 3.5rem; + background-color: #ebf2fc; + border-radius: 0.5rem; +} +.link-box::after { + position: absolute; + top: -0.65rem; + right: 0; + display: block; + width: 3rem; + height: 3rem; + background: url("../../assets/images/com_sign.png") no-repeat; + background-size: auto 100%; + content: ''; + opacity: 0.4; +} +.link-box > h5 { + margin: 5% 8%; + padding: 0; + color: #4c4c4c; + font-size: 0.4rem; + line-height: 4; +} + +.link-box > span { + position: relative; + display: flex; + align-items: center; + margin: -4% 0 0 8%; + padding: 0.15rem 0.35rem; + width: 3.25rem; + background-color: #fff; + border-radius: 0.25rem; + box-shadow: 0 0 0.15rem #dee9e9; + color: #1367fe; + font-size: 0.35rem; + line-height: 1.5; + text-align: left; +} + +.link-box > span > i.van-icon { + position: absolute; + right: 0.2rem; +} \ No newline at end of file diff --git a/src/views/non-law/sign.vue b/src/views/non-law/sign.vue index 5899300..6b2b7af 100644 --- a/src/views/non-law/sign.vue +++ b/src/views/non-law/sign.vue @@ -17,6 +17,7 @@