From d6f8f6e4300f00d59c8d717e7f46a52acc8825df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=B9=8F?= Date: Mon, 24 Feb 2025 14:46:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=BF=E7=AD=96=E6=B3=95=E8=A7=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/policy/index.js | 37 +++++++ config.js | 4 +- pages.json | 23 +++- pages/enterprise.vue | 7 +- pages/owner.vue | 7 +- sub/owner/policy-detail.vue | 142 +++++++++++++++++++++++++ sub/owner/policy.vue | 203 ++++++++++++++++++++++++++++++++++++ 7 files changed, 419 insertions(+), 4 deletions(-) create mode 100644 api/policy/index.js create mode 100644 sub/owner/policy-detail.vue create mode 100644 sub/owner/policy.vue diff --git a/api/policy/index.js b/api/policy/index.js new file mode 100644 index 0000000..7334f39 --- /dev/null +++ b/api/policy/index.js @@ -0,0 +1,37 @@ +import request from '@/utils/request' + + +// 处理富文本内容截取 +export const formatPolicyContext = (context, maxLength = 100) => { + if (!context) return '' + // 移除HTML标签 + const plainText = context.replace(/<[^>]+>/g, '') + return plainText.length > maxLength + ? plainText.substring(0, maxLength) + '...' + : plainText + } + +// 政策法规 API +export const PolicyApi = { + + + /** + * 查询政策法规分页 + * @param {Object} params + */ + getPolicyPage: (params) => { + return request({ + url: `/system/policy/page`, + method: 'GET', + params + }) + }, + + + // 查询政策法规详情 + getPolicy: (id) => { + return request({ url: `/system/policy/get?id=` + id,method: 'GET' }) + }, + + } + \ No newline at end of file diff --git a/config.js b/config.js index adb9198..075a612 100644 --- a/config.js +++ b/config.js @@ -1,8 +1,10 @@ // 应用全局配置 module.exports = { - baseUrl: 'https://hb.jzce.com', + baseUrl: 'http://188.188.3.166:48080', + //baseUrl: 'https://hb.jzce.com', //baseUrl: 'http://188.188.3.232:48080', baseApi: '/admin-api', + imgUrl: 'https://hb.jzce.com', // 应用信息 appInfo: { // 应用名称 diff --git a/pages.json b/pages.json index a9aa325..0888034 100644 --- a/pages.json +++ b/pages.json @@ -76,7 +76,28 @@ "style": { "navigationBarTitleText": "邀请企业" } - }, { + }, + { + "path": "owner/policy", + "style": { + "navigationBarTitleText": "政策法规", + "usingComponents": { + "van-search":"/wxcomponents/vant/search/index" + }, + "componentPlaceholder": { + "u-modal": "view" + } + } + }, + { + "path": "owner/policy-detail", + "style": { + "navigationBarTitleText": "政策法规", + "usingComponents": {}, + "componentPlaceholder": {} + } + }, + { "path": "enterprise/edit", "style": { "navigationBarTitleText": "企业填报" diff --git a/pages/enterprise.vue b/pages/enterprise.vue index 7bb877d..a22ba38 100644 --- a/pages/enterprise.vue +++ b/pages/enterprise.vue @@ -4,7 +4,7 @@ @@ -227,6 +227,11 @@ export default { this.queryParams[key] = v.detail this.queryEnterprise() }, + handleSearch(e) { + this.queryParams.pageNum = 1 // 重置页码 + this.queryParams.name = e.detail // 更新搜索关键字 + this.getPolicyList() + }, queryEnterprise() { this.queryParams.pageNo = 1 this.load = 'loadmore' diff --git a/pages/owner.vue b/pages/owner.vue index b7ed61c..bfc5c6e 100644 --- a/pages/owner.vue +++ b/pages/owner.vue @@ -84,7 +84,7 @@ > 政策法规 - + { this.user = res.data diff --git a/sub/owner/policy-detail.vue b/sub/owner/policy-detail.vue new file mode 100644 index 0000000..e284a83 --- /dev/null +++ b/sub/owner/policy-detail.vue @@ -0,0 +1,142 @@ + + + + + \ No newline at end of file diff --git a/sub/owner/policy.vue b/sub/owner/policy.vue new file mode 100644 index 0000000..4ed4e61 --- /dev/null +++ b/sub/owner/policy.vue @@ -0,0 +1,203 @@ + + + + + \ No newline at end of file