|
|
@@ -1,238 +1,238 @@
|
|
|
-<template>
|
|
|
- <div id="News">
|
|
|
- <div class="banner container-fuild text-center">公司动态</div>
|
|
|
- <div class="container">
|
|
|
- <div class="row news-container">
|
|
|
- <ul class="news-container container-fuild">
|
|
|
- <li v-for="(item,index) in newsList" :key="index" class="wow fadeIn">
|
|
|
- <div class="content">
|
|
|
- <p>{{ item.title }}</p>
|
|
|
- <p>{{ item.introduce }}</p>
|
|
|
- </div>
|
|
|
- <div class="time">
|
|
|
- <p>{{ item.date }}</p>
|
|
|
- <span>{{ item.year }}</span>
|
|
|
- </div>
|
|
|
- <div class="circle">
|
|
|
- <img src="@/assets/img/circle.png">
|
|
|
- <i class="line center-block"></i>
|
|
|
- </div>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- <div class="contaianer-fuild text-center more">
|
|
|
- <i class="glyphicon glyphicon-th"></i>
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
-
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-</template>
|
|
|
-<script>
|
|
|
-import {WOW} from 'wowjs';
|
|
|
-
|
|
|
-export default {
|
|
|
- name: 'News',
|
|
|
- data() {
|
|
|
- return {
|
|
|
- newsList: [
|
|
|
- {
|
|
|
- id: '001',
|
|
|
- introduce: '配合和参与上海测绘院及上海建科集团数字化转型发展,推荐大疆产品在测绘及工程建设城市运维领域的应用',
|
|
|
- date: '07-18',
|
|
|
- year: '2023年'
|
|
|
- }, {
|
|
|
- id: '002',
|
|
|
- introduce: '完成上海化工区智能无人系统应用监管研究课题,帮助园区管委会和相关企业规范开展无人系统应用服务业务',
|
|
|
- date: '09-27',
|
|
|
- year: '2022年'
|
|
|
- }, {
|
|
|
- id: '003',
|
|
|
- introduce: '参与上海宝武吴淞园、上海化工区等大型工业园区无人机应用项目的实验和监管论证,推广大疆行业应用产品和服务',
|
|
|
- date: '03-16',
|
|
|
- year: '2020年'
|
|
|
- }, {
|
|
|
- id: '004',
|
|
|
- introduce: '完成对口支援日喀则和果乐地区创客空间示范项目建设,设立创客师资上海培训基地,推广3D打印和无人机课程',
|
|
|
- date: '06-08',
|
|
|
- year: '2018年'
|
|
|
- }, {
|
|
|
- id: '005',
|
|
|
- introduce: '公司由北航和复旦校友发起创立,推出飞天网创客空间,成为上海众创空间联盟首批会员单位,服务航空科技爱好者',
|
|
|
- date: '05-24',
|
|
|
- year: '2014年'
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- var wow = new WOW();
|
|
|
- wow.init();
|
|
|
- },
|
|
|
-}
|
|
|
-</script>
|
|
|
-<style scoped>
|
|
|
-#News {
|
|
|
- height: 100%;
|
|
|
-}
|
|
|
-
|
|
|
-.banner {
|
|
|
- color: #fff;
|
|
|
- font-size: 30px;
|
|
|
- height: 150px;
|
|
|
- line-height: 150px;
|
|
|
- background-image: url("~assets/img/dji.jpg");
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: cover;
|
|
|
- background-attachment: scroll;
|
|
|
- background-position: center center;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container {
|
|
|
- margin: 20px 20px 0 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.nav > a {
|
|
|
- display: inline-block;
|
|
|
- text-decoration: none;
|
|
|
- width: 120px;
|
|
|
- height: 45px;
|
|
|
- line-height: 45px;
|
|
|
- color: #333;
|
|
|
- border: 1px solid #333;
|
|
|
-}
|
|
|
-
|
|
|
-.nav > a:hover {
|
|
|
- color: #1e73be;
|
|
|
- border-color: #1e73be;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container {
|
|
|
- overflow: hidden;
|
|
|
- margin-bottom: 0;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li {
|
|
|
- width: 55.62%;
|
|
|
- height: 120px;
|
|
|
- float: left;
|
|
|
- color: #333;
|
|
|
- text-align: right;
|
|
|
- border-left: 1px solid transparent;
|
|
|
- border-right: 1px solid transparent;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li:hover {
|
|
|
- color: #1e73be;
|
|
|
- border: 1px solid #1e73be;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li:nth-of-type(2n) {
|
|
|
- float: right;
|
|
|
- text-align: left;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li > .content {
|
|
|
- width: 60%;
|
|
|
- float: left;
|
|
|
- padding: 10px 0;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li > .content > p {
|
|
|
- margin: 0 12px;
|
|
|
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
- font-weight: 360;
|
|
|
- font-size: 14px;
|
|
|
- color: #2f2f2f;
|
|
|
- line-height: 2.2rem;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li > .time {
|
|
|
- width: 20%;
|
|
|
- float: left;
|
|
|
- padding: 0;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li > .time > p {
|
|
|
- font-size: 24px;
|
|
|
- margin: 10px 0;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li > .circle {
|
|
|
- width: 20%;
|
|
|
- height: 100%;
|
|
|
- float: left;
|
|
|
- position: relative;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li > .circle > img {
|
|
|
- position: absolute;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
- right: 0;
|
|
|
- bottom: 0;
|
|
|
- margin: auto;
|
|
|
- width: 20px;
|
|
|
- height: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li > .circle > i {
|
|
|
- display: block;
|
|
|
- width: 1px;
|
|
|
- height: 100%;
|
|
|
- background: #707070;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li:nth-of-type(2n) > .content {
|
|
|
- float: right;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li:nth-of-type(2n) > .time {
|
|
|
- float: right;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li:nth-of-type(2n) > .circle {
|
|
|
- float: right;
|
|
|
-}
|
|
|
-
|
|
|
-.news-container > li:nth-of-type(1) > .circle > i {
|
|
|
- height: 50%;
|
|
|
- position: absolute;
|
|
|
- top: 50%;
|
|
|
- left: 50%;
|
|
|
-}
|
|
|
-
|
|
|
-.more {
|
|
|
- font-size: 25px;
|
|
|
- color: #707070;
|
|
|
-}
|
|
|
-
|
|
|
-.more > i {
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-@media screen and (max-width: 767px) {
|
|
|
- .news-container > li {
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
-
|
|
|
- .news-container > li > .content {
|
|
|
- width: 70%;
|
|
|
- text-align: left;
|
|
|
- float: right;
|
|
|
- }
|
|
|
-
|
|
|
- .news-container > li > .time {
|
|
|
- width: 30%;
|
|
|
- text-align: left;
|
|
|
- float: right;
|
|
|
- }
|
|
|
-
|
|
|
- .news-container > li > .circle {
|
|
|
- display: none;
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|
|
|
-
|
|
|
+<template>
|
|
|
+ <div id="News">
|
|
|
+ <div class="banner container-fuild text-center">公司动态</div>
|
|
|
+ <div class="container">
|
|
|
+ <div class="row news-container">
|
|
|
+ <ul class="news-container container-fuild">
|
|
|
+ <li v-for="(item,index) in newsList" :key="index" class="wow fadeIn">
|
|
|
+ <div class="content">
|
|
|
+ <p>{{ item.title }}</p>
|
|
|
+ <p>{{ item.introduce }}</p>
|
|
|
+ </div>
|
|
|
+ <div class="time">
|
|
|
+ <p>{{ item.date }}</p>
|
|
|
+ <span>{{ item.year }}</span>
|
|
|
+ </div>
|
|
|
+ <div class="circle">
|
|
|
+ <img src="@/assets/img/circle.png">
|
|
|
+ <i class="line center-block"></i>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <div class="contaianer-fuild text-center more">
|
|
|
+ <i class="glyphicon glyphicon-th"></i>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import {WOW} from 'wowjs';
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'News',
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ newsList: [
|
|
|
+ {
|
|
|
+ id: '001',
|
|
|
+ introduce: '配合和参与上海测绘院及上海建科集团数字化转型发展,推荐大疆产品在测绘及工程建设城市运维领域的应用',
|
|
|
+ date: '07-18',
|
|
|
+ year: '2023年'
|
|
|
+ }, {
|
|
|
+ id: '002',
|
|
|
+ introduce: '完成上海化工区智能无人系统应用监管研究课题,帮助园区管委会和相关企业规范开展无人系统应用服务业务',
|
|
|
+ date: '09-27',
|
|
|
+ year: '2022年'
|
|
|
+ }, {
|
|
|
+ id: '003',
|
|
|
+ introduce: '参与上海宝武吴淞园、上海化工区等大型工业园区无人机应用项目的实验和监管论证,推广大疆行业应用产品和服务',
|
|
|
+ date: '03-16',
|
|
|
+ year: '2020年'
|
|
|
+ }, {
|
|
|
+ id: '004',
|
|
|
+ introduce: '完成对口支援日喀则和果乐地区创客空间示范项目建设,设立创客师资上海培训基地,推广3D打印和无人机课程',
|
|
|
+ date: '06-08',
|
|
|
+ year: '2018年'
|
|
|
+ }, {
|
|
|
+ id: '005',
|
|
|
+ introduce: '公司由北航和复旦校友发起创立,推出飞天网创客空间,成为上海众创空间联盟首批会员单位,服务航空科技爱好者',
|
|
|
+ date: '05-24',
|
|
|
+ year: '2014年'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ var wow = new WOW();
|
|
|
+ wow.init();
|
|
|
+ },
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style scoped>
|
|
|
+#News {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.banner {
|
|
|
+ color: #fff;
|
|
|
+ font-size: 30px;
|
|
|
+ height: 150px;
|
|
|
+ line-height: 150px;
|
|
|
+ background-image: url("~@/assets/img/dji.jpg");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ background-attachment: scroll;
|
|
|
+ background-position: center center;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container {
|
|
|
+ margin: 20px 20px 0 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.nav > a {
|
|
|
+ display: inline-block;
|
|
|
+ text-decoration: none;
|
|
|
+ width: 120px;
|
|
|
+ height: 45px;
|
|
|
+ line-height: 45px;
|
|
|
+ color: #333;
|
|
|
+ border: 1px solid #333;
|
|
|
+}
|
|
|
+
|
|
|
+.nav > a:hover {
|
|
|
+ color: #1e73be;
|
|
|
+ border-color: #1e73be;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container {
|
|
|
+ overflow: hidden;
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li {
|
|
|
+ width: 55.62%;
|
|
|
+ height: 120px;
|
|
|
+ float: left;
|
|
|
+ color: #333;
|
|
|
+ text-align: right;
|
|
|
+ border-left: 1px solid transparent;
|
|
|
+ border-right: 1px solid transparent;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li:hover {
|
|
|
+ color: #1e73be;
|
|
|
+ border: 1px solid #1e73be;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li:nth-of-type(2n) {
|
|
|
+ float: right;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li > .content {
|
|
|
+ width: 60%;
|
|
|
+ float: left;
|
|
|
+ padding: 10px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li > .content > p {
|
|
|
+ margin: 0 12px;
|
|
|
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
+ font-weight: 360;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #2f2f2f;
|
|
|
+ line-height: 2.2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li > .time {
|
|
|
+ width: 20%;
|
|
|
+ float: left;
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li > .time > p {
|
|
|
+ font-size: 24px;
|
|
|
+ margin: 10px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li > .circle {
|
|
|
+ width: 20%;
|
|
|
+ height: 100%;
|
|
|
+ float: left;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li > .circle > img {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ margin: auto;
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li > .circle > i {
|
|
|
+ display: block;
|
|
|
+ width: 1px;
|
|
|
+ height: 100%;
|
|
|
+ background: #707070;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li:nth-of-type(2n) > .content {
|
|
|
+ float: right;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li:nth-of-type(2n) > .time {
|
|
|
+ float: right;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li:nth-of-type(2n) > .circle {
|
|
|
+ float: right;
|
|
|
+}
|
|
|
+
|
|
|
+.news-container > li:nth-of-type(1) > .circle > i {
|
|
|
+ height: 50%;
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+}
|
|
|
+
|
|
|
+.more {
|
|
|
+ font-size: 25px;
|
|
|
+ color: #707070;
|
|
|
+}
|
|
|
+
|
|
|
+.more > i {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+@media screen and (max-width: 767px) {
|
|
|
+ .news-container > li {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .news-container > li > .content {
|
|
|
+ width: 70%;
|
|
|
+ text-align: left;
|
|
|
+ float: right;
|
|
|
+ }
|
|
|
+
|
|
|
+ .news-container > li > .time {
|
|
|
+ width: 30%;
|
|
|
+ text-align: left;
|
|
|
+ float: right;
|
|
|
+ }
|
|
|
+
|
|
|
+ .news-container > li > .circle {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|