135 lines
2.8 KiB
Vue
135 lines
2.8 KiB
Vue
<template>
|
|
<div class="detail">
|
|
<div class="header">
|
|
<img :src="`${$cdn}video/play-icon.png`" alt="">
|
|
<div class="right">
|
|
<h2>{{info.name}}</h2>
|
|
<p>{{info.createTime}}</p>
|
|
</div>
|
|
</div>
|
|
<div class="content" v-if="info.content">{{info.content}}</div>
|
|
<div class="footer-bottom"></div>
|
|
<div class="footer">
|
|
<div @click="del">删除素材</div>
|
|
<div class="confirm" @click="toAddBroadcast()">发布广播</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "detail",
|
|
data() {
|
|
return {
|
|
info: {},
|
|
id: ''
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
this.id = option.id
|
|
this.getDetail()
|
|
},
|
|
|
|
onShow() {
|
|
document.title = '媒资管理'
|
|
},
|
|
|
|
methods: {
|
|
getDetail() {
|
|
this.$http.post(`/app/appdlbresource/queryDetailById?id=${this.id}`).then(res => {
|
|
if (res.code == 0) {
|
|
this.info = res.data
|
|
}
|
|
})
|
|
},
|
|
del() {
|
|
this.$confirm(`是否删除该条素材?`).then(() => {
|
|
this.$http.post(`/app/appdlbresource/delete?id=${this.id}`).then((res) => {
|
|
if (res.code == 0) {
|
|
this.$u.toast('删除成功')
|
|
uni.$emit('getList')
|
|
uni.navigateBack()
|
|
}
|
|
})
|
|
})
|
|
},
|
|
toAddBroadcast() {
|
|
uni.navigateTo({ url: `../addPlay?mediaId=${this.info.id}&mediaName=${this.info.name}` })
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.detail {
|
|
padding-top: 8px;
|
|
.header {
|
|
margin: 0 0 32px 0;
|
|
width: 100%;
|
|
padding: 20px 30px 16px 30px;
|
|
box-sizing: border-box;
|
|
background: #FFF;
|
|
box-shadow: inset 0px 0px 0px 0px #D8DDE6;
|
|
display: flex;
|
|
img {
|
|
width: 56px;
|
|
height: 56px;
|
|
margin-right: 16px;
|
|
}
|
|
.right {
|
|
width: calc(100% - 72px);
|
|
font-family: PingFang-SC-Medium, PingFang-SC;
|
|
h2{
|
|
width: 100%;
|
|
font-size: 34px;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 48px;
|
|
word-break: break-all;
|
|
margin-bottom: 8px;
|
|
}
|
|
p{
|
|
font-size: 26px;
|
|
font-weight: 500;
|
|
color: #999;
|
|
line-height: 36px;
|
|
}
|
|
}
|
|
}
|
|
.content{
|
|
padding: 32px;
|
|
font-size: 32px;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
color: #333;
|
|
line-height: 44px;
|
|
word-break: break-all;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.footer-bottom{
|
|
height: 120px;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 112px;
|
|
line-height: 112px;
|
|
display: flex;
|
|
div{
|
|
flex: 1;
|
|
font-size: 36px;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #F46;
|
|
background-color: #fff;
|
|
text-align: center;
|
|
}
|
|
.confirm{
|
|
background: #3975C6;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
</style>
|