|
@@ -247,12 +247,13 @@
|
|
|
:houseDataNames="houseDataNames"
|
|
|
:houseDataNamesPeople="houseDataNamesPeople"
|
|
|
:userType="userType"
|
|
|
+ :showrightPhone="true"
|
|
|
ref="previeInform"
|
|
|
></previe-inform>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="dialog-right">
|
|
|
+ <div class="dialog-right" v-if="showDetail">
|
|
|
<div class="dialog-right-top">
|
|
|
<img src="../../assets/img/phoneHeader.png" alt="" />
|
|
|
</div>
|
|
@@ -283,12 +284,12 @@
|
|
|
<div class="dialog-right-time" v-else>{{ new Date() | filterTime }}</div>
|
|
|
<div></div>
|
|
|
<div class="content">
|
|
|
- <div class="content-text" v-if="showDetail">
|
|
|
+ <div class="content-text">
|
|
|
<div v-html="ruleForm.editorContents" id="content" />
|
|
|
</div>
|
|
|
- <div class="content-text" v-else>
|
|
|
+ <!-- <div class="content-text" v-else>
|
|
|
<div v-html="contentHtml" id="content" />
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<div class="content-inform">
|
|
|
<!-- <div>{{ !showDetail ? rowDetail.communityName : popCommunityName }}</div>
|
|
|
<div v-if="rowDetail">{{ rowDetail.pubDate }}</div>
|
|
@@ -531,6 +532,7 @@ export default {
|
|
|
methods: {
|
|
|
// 弹框关闭事件
|
|
|
handleDialogClose(e) {
|
|
|
+ this.showDetail = false;
|
|
|
// console.log('handleDialogClose=========', e);
|
|
|
if (!!this.$refs.previeInform) {
|
|
|
this.$refs.previeInform.closeDialog();
|
|
@@ -722,7 +724,7 @@ export default {
|
|
|
this.showUploadImage = false;
|
|
|
this.ruleForm.issueRoom.staff = false;
|
|
|
this.ruleForm.issueRoom.checkAll = false;
|
|
|
- // this.showDetail = false;
|
|
|
+ this.showDetail = false;
|
|
|
this.filePath = '';
|
|
|
this.uploadFileUrl = [];
|
|
|
this.fileList = [];
|
|
@@ -1047,6 +1049,7 @@ export default {
|
|
|
|
|
|
/** 查看详情*/
|
|
|
clickDatail(row) {
|
|
|
+ this.showDetail = false;
|
|
|
// 弹框关闭事件
|
|
|
// this.rowDetail = [];
|
|
|
this.$http.get('/sc-community-web/notice/find/' + row.id).then((res) => {
|
|
@@ -1085,7 +1088,7 @@ export default {
|
|
|
this.successImageLists = JSON.parse(res.data.themePictrue);
|
|
|
this.contentHtml = res.data.content;
|
|
|
this.centerDialogVisible = true;
|
|
|
- this.showDetail = false;
|
|
|
+ // this.showDetail = false;
|
|
|
if (!!this.$refs.previeInform) {
|
|
|
this.$refs.previeInform.closeDialog();
|
|
|
}
|