公告详情
This commit is contained in:
parent
a85c078cc8
commit
ae0a18ab4e
|
@ -3,7 +3,22 @@
|
||||||
<template slot="extra">
|
<template slot="extra">
|
||||||
<a-button size="small" @click="close">返回</a-button>
|
<a-button size="small" @click="close">返回</a-button>
|
||||||
</template>
|
</template>
|
||||||
|
<div class="page-panel__body">
|
||||||
|
<div class="article">
|
||||||
|
<h1 class="article-title">{{model.title}}</h1>
|
||||||
|
<div class="article-attr">
|
||||||
|
<div class="article-attr__item">
|
||||||
|
<span>{{model.createOrgName}}</span>
|
||||||
|
</div>
|
||||||
|
<div class="article-attr__item">
|
||||||
|
<span>({{model.createTime | moment}})</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="article-body">
|
||||||
<div v-html="model.content"></div>
|
<div v-html="model.content"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</a-card>
|
</a-card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -30,3 +45,16 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.article {
|
||||||
|
.article-attr {
|
||||||
|
color: black;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-title {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue