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 @@
+
+
+
+
+
+
+ {{ policyDetail.name }}
+ 生效时间:{{ policyDetail.effectiveDate }}
+
+
+
+
+
+
+
+
+
+
+
+
\ 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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+ 生效时间: {{ item.effectiveDate }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file