|
|
@ -78,7 +78,7 @@ |
|
|
|
<span>居民议事</span> |
|
|
|
<span @click="$router.push('/discussion')">更多</span> |
|
|
|
</div> |
|
|
|
<div class="activity_content flex" v-for="(item, index) in eventList"> |
|
|
|
<div class="activity_content flex" v-for="(item, index) in eventList" :key="index" @click="$router.push({ path: `/discusionDetail`,query: { eventId:item.eventId} })"> |
|
|
|
<div class="flex flex-y flex1 flex-end" style="overflow: hidden;"> |
|
|
|
<span class="van-multi-ellipsis--l2"> |
|
|
|
{{ item.eventContent }} |
|
|
@ -162,7 +162,7 @@ export default { |
|
|
|
{ |
|
|
|
imgSrc: require('@/assets/images/nav/4.png'), |
|
|
|
title: '满意度测评', |
|
|
|
path: 'notice' |
|
|
|
path: 'mySatisfaction' |
|
|
|
}, |
|
|
|
{ |
|
|
|
imgSrc: require('@/assets/images/nav/5.png'), |
|
|
@ -194,6 +194,9 @@ export default { |
|
|
|
this.day = this.$dayjs(date).format('MM-DD'); |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
toDetail(item){ |
|
|
|
this.$router.push({name:'communityPublicityDetail',query:{item:JSON.stringify(item)}}) |
|
|
|
}, |
|
|
|
async querystaffmessage(){ |
|
|
|
let parm = { |
|
|
|
agencyId: this.agencyId, |
|
|
@ -244,7 +247,8 @@ export default { |
|
|
|
startTime: "", |
|
|
|
endTime: "", |
|
|
|
address: "", |
|
|
|
assistingParty: "" |
|
|
|
assistingParty: "", |
|
|
|
online:1 |
|
|
|
} |
|
|
|
let res = await communityActivity(parm) |
|
|
|
if (res) { |
|
|
@ -267,7 +271,7 @@ export default { |
|
|
|
let parm = { |
|
|
|
pageSize: 10, |
|
|
|
pageNo: 1, |
|
|
|
status: 0, |
|
|
|
status: 1, |
|
|
|
tagName: null |
|
|
|
} |
|
|
|
let res = await advertisingTag(parm) |
|
|
@ -300,7 +304,11 @@ export default { |
|
|
|
this.communityPublicity() |
|
|
|
}, |
|
|
|
filterTagId(tagId){ |
|
|
|
return this.tagList.filter(item=>item.id === tagId)[0].tagName || '--'; |
|
|
|
if(this.tagList.filter(item=>item.id === tagId)[0]){ |
|
|
|
return this.tagList.filter(item=>item.id === tagId)[0].tagName; |
|
|
|
}else{ |
|
|
|
return '--'; |
|
|
|
} |
|
|
|
}, |
|
|
|
handelClickJump(path,item) { |
|
|
|
if (path === 'event' || path === 'service' || path === 'activity') { |
|
|
|