30 lines
338 B
Vue
30 lines
338 B
Vue
<template>
|
|
<div class="AppAnnounceStatistics">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppAnnounceStatistics',
|
|
|
|
label: '协同宣发统计',
|
|
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AppAnnounceStatistics {
|
|
height: 100%;
|
|
}
|
|
</style>
|