宣传资讯
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<div class="news-detail" v-if="pageShow">
|
<div class="news-detail" v-if="pageShow">
|
||||||
<div class="detail-top" :class="[info.videoFile ? 'detail-top__active' : '']">
|
<div class="detail-top" :class="[info.videoFile ? 'detail-top__active' : '']">
|
||||||
<h2>{{ info.title }}</h2>
|
<h2>{{ info.title }}</h2>
|
||||||
<p><span>通知公告</span>{{ $dateFormat(info.createTime) }}</p>
|
<p><span>{{ info.categoryName }}</span>{{ $dateFormat(info.createTime) }}</p>
|
||||||
<u-parse :html="info.content" style="margin-top: 20px;"/>
|
<u-parse :html="info.content" style="margin-top: 20px;"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="accessory-list" v-if="info.files.length">
|
<div class="accessory-list" v-if="info.files.length">
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
<div class="item" v-for="(item,index) in newsList" :key="index" v-if="newsList.length" @click="toDetail(item.id)">
|
<div class="item" v-for="(item,index) in newsList" :key="index" v-if="newsList.length" @click="toDetail(item.id)">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<h2>{{ item.title }}</h2>
|
<h2>{{ item.title }}</h2>
|
||||||
<p><span>通知公告</span>{{ item.createTime }}</p>
|
<p><span>{{ item.categoryName }}</span>{{ item.createTime }}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="right" v-if="item.pictureUrl.length">
|
<div class="right" v-if="item.pictureUrl.length">
|
||||||
<img :src="item.pictureUrl" alt="">
|
<img :src="item.pictureUrl" alt="">
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<template>
|
||||||
|
<div class="AppPropagandaStatistics">
|
||||||
|
<!-- <ai-card>111</ai-card> -->
|
||||||
|
<AiOpenData></AiOpenData>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'AppPropagandaStatistics',
|
||||||
|
appName: '宣发统计',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
document.title = '宣发统计'
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user