修改已知问题

This commit is contained in:
qq787203167
2022-05-25 10:45:34 +08:00
parent 8859ccac50
commit 2101dc6033
12 changed files with 70 additions and 52 deletions
+12 -6
View File
@@ -6,11 +6,11 @@
{{this.$route.query.msgContent}}
</span>
<span class="box-header-right-text">
{{$t('NotificationTime')}}: {{this.$route.query.sendTime}}
{{$t('NotificationTime')}}: {{this.$route.query.sendTime || this.$route.query.createTime}}
</span>
</div>
<div class="box-content" v-html="this.$route.query.msgContentInfo">
<!-- {{this.$route.query.msgContentInfo}}-->
<div class="box-content" v-html="this.$route.query.msgContentInfo">
<!-- {{this.$route.query.msgContentInfo}}-->
</div>
</div>
</template>
@@ -20,9 +20,15 @@
name: 'MessageDetails',
methods: {
iconClick() {
this.$router.push({
path: '/isps/userAnnouncement'
})
if (this.$route.query.isCustomContentList) {
this.$router.push({
path: '/customContentList'
})
} else {
this.$router.push({
path: '/isps/userAnnouncement'
})
}
}
}
}
@@ -201,7 +201,7 @@
that.$message.success(that.$t('OperationSuccessful'))
that.loadData()
} else {
that.$message.success(that.$t('operationFailed'))
that.$message.warning(that.$t('operationFailed'))
}
})
}