|
@@ -0,0 +1,120 @@
|
|
|
+<template>
|
|
|
+ <div id="xinpin">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24" class="xinpin">
|
|
|
+ <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 xinpinList" :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 :span="24" class="info">
|
|
|
+ <el-col :span="24" class="topInfo">
|
|
|
+ <el-col :span="20" class="left">{{ chuangxintitle }}</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 chuangxinList" :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: 'xinpin',
|
|
|
+ props: {
|
|
|
+ xinpinList: null,
|
|
|
+ chuangxinList: null,
|
|
|
+ },
|
|
|
+ components: {},
|
|
|
+ data: () => ({
|
|
|
+ title: '新品发布',
|
|
|
+ chuangxintitle: '创新服务',
|
|
|
+ more: require('@/assets/更多.png'),
|
|
|
+ }),
|
|
|
+ created() {},
|
|
|
+ computed: {},
|
|
|
+ methods: {},
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.xinpin {
|
|
|
+ padding: 20px;
|
|
|
+}
|
|
|
+ul {
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+li {
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+ color: #999;
|
|
|
+}
|
|
|
+.info {
|
|
|
+ width: 100%;
|
|
|
+ height: 220px;
|
|
|
+ overflow: hidden;
|
|
|
+ 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: 180px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.zixunList {
|
|
|
+ padding: 0 0 5px 0;
|
|
|
+}
|
|
|
+.zixunList .title {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #60626e;
|
|
|
+ display: inline-block;
|
|
|
+ width: 220px;
|
|
|
+ margin: 0 20px 0 0;
|
|
|
+}
|
|
|
+.zixunList .date {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #abaab8;
|
|
|
+ float: right;
|
|
|
+ max-width: 90px;
|
|
|
+}
|
|
|
+</style>
|