diff --git a/package.json b/package.json
index f6e0809..a34b753 100644
--- a/package.json
+++ b/package.json
@@ -62,6 +62,7 @@
"vue-count-to": "1.0.13",
"vue-cropper": "0.4.9",
"vue-router": "3.0.2",
+ "vue-seamless-scroll": "^1.1.23",
"vue-splitpane": "1.0.4",
"vuedraggable": "2.20.0",
"vuex": "3.1.0"
diff --git a/src/views/components/footer/index.vue b/src/views/components/footer/index.vue
index 9434917..2440359 100644
--- a/src/views/components/footer/index.vue
+++ b/src/views/components/footer/index.vue
@@ -5,13 +5,17 @@
@@ -67,7 +68,7 @@
"
>其他
- -->
+ -->
- {{ item.title }}
-
+ >{{ item.title }}
-
+
-
{{
- parseTime(item.listDate, '{m}-{d}')
- }}
+
+ {{
+ parseTime(item.listDate, '{m}-{d}')
+ }}
+
@@ -102,8 +103,8 @@
@@ -175,9 +177,7 @@
path: '/result',
query: { key: 'policy', id: item.id },
}"
- >
- {{ item.title }}
-
+ >{{ item.title }}
{{ parseTime(item.listDate, '{m}-{d}') }}
@@ -188,8 +188,8 @@
@@ -213,9 +214,7 @@
path: '/result',
query: { key: 'information', id: item.id },
}"
- >
- {{ item.title }}
-
+ >{{ item.title }}
-
-
+
+
-
-
+
+
{{ item.title }}
@@ -426,12 +363,12 @@
-
-
+
+
-
![]()
+
@@ -443,13 +380,10 @@
合肥嘉策信息技术服务有限公司于成立。法定代表人时加红,公司经营范围包括:信息系统集成咨询...
-
-->
-
+ -->
+
更多
@@ -458,28 +392,20 @@
-

+
-
+
-
-
+
-
+
-
-
+
@@ -562,6 +488,11 @@ export default {
handlePage(url) {
window.open(url, '_blank');
},
+
+ jumpToDetails(labelId) {
+ // this.$router.push('/portrait?key=policyNotice&val=policyNotice')
+ this.$router.push({ path: '/portrait', query: { key: 'policyNotice', val: 'policyNotice', labelId } })
+ }
},
created() {
getRotationList({ pageNum: 1, pageSize: 50 }).then(({ data }) => {
diff --git a/src/views/home/notice.vue b/src/views/home/notice.vue
index 78c4bc7..0a13525 100644
--- a/src/views/home/notice.vue
+++ b/src/views/home/notice.vue
@@ -15,15 +15,9 @@
- 截至到{{ parseTime(item.cutOffTime, '{y}-{m}-{d}') }}
+ 截至到{{ parseTime(item.cutOffTime, '{y}-{m}-{d}') }}
+ -->
-

+
正待发布,敬请期待……
@@ -197,9 +167,7 @@
path: '/result',
query: { key: 'policy', id: item.id }
}"
- >
- {{ item.title }}
-
+ >{{ item.title }}
来源:{{ item.source }}
@@ -212,13 +180,7 @@
query: { key: 'policy', val: '企业画像' }
}"
>
-
- 查看更多
-
+
查看更多
@@ -331,7 +293,10 @@ export default {
return item !== '';
});
getPolicyList(this.queryParams).then(({ data }) => {
- this.dataList = data.list;
+ this.dataList = data.list.map(item => {
+ item.title = item.title.replaceAll('
', '')
+ return item
+ });
this.total = data.total;
this.loading = false;
});
diff --git a/src/views/portrait.vue b/src/views/portrait.vue
index 80c506a..6ac6c3a 100644
--- a/src/views/portrait.vue
+++ b/src/views/portrait.vue
@@ -28,8 +28,7 @@
:label="item.id"
border
@change="handleClick"
- >{{ item.name }}
+ >{{ item.name }}
@@ -70,9 +67,7 @@
id: item.id
}
}"
- >
- {{ item.title }}
-
+ >{{ item.title }}
{{ item.listDate }}
{{ item.createTime }}
@@ -85,15 +80,11 @@
发布:{{ item.createTime }}
-
-->
+
-->
{{ formData.title }}
- 来源:{{ formData.source }}
- 价格:{{ setNumber(formData.price) }}
+ 来源:{{ formData.source }}
+ 价格:{{ setNumber(formData.price) }}
- 发布:{{
+
+ 发布:{{
formData.listDate || parseTime(formData.createTime, '{y}-{m}-{d}')
- }}
+ }}
+
-
- 收藏
+
+
+ 收藏
-
- 取消收藏
+
+
+ 取消收藏
@@ -102,17 +90,14 @@
公示公告
- 更多
+ 更多
+
- -
+
-
- •{{ item.title }}
+ •
+ {{ item.title }}
@@ -168,7 +154,7 @@ export default {
},
watch: {
formData: {
- handler: function() {
+ handler: function () {
if (this.type == 'policy' || this.type == 'policyRead') {
this.$nextTick(() => {
this.formatRichText(
@@ -280,6 +266,7 @@ export default {
}
.my_main {
margin: 30px auto;
+
.r {
.title {
display: flex;
@@ -303,4 +290,7 @@ export default {
}
}
}
+.wzcon {
+ line-height: 1.5;
+}