1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <div id="jbyx">
- <el-row>
- <el-col :span="24" class="jbyx">
- <el-col :span="24" class="one">
- <p>电子邮箱:</p>
- <p></p>
- <el-link href="https://mail.163.com" target="_blank" :underline="false">guhongwei0324@163.com</el-link>
- </el-col>
- <el-col :span="24" class="one">
- <p>联系电话:</p>
- <el-link href="" target="_blank" :underline="false">17319450324</el-link>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- name: 'jbyx',
- props: {},
- components: {},
- data: function() {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- },
- watch: {},
- };
- </script>
- <style lang="less" scoped>
- .jbyx {
- .one {
- margin: 0 0 10px 0;
- p:nth-child(1) {
- font-size: 18px;
- padding: 5px 0;
- }
- p:nth-child(2) {
- font-size: 16px;
- }
- }
- }
- </style>
|