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 @@