Files
dvcp_v2_wxcp_app/src/sass/AppNotification/detail.vue

350 lines
7.3 KiB
Vue
Raw Normal View History

2021-12-15 14:37:20 +08:00
<template>
<div class="detail" v-if="pageShow">
2022-01-20 10:00:16 +08:00
<template v-if="detailObj.status != 2 && detailObj.id">
2021-12-15 14:37:20 +08:00
<div class="card">
<header>{{ detailObj.title }}</header>
<u-gap height="16"></u-gap>
<u-row>
<span>发布人</span>
<span v-if="detailObj.createUserId">
<AiOpenData type="userName" :openid="detailObj.createUserId"></AiOpenData>
</span>
</u-row>
<u-gap height="8"></u-gap>
<u-gap height="8"></u-gap>
<u-row>
<span>发布日期</span>
<span>{{ detailObj.releaseTime }}</span>
</u-row>
<u-gap height="8"></u-gap>
</div>
<div class="card">
<div class="label">公告内容</div>
<u-parse :html="detailObj.content"></u-parse>
</div>
<div class="card" style="padding-top: 0" v-if="detailObj.files && detailObj.files.length">
<div class="label">相关附件</div>
<div class="file" v-for="(item,index) in detailObj.files" :key="index" @click="preFile(item)">
<u-row justify="between">
<label class="left">
<img :src="$cdn + 'common/appendix.png'" alt="">
<span>{{ item.name }}.{{ item.postfix }}</span>
</label>
<span>{{ (item.size / 1024).toFixed(2) }}KB</span>
</u-row>
</div>
</div>
<div class="card" @click="handleClick">
<u-row justify="between" class="item">
<span>接收对象</span>
<div class="right">
<em>{{ detailObj.readNum }}</em>已读
<em>{{ detailObj.unReadNum }}</em>未读
<div class="arrow"></div>
</div>
</u-row>
</div>
</template>
2022-01-20 10:00:16 +08:00
<AiEmpty description="该通知已撤回" v-if="detailObj.status == 2" />
<AiEmpty description="该通知不存在" v-if="!detailObj.id" />
2021-12-15 14:37:20 +08:00
</div>
</template>
<script>
import {mapActions} from "vuex";
export default {
name: "detail",
data() {
return {
detailObj: {},
id: null,
pageShow: false,
flag: false,
}
},
onLoad(opt) {
this.id = opt.id;
this.flag = opt.flag;
},
created() {
2022-01-20 11:22:22 +08:00
this.$loading()
2021-12-15 14:37:20 +08:00
this.injectJWeixin(['sendChatMessage']).then(() => {
this.getDetail()
})
},
onShow() {
document.title = "公告详情";
wx.hideOptionMenu();
},
methods: {
...mapActions(['previewFile', 'injectJWeixin']),
preFile(e) {
if ([".jpg", ".png", ".gif"].includes(e.postfix.toLowerCase())) {
uni.previewImage({
current: e.url,
urls: [e.url]
})
} else {
this.previewFile({...e})
}
},
getDetail() {
this.$http.post("/app/appannouncement/detail", null, {
params: {
id: this.id,
detail: this.flag
}
}).then(res => {
2022-01-20 11:22:22 +08:00
uni.hideLoading()
2021-12-15 14:37:20 +08:00
if (res && res.data) {
this.detailObj = res.data;
this.pageShow = true
}
2022-01-20 10:00:16 +08:00
}).catch(() => {
this.pageShow = true
2021-12-15 14:37:20 +08:00
})
},
handleClick() {
uni.navigateTo({
url: "/apps/AppNotification/read?id=" + this.id,
})
}
},
}
</script>
<style lang="scss" scoped>
.detail {
min-height: 100%;
background-color: #F5F5F5;
padding-bottom: 140px;
2022-01-19 19:52:27 +08:00
box-sizing: border-box;
2021-12-15 14:37:20 +08:00
::v-deep .content {
padding: 0;
}
.card {
background-color: #FFFFFF;
margin-bottom: 8px;
box-sizing: border-box;
padding: 16px 32px;
header {
font-size: 40px;
font-weight: 600;
color: #333333;
line-height: 64px;
letter-spacing: 1px;
}
.u-row {
& > div {
border-radius: 50%;
text-align: center;
font-size: 22px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
}
& > span {
font-size: 30px;
color: #343D65;
line-height: 48px;
}
& > span:last-child {
font-size: 30px;
/*color: #343D65;*/
/*margin-left: 16px;*/
line-height: 48px;
}
.title {
width: 490px;
height: 112px;
display: flex;
align-items: center;
font-size: 32px;
color: #333333;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.right {
font-size: 28px;
display: flex;
align-items: center;
color: #666666;
.arrow {
width: 16px;
height: 16px;
border-top: 3px solid #CCCCCC;
border-right: 3px solid #CCCCCC;
transform: rotate(45deg);
}
}
}
.item {
position: relative;
height: 80px;
}
& > span {
font-size: 32px;
color: #333333;
line-height: 48px;
letter-spacing: 1px;
display: inline-block;
}
.label {
height: 80px;
font-size: 32px;
color: #333333;
display: flex;
align-items: center;
margin-bottom: 16px;
& > em {
font-style: normal;
font-size: 32px;
color: #1365DD;
}
}
.file {
height: 128px;
background: #FFFFFF;
border-radius: 8px;
border: 1px solid #CCCCCC;
box-sizing: border-box;
padding: 0 16px;
margin-bottom: 32px;
& > .u-row {
height: 100%;
.left {
width: 476px;
display: flex;
align-items: center;
word-break: break-all;
& > img {
flex-shrink: 0;
width: 96px;
height: 96px;
}
& > span {
font-size: 32px;
color: #333333;
display: inline-block;
line-height: 44px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
}
& > span {
font-size: 28px;
color: #999999;
}
}
}
.active {
background-color: #F3F6F9;
}
& > text {
width: 100%;
display: inline-block;
font-size: 30px;
color: #649EFD;
text-align: center;
}
.progress {
height: 12px;
background: #F2F4FC;
border-radius: 12px;
position: relative;
margin: 16px 0 64px 0;
.pro-active {
height: 12px;
background: #639EFD;
border-radius: 12px;
position: absolute;
left: 0;
top: 0;
}
}
em {
font-style: normal;
font-size: 28px;
color: #1365DD;
}
::v-deep .u-collapse {
position: relative;
&:after {
content: "";
width: 718px;
height: 1px;
background-color: rgba(216, 221, 230, 0.5);
position: absolute;
left: 0;
bottom: 0;
}
.u-collapse-head {
padding: 40px 0;
}
.u-collapse-content {
font-size: 32px;
color: #333333;
line-height: 48px;
letter-spacing: 1px;
}
}
}
.footer {
height: 112px;
width: 100%;
position: fixed;
left: 0;
bottom: 0;
background: #1365DD;
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
color: #FFFFFF;
}
}
</style>