foot.vue 509 Bytes
Newer Older
qzhxx's avatar
qzhxx committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<template>
  <div class="title_con">
    <p class="footer_title">&copy;2018 招商银行武汉分行出品</p>
  </div>
</template>
<script>

  export default {
    data() {
      return {
      }
    },
    computed: {},
    mounted() {
    },
    methods: {


    },

  }
</script>
<style lang="less">
  @import '../../style/common';
  .footer_title{
    text-align: center;
    font-size:14px;
    font-weight:400;
    color:rgba(0,0,0,0.45);
    padding-top: 20px;
    padding-bottom: 20px;
  }

</style>