Browse Source

修改地址

shibei_master
jiangyy 4 years ago
committed by jianjun
parent
commit
9cc09ca3e1
  1. 2
      src/views/modules/communityService/shzz/cpts/edit.vue
  2. 16
      src/views/modules/visual/communityGovern/cpt/issue-info.vue

2
src/views/modules/communityService/shzz/cpts/edit.vue

@ -366,7 +366,7 @@ export default {
}, },
// //
async loadStaff() { async loadStaff() {
const url = "/data/aggregator/org/stafflist"; const url = "/data/aggregator/org/currentOrgStafflist";
let params = { let params = {
orgId: this.agencyId, orgId: this.agencyId,

16
src/views/modules/visual/communityGovern/cpt/issue-info.vue

@ -23,7 +23,8 @@
<span>{{ info.issueSuggestion }}</span> <span>{{ info.issueSuggestion }}</span>
</div> </div>
<div class="info-prop" v-if="info.topicInfo"> <div class="info-prop"
v-if="info.topicInfo">
<span class="info-title-2">话题内容</span> <span class="info-title-2">话题内容</span>
<div> <div>
<div>{{ info.topicInfo.topicContent }}</div> <div>{{ info.topicInfo.topicContent }}</div>
@ -43,7 +44,8 @@
<span class="info-title-2">所属网格</span> <span class="info-title-2">所属网格</span>
<span>{{ info.belongsGridName}}</span> <span>{{ info.belongsGridName}}</span>
</div> </div>
<div class="info-prop" v-if="info.topicInfo"> <div class="info-prop"
v-if="info.topicInfo">
<span class="info-title-2">话题发表人</span> <span class="info-title-2">话题发表人</span>
<span>{{ info.topicInfo.publishedUser}}</span> <span>{{ info.topicInfo.publishedUser}}</span>
</div> </div>
@ -51,11 +53,13 @@
<span class="info-title-2">议题发起人</span> <span class="info-title-2">议题发起人</span>
<span>{{ info.issueInitiator}}</span> <span>{{ info.issueInitiator}}</span>
</div> </div>
<div class="info-prop" v-if="info.topicInfo"> <div class="info-prop"
v-if="info.topicInfo">
<span class="info-title-2">话题来源</span> <span class="info-title-2">话题来源</span>
<span>{{ info.topicInfo.groupName}}</span> <span>{{ info.topicInfo.groupName}}</span>
</div> </div>
<div class="info-prop" v-if="info.topicInfo"> <div class="info-prop"
v-if="info.topicInfo">
<span class="info-title-2">话题发表时间</span> <span class="info-title-2">话题发表时间</span>
<span>{{ info.topicInfo.publishedTimeShow}}</span> <span>{{ info.topicInfo.publishedTimeShow}}</span>
</div> </div>
@ -181,8 +185,10 @@ export default {
if (code === 0) { if (code === 0) {
this.info = data this.info = data
this.info.topicInfo.publishedTimeShow = dateFormat(new Date(this.info.topicInfo.publishedTime * 1000), "yyyy-MM-dd") if (this.info.topicInfo && this.info.topicInfo.publishedTime) {
this.info.topicInfo.publishedTimeShow = dateFormat(new Date(this.info.topicInfo.publishedTime * 1000), "yyyy-MM-dd")
}
} else { } else {
this.$message.error(msg); this.$message.error(msg);
} }

Loading…
Cancel
Save