diff --git a/src/assets/scss/modules/visual/basicInfoMain.scss b/src/assets/scss/modules/visual/basicInfoMain.scss index 88e617d66..e82983401 100644 --- a/src/assets/scss/modules/visual/basicInfoMain.scss +++ b/src/assets/scss/modules/visual/basicInfoMain.scss @@ -267,13 +267,13 @@ // margin-left: 0; // } - > span { + .housename { + margin-top: 70px; font-size: 24px; font-family: PingFang SC; font-weight: 500; color: #ffffff; - line-height: 18px; - line-height: 190px; + // line-height: 180px; } .icon_party { diff --git a/src/views/modules/base/community/buildTable.vue b/src/views/modules/base/community/buildTable.vue index c8a0d7c2a..718273aa9 100644 --- a/src/views/modules/base/community/buildTable.vue +++ b/src/views/modules/base/community/buildTable.vue @@ -156,7 +156,7 @@ export default { return { loading: false, total: 0, - pageSize: 10, + pageSize: 20, pageNo: 0, tableLoading: true, diff --git a/src/views/modules/base/community/communityTable.vue b/src/views/modules/base/community/communityTable.vue index a57e6a1e2..4608b461c 100644 --- a/src/views/modules/base/community/communityTable.vue +++ b/src/views/modules/base/community/communityTable.vue @@ -157,7 +157,7 @@ export default { return { loading: false, total: 0, - pageSize: 10, + pageSize: 20, pageNo: 0, tableLoading: true, diff --git a/src/views/modules/base/community/roomTable.vue b/src/views/modules/base/community/roomTable.vue index 797b047e1..7aacb8352 100644 --- a/src/views/modules/base/community/roomTable.vue +++ b/src/views/modules/base/community/roomTable.vue @@ -167,7 +167,7 @@ export default { return { loading: false, total: 0, - pageSize: 10, + pageSize: 20, pageNo: 0, tableLoading: true, diff --git a/src/views/modules/visual/basicinfo/basicInfoCommunity.vue b/src/views/modules/visual/basicinfo/basicInfoCommunity.vue index dbb0a3c43..46e4c4d46 100644 --- a/src/views/modules/visual/basicinfo/basicInfoCommunity.vue +++ b/src/views/modules/visual/basicinfo/basicInfoCommunity.vue @@ -29,7 +29,7 @@ :key="index" :class="['item',{'item_sel':selHouseIndex==index}]" @click="handleClickRoom(index)"> - {{item.houseName}} +
{{item.houseName}}
话题详情
-
+
@@ -15,12 +16,10 @@
话题内容
{{ info.topicContent }}
- +
发布时间: @@ -37,65 +36,57 @@
-
+
-
+
{{ item.label }}
-
+
-
+
- + 加载中
-
- +
+
-
- +
+
-
+
议题标题: @@ -113,7 +104,8 @@ 议题发起人: {{ issueInfo.issueInitiator }}
-
+
议题来源: {{ issueInfo.topicInfo.groupName }}
@@ -143,22 +135,20 @@
- +
-
- +
+
-
+
项目标题: @@ -176,33 +166,36 @@ 当前处理部门: {{ projectInfo.departmentNameList.join("、") }}
-
+
分类: -
+
{{ item.name }}
-
+
标签: -
+
{{ item.name }}
-
+
处理进展
-
+
{{ item.processName }}
@@ -215,20 +208,16 @@
{{ item.departmentName }}
-
+
说 明:
{{ item.publicReply }}
-
+
内部备注:
{{ @@ -238,12 +227,10 @@
- + {{ att.name }} @@ -253,11 +240,10 @@
-
- +
+
@@ -276,7 +262,7 @@ import analyse from "@/views/modules/visual/cpts/analyse"; import foldText from "@/views/components/foldText"; import dateFormat from "dai-js/tools/dateFormat"; -function iniData() { +function iniData () { return { groupList: [ { label: "研判分析" }, @@ -434,7 +420,7 @@ export default { computed: {}, watch: { - topicId() { + topicId () { let data = iniData(); Object.keys(data).forEach((k) => { this[k] = data[k]; @@ -443,16 +429,16 @@ export default { }, }, - mounted() { + mounted () { this.getApiData(); }, methods: { - watchImg(src) { + watchImg (src) { window.open(src); }, - addStartGroupIndex() { + addStartGroupIndex () { const { startGroupIndex, groupList } = this; if (startGroupIndex < groupList.length - 9) { this.startGroupIndex = startGroupIndex + 1; @@ -460,7 +446,7 @@ export default { this.startGroupIndex = groupList.length - 9; } }, - subStartGroupIndex() { + subStartGroupIndex () { const { startGroupIndex, groupList } = this; if (startGroupIndex > 0) { this.startGroupIndex = startGroupIndex - 1; @@ -468,11 +454,11 @@ export default { this.startGroupIndex = 0; } }, - handleClose() { + handleClose () { this.$emit("close"); }, - async getApiData() { + async getApiData () { this.getComment(); await this.getInfo(); await this.getIssueInfo(); @@ -484,7 +470,7 @@ export default { }, //加载组织数据 - async getInfo() { + async getInfo () { const url = "/resi/group/topic/gettopicdetail"; const { data, code, msg } = await requestPost(url, { @@ -499,7 +485,7 @@ export default { }, //加载组织数据 - async getComment() { + async getComment () { const url = "/resi/group/comment/getcommentlistoftopic"; const { data, code, msg } = await requestPost(url, { @@ -526,7 +512,7 @@ export default { } }, - checkTopicCommentImg(index) { + checkTopicCommentImg (index) { const { comment: { srcList }, } = this; @@ -536,7 +522,7 @@ export default { }, //加载组织数据 - async getIssueInfo() { + async getIssueInfo () { const { info: { issueId }, } = this; @@ -555,7 +541,7 @@ export default { }, //加载组织数据 - async getIssueTrend() { + async getIssueTrend () { const { info: { issueId }, } = this; @@ -592,7 +578,7 @@ export default { }, //加载组织数据 - async getProjectProcess() { + async getProjectProcess () { const { issueInfo } = this; if (!issueInfo || !issueInfo.projectId) return; const url = "/gov/project/trace/processlist-v2"; @@ -615,7 +601,7 @@ export default { }, //加载组织数据 - async getProjectInfo() { + async getProjectInfo () { const { issueInfo } = this; if (!issueInfo || !issueInfo.projectId) return; const url = "/gov/project/trace/projectdetail"; @@ -631,7 +617,7 @@ export default { } }, - async getProjectCate() { + async getProjectCate () { const { issueInfo } = this; if (!issueInfo || !issueInfo.projectId) return; const url = "/gov/project/projectcategory/categorytaglist"; @@ -649,7 +635,7 @@ export default { }, //加载组织数据 - async getYanPan() { + async getYanPan () { const url = "/gov/project/project/topic-research-analysis"; if (!this.issueInfo.projectId) return; @@ -685,13 +671,13 @@ export default { } }, - toUserInfo(item) { + toUserInfo (item) { this.$router.push({ path: `/main-shuju/visual-basicinfo-people/${item.icResiUserId}`, }); }, - toProjectInfo(item) { + toProjectInfo (item) { console.log(item); this.topicId = item.topicId; }, diff --git a/src/views/modules/visual/communityGovern/cpt/project-info.vue b/src/views/modules/visual/communityGovern/cpt/project-info.vue index 2810747bc..2645a0503 100644 --- a/src/views/modules/visual/communityGovern/cpt/project-info.vue +++ b/src/views/modules/visual/communityGovern/cpt/project-info.vue @@ -173,7 +173,8 @@ 议题发起人: {{ issueInfo.issueInitiator }}
-
+
议题来源: {{ issueInfo.topicInfo.groupName }}
diff --git a/src/views/modules/visual/heart/index.vue b/src/views/modules/visual/heart/index.vue index 1267d16bb..c22f2dda4 100644 --- a/src/views/modules/visual/heart/index.vue +++ b/src/views/modules/visual/heart/index.vue @@ -2,14 +2,12 @@
时间: - +
@@ -22,13 +20,11 @@
- +
@@ -41,13 +37,11 @@
- +
@@ -60,13 +54,11 @@
- +
@@ -84,7 +76,7 @@ import dateFormat from "dai-js/tools/dateFormat"; export default { name: "heart", - data() { + data () { return { agencyId: this.$store.state.user.agencyId, areaCode: "", @@ -187,33 +179,33 @@ export default { }, watch: { - monthId() { + monthId () { this.getApiData(); }, }, - async mounted() { + async mounted () { this.userId = this.uid; await nextTick(100); this.getApiData(); }, methods: { - handleSearch() {}, + handleSearch () { }, - async getApiData() { + async getApiData () { //await this.getAgencyInfo(); this.getTb1(); this.getTb2(); this.getTb3(); }, - toUserInfo(uid) { + toUserInfo (uid) { this.$router.push({ path: `/main-shuju/visual-basicinfo-people/${uid}` }); }, // 获取当前组织信息 - async getAgencyInfo() { + async getAgencyInfo () { const { data, code, msg } = await requestPost( "/data/report/screen/agency/agencydetail-multic", { @@ -227,7 +219,7 @@ export default { }, //加载组织数据 - async getTb1() { + async getTb1 () { const { agencyId, areaCode } = this; const url = "/data/report/screen/index/advancedbranchrank"; let params = { @@ -252,7 +244,7 @@ export default { }, //加载组织数据 - async getTb2() { + async getTb2 () { const { agencyId, areaCode } = this; const url = "/data/report/screen/user/partypointrank"; let params = { @@ -282,7 +274,7 @@ export default { }, //加载组织数据 - async getTb3() { + async getTb3 () { const { agencyId, areaCode } = this; const url = "/data/report/screen/user/userpointrank/withoutpartymember"; let params = {