123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <template>
- <div id="zixun">
- <el-row>
- <el-col :span="24">
- <el-col :span="24" class="search">
- <el-col :span="15" class="input">
- <el-input v-model="input" placeholder="请输入搜索关键词"></el-input>
- </el-col>
- <el-col :span="8" class="btn">
- <el-select v-model="region" placeholder="请选择搜索条件">
- <el-option label="科技政务" value="zhengwu"></el-option>
- <el-option label="科技政策" value="zhengce"></el-option>
- </el-select>
- <i class="el-icon-search icons"></i>
- </el-col>
- </el-col>
- <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"><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 zixunList" :key="index">
- <el-link :underline="false">
- <span class="title textOver">{{ item.title }}</span>
- <span class="date textOver">{{ item.date }}</span>
- </el-link>
- </li>
- </ul>
- </el-col>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'zixun',
- props: {
- zixunList: null,
- },
- components: {},
- data: () => ({
- more: require('@/assets/更多.png'),
- input: '',
- select: '',
- region: '',
- title: '最新资讯',
- }),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- ul {
- padding: 0;
- margin: 0;
- }
- li {
- padding: 0;
- margin: 0;
- color: #999;
- }
- .search {
- width: 100%;
- height: 80px;
- overflow: hidden;
- margin: 0 0 10px 0;
- padding: 20px;
- background-color: #fff;
- }
- .search .input {
- margin: 0 5px 0 0;
- }
- /deep/.el-input__inner {
- background-color: #f3f3f3;
- border-radius: 0;
- border: none;
- }
- .search .btn {
- width: 205px;
- height: 40px;
- }
- .search .btn .el-select {
- width: 160px;
- background-color: #f3f3f3;
- }
- /deep/.el-select-dropdown__item {
- padding: 0 15px;
- }
- .search .btn .icons {
- width: 45px;
- color: #4978bb;
- font-size: 25px;
- font-weight: bold;
- text-align: center;
- }
- .info {
- width: 100%;
- height: 310px;
- 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 4px 0;
- }
- .zixunList .title {
- font-size: 14px;
- color: #60626e;
- display: inline-block;
- width: 440px;
- margin: 0 20px 0 0;
- }
- .zixunList .date {
- font-size: 14px;
- color: #abaab8;
- float: right;
- max-width: 90px;
- }
- </style>
|