update:增加政策详情页面

This commit is contained in:
2021-09-15 09:34:19 +08:00
parent c293293aac
commit 3a77cda79a
3 changed files with 193 additions and 91 deletions

View File

@@ -0,0 +1,41 @@
<template>
<div class="container">
<div class="title">{{ info.title }}</div>
<div class="date">{{ info.date }}</div>
<hr />
<p class="content">{{ info.content }}</p>
<p class="content">{{ info.content }}</p>
</div>
</template>
<script>
export default {
data() {
return {
info: {
title: "国有土地征收详情与政策",
date: "2021-9-5",
content: `第一条 为了规范国有土地上房屋征收与补偿活动,维护公共利益,保障被征收房屋所有权人的合法权益,制定本条例<br/>
第二条 市、县级人民政府有关部门应当依照本条例的规定和本级人民政府规定的职责分工,互相配合,保障房屋征收与补偿工作的顺利进行`
}
};
}
};
</script>
<style lang="less" scoped>
.container {
padding: 20px;
font-size: 14px;
.title {
text-align: center;
font-weight: bolder;
}
.date {
text-align: center;
margin: 10px 0;
}
.content {
text-indent: 2em;
line-height: 2.5;
}
}
</style>