jbyx.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <div id="jbyx">
  3. <el-row>
  4. <el-col :span="24" class="jbyx">
  5. <el-col :span="24" class="one">
  6. <p>电子邮箱:</p>
  7. <p></p>
  8. <el-link href="https://mail.163.com" target="_blank" :underline="false">guhongwei0324@163.com</el-link>
  9. </el-col>
  10. <el-col :span="24" class="one">
  11. <p>联系电话:</p>
  12. <el-link href="" target="_blank" :underline="false">17319450324</el-link>
  13. </el-col>
  14. </el-col>
  15. </el-row>
  16. </div>
  17. </template>
  18. <script>
  19. import { mapState, createNamespacedHelpers } from 'vuex';
  20. export default {
  21. metaInfo() {
  22. return { title: this.$route.meta.title };
  23. },
  24. name: 'jbyx',
  25. props: {},
  26. components: {},
  27. data: function() {
  28. return {};
  29. },
  30. created() {},
  31. methods: {},
  32. computed: {
  33. ...mapState(['user']),
  34. },
  35. watch: {},
  36. };
  37. </script>
  38. <style lang="less" scoped>
  39. .jbyx {
  40. .one {
  41. margin: 0 0 10px 0;
  42. p:nth-child(1) {
  43. font-size: 18px;
  44. padding: 5px 0;
  45. }
  46. p:nth-child(2) {
  47. font-size: 16px;
  48. }
  49. }
  50. }
  51. </style>