|
@@ -0,0 +1,114 @@
|
|
|
+<template>
|
|
|
+ <div class="About">
|
|
|
+ <div class="bac"></div>
|
|
|
+ <div class="contact">
|
|
|
+ <p class="title">联系我们</p>
|
|
|
+ <hr />
|
|
|
+ <p class="txt">四维时代官网</p>
|
|
|
+ <p>商务合作:sales@4dage.com</p>
|
|
|
+ <p>媒体合作:pr@4dage.com</p>
|
|
|
+ <p>联系电话:400-699-8025</p>
|
|
|
+ <p>地址:广东省珠海市高新区港湾大道港湾1号港11栋</p>
|
|
|
+ <p style="text-indent: 3em">北京市朝阳区三丰北里悠唐国际A坐</p>
|
|
|
+ <p class="title">合作单位</p>
|
|
|
+ <hr />
|
|
|
+ <p class="txt">中国国家文物局</p>
|
|
|
+ <p class="txt">中国博物馆协会</p>
|
|
|
+ <p class="txt">中国博物馆及相关产品与技术博览会</p>
|
|
|
+ <p class="title">探索四维</p>
|
|
|
+ <hr />
|
|
|
+ <p class="txt">四维看看</p>
|
|
|
+ <p class="txt">中国国家文物局</p>
|
|
|
+ <hr style="margin-top:60px ;">
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="logo">
|
|
|
+ <img src="../assets/images/about1.png" alt="">
|
|
|
+ <img src="../assets/images/about.png" alt="">
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+//这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
|
|
|
+//例如:import 《组件名称》 from '《组件路径》';
|
|
|
+
|
|
|
+export default {
|
|
|
+ //import引入的组件需要注入到对象中才能使用
|
|
|
+ components: {},
|
|
|
+ data() {
|
|
|
+ //这里存放数据
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+ //监听属性 类似于data概念
|
|
|
+ computed: {},
|
|
|
+ //监控data中的数据变化
|
|
|
+ watch: {},
|
|
|
+ //方法集合
|
|
|
+ methods: {},
|
|
|
+ //生命周期 - 创建完成(可以访问当前this实例)
|
|
|
+ created() {},
|
|
|
+ //生命周期 - 挂载完成(可以访问DOM元素)
|
|
|
+ mounted() {},
|
|
|
+ beforeCreate() {}, //生命周期 - 创建之前
|
|
|
+ beforeMount() {}, //生命周期 - 挂载之前
|
|
|
+ beforeUpdate() {}, //生命周期 - 更新之前
|
|
|
+ updated() {}, //生命周期 - 更新之后
|
|
|
+ beforeUnmount() {}, //生命周期 - 销毁之前
|
|
|
+ unmounted() {}, //生命周期 - 销毁完成
|
|
|
+ activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style scoped>
|
|
|
+.bac {
|
|
|
+ position: absolute;
|
|
|
+ top: -13%;
|
|
|
+ width: 100%;
|
|
|
+ height: 13%;
|
|
|
+ background-color: rgba(0, 0, 0, 0.8);
|
|
|
+}
|
|
|
+.About {
|
|
|
+ position: relative;
|
|
|
+ width: 100vw;
|
|
|
+ background-color: rgba(0, 0, 0, 0.8);
|
|
|
+ padding-top: 30px;
|
|
|
+}
|
|
|
+.contact {
|
|
|
+ width: 80%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.contact .title {
|
|
|
+ margin-top:30px ;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.contact p {
|
|
|
+ text-align: left;
|
|
|
+ margin: 10px 0;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #999;
|
|
|
+}
|
|
|
+.contact .txt {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #a0a1a2;
|
|
|
+}
|
|
|
+.logo {
|
|
|
+ width: 80%;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 10px;
|
|
|
+ height: 17vh;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.logo img:nth-of-type(1) {
|
|
|
+ width: 157px;
|
|
|
+ height: 64px;
|
|
|
+}
|
|
|
+.logo img:nth-of-type(2) {
|
|
|
+ width: 132px;
|
|
|
+ height: 56px;
|
|
|
+}
|
|
|
+</style>
|