From 573294de2130fe86dca201c395f952ff08f90839 Mon Sep 17 00:00:00 2001 From: shirlwang <15254118591@163.com> Date: Thu, 6 Nov 2025 15:54:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=BF=E7=AD=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apiRc/policy/index.js | 17 + packageRc/pages/index/index.vue | 36 +- packageRc/pages/policy/policyDetail.vue | 481 +++++++++++++++++++++ packageRc/pages/policy/policyList.vue | 539 ++++++++++++++++++++++++ packageRc/static/cyzc.png | Bin 0 -> 1303 bytes pages.json | 10 + 6 files changed, 1073 insertions(+), 10 deletions(-) create mode 100644 apiRc/policy/index.js create mode 100644 packageRc/pages/policy/policyDetail.vue create mode 100644 packageRc/pages/policy/policyList.vue create mode 100644 packageRc/static/cyzc.png diff --git a/apiRc/policy/index.js b/apiRc/policy/index.js new file mode 100644 index 0000000..dcc8c96 --- /dev/null +++ b/apiRc/policy/index.js @@ -0,0 +1,17 @@ +import request from "@/utilsRc/request"; +//政策列表 +export function getPolicyList(queryParams) { + return request({ + url: "/portal/policyInfo/portalList", + method: "get", + params: queryParams, + }); +} +//政策详情 +export function getPolicyDetail(queryParams) { + return request({ + url: "/portal/policyInfo/getInfo", + method: "get", + params: queryParams, + }); +} \ No newline at end of file diff --git a/packageRc/pages/index/index.vue b/packageRc/pages/index/index.vue index 49678fd..2cc8f1a 100644 --- a/packageRc/pages/index/index.vue +++ b/packageRc/pages/index/index.vue @@ -1,7 +1,7 @@