123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <template>
- <div id="notice">
- <el-row>
- <el-col :span="24" class="info">
- <el-col :span="24" class="topInfo">
- <el-col :span="20" class="left">{{ title }}</el-col>
- <el-col :span="4" class="more">
- <el-link :underline="false" @click="moreClick()"><el-image :src="more"></el-image></el-link>
- </el-col>
- </el-col>
- <el-col :span="24" class="list">
- <ul>
- <li
- class="zixunList"
- v-for="(item, index) in tongzhiList"
- :key="index"
- @click="$router.push({ path: '/government/governmentDetail', query: { id: item.id } })"
- >
- <el-link :underline="false">
- <span class="title textOver">{{ item.title }}</span>
- <span class="date textOver">{{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}</span>
- </el-link>
- </li>
- </ul>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'notice',
- props: {
- tongzhiList: null,
- },
- components: {},
- data: () => ({
- title: '通知公告',
- more: require('@/assets/更多.png'),
- }),
- created() {},
- computed: {},
- methods: {
- moreClick() {
- this.$router.push({ path: '/government/governmentList' });
- },
- },
- };
- </script>
- <style lang="less" scoped>
- ul {
- padding: 0;
- margin: 0;
- }
- li {
- padding: 0;
- margin: 0;
- color: #999;
- }
- .info {
- width: 100%;
- height: 320px;
- overflow: hidden;
- padding: 20px;
- background-color: #fff;
- }
- .topInfo {
- height: 30px;
- line-height: 30px;
- margin: 0 0 10px 0;
- }
- .topInfo .left {
- font-size: 22px;
- color: #2c3350;
- font-weight: bold;
- }
- .topInfo .more {
- height: 30px;
- text-align: right;
- padding: 6px 0;
- }
- .list {
- padding: 0 0 0 20px;
- height: 230px;
- overflow: hidden;
- }
- .zixunList {
- padding: 0 0 6px 0;
- }
- .zixunList .title {
- font-size: 14px;
- color: #60626e;
- display: inline-block;
- width: 230px;
- margin: 0 20px 0 0;
- }
- .zixunList .date {
- font-size: 14px;
- color: #abaab8;
- float: right;
- max-width: 90px;
- }
- </style>
|