From 9523afc21a02e6755b5bccc74ea0ccab410c6ed5 Mon Sep 17 00:00:00 2001 From: KeXuCong <13266269839@163.com> Date: Mon, 10 Mar 2025 13:56:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=BF=E7=AD=96=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jwtech-pc-page/src/api/zhxx.js | 21 ++++ jwtech-pc-page/src/router/index.js | 7 ++ .../descriptionsEnterpriseTable.vue | 66 ++++++----- .../views/policyDoc/components/docWrap.vue | 45 +++++++- jwtech-pc-page/src/views/policyDoc/index.vue | 106 ++++++++++++++++-- .../src/views/policyDoc/policyDocDetail.vue | 97 ++++++++++++++++ jwtech-pc-page/static/config.js | 2 +- 7 files changed, 301 insertions(+), 43 deletions(-) create mode 100644 jwtech-pc-page/src/api/zhxx.js create mode 100644 jwtech-pc-page/src/views/policyDoc/policyDocDetail.vue diff --git a/jwtech-pc-page/src/api/zhxx.js b/jwtech-pc-page/src/api/zhxx.js new file mode 100644 index 00000000..db65f5f0 --- /dev/null +++ b/jwtech-pc-page/src/api/zhxx.js @@ -0,0 +1,21 @@ +import request from "@/http/http"; + +//政策文件 +export function zhxxList(data) { + return request({ + url: "/enterprise/zhxx/zc/list", + method: "post", + data: data + }); +} + +//政策文件 +export function zhxxDetail(id) { + return request({ + url: `enterprise/zhxx/${id}`, + method: "get", + }); +} + + + diff --git a/jwtech-pc-page/src/router/index.js b/jwtech-pc-page/src/router/index.js index e9e96712..2ee46b6a 100644 --- a/jwtech-pc-page/src/router/index.js +++ b/jwtech-pc-page/src/router/index.js @@ -66,6 +66,13 @@ const router = new Router({ component: () => import('@/views/policyDoc/index.vue'), name: 'policyDoc', }, + { + path: '/policyDocDetail', + component: () => import('@/views/policyDoc/policyDocDetail.vue'), + name: 'policyDocDetail', + }, + + { path: '/personDetail', component: () => import('@/views/enterpriseInformation/personDetail.vue'), diff --git a/jwtech-pc-page/src/views/enterpriseInformation/components/descriptionsEnterpriseTable.vue b/jwtech-pc-page/src/views/enterpriseInformation/components/descriptionsEnterpriseTable.vue index f180ca21..cba5c049 100644 --- a/jwtech-pc-page/src/views/enterpriseInformation/components/descriptionsEnterpriseTable.vue +++ b/jwtech-pc-page/src/views/enterpriseInformation/components/descriptionsEnterpriseTable.vue @@ -42,8 +42,8 @@ > {{ item.val }} - - {{ updateTime }} + + {{ registeredAddress }} {{ businessScope }} @@ -73,16 +73,16 @@ export default { // code: "enterpriseName", // val: "" // }, - { - label: "投资组成", - code: "investmentComposition", - val: "" - }, - { - label: "法定代表人", - code: "legalRepresentative", - val: "" - }, + // { + // label: "投资组成", + // code: "investmentComposition", + // val: "" + // }, + // { + // label: "法定代表人", + // code: "legalRepresentative", + // val: "" + // }, { label: "成立日期", code: "establishmentDate", @@ -93,35 +93,46 @@ export default { // code: "unifiedSocialCreditCode", // val: "" // }, - { - label: "登记机关", - code: "creditCodeIssuingAuthority", - val: "" - }, + // { + // label: "登记机关", + // code: "creditCodeIssuingAuthority", + // val: "" + // }, { label: "注册地区", code: "adcd", val: "" }, + // { + // label: "注册地址", + // code: "registeredAddress", + // val: "" + // }, + // { + // label: "注册资本(万元)", + // code: "registeredCapital", + // val: "" + // }, + // { + // label: "实缴注册资本(万元)", + // code: "paidRegisteredCapital", + // val: "" + // } { - label: "注册地址", - code: "registeredAddress", - val: "" - }, - { - label: "注册资本(万元)", - code: "registeredCapital", + label: "单位性质", + code: "investmentComposition", val: "" }, { - label: "实缴注册资本(万元)", - code: "paidRegisteredCapital", + label: "单位类别", + code: "enterpriseType", val: "" } ], updateTime: "", businessScope: "", - areaList: [] + areaList: [], + registeredAddress: "" }; }, mounted() { @@ -143,6 +154,7 @@ export default { }); } this.updateTime = this.enterpriseObj.updateTime || "-"; + this.registeredAddress = this.enterpriseObj.registeredAddress || "-"; this.businessScope = this.enterpriseObj.businessScope || "-"; }); }, diff --git a/jwtech-pc-page/src/views/policyDoc/components/docWrap.vue b/jwtech-pc-page/src/views/policyDoc/components/docWrap.vue index c32aa095..6f2d8631 100644 --- a/jwtech-pc-page/src/views/policyDoc/components/docWrap.vue +++ b/jwtech-pc-page/src/views/policyDoc/components/docWrap.vue @@ -6,9 +6,14 @@
-
+
{{ item.title }} - {{ item.time }} + {{ item.createTime }}
@@ -97,6 +127,13 @@ export default { height: 40px; line-height: 40px; border-bottom: 1px solid #f0f0f0; + cursor: pointer; + + &::hover { + span { + color: #005eb7; + } + } span { font-family: PingFangSC, PingFang SC; font-weight: 400; diff --git a/jwtech-pc-page/src/views/policyDoc/index.vue b/jwtech-pc-page/src/views/policyDoc/index.vue index a20e849a..00e190fb 100644 --- a/jwtech-pc-page/src/views/policyDoc/index.vue +++ b/jwtech-pc-page/src/views/policyDoc/index.vue @@ -1,23 +1,30 @@