Blame view

src/views/mySelf/selfNav.vue 1.44 KB
94c1e6a3   liuqimichale   微信公众号 个人页面集合
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  <template>
    <div>
      <div class="person-bg">
        <div class="person-ifo">
          <div class="person-pic"></div>
          <ul class="person-con">
            <li>15911111111</li>
            <li>账户余额: <span>¥100.00</span></li>
            <li>我的卡券:<span>20张</span></li>
          </ul>
        </div>
      </div>
  
      <mt-cell title="会员卡"  is-link :to="{ name: 'Toast' }"></mt-cell>
  
      <mt-cell title="车辆管理"  is-link :to="{ name: 'Toast' }"></mt-cell>
  
      <mt-cell title="停车记录"  is-link :to="{ name: 'parkNotes' }"></mt-cell>
  
      <mt-cell title="建议反馈"  is-link :to="{ name: 'suggestionBack' }"></mt-cell>
  
      <div class="leftRightPadding" style="margin-top: 34px">
        <mt-button type="danger" size="large">退出账户</mt-button>
      </div>
  
    </div>
  </template>
  
  <script>
  export default {
    name: 'selfNav'
  }
  </script>
  
  <style scoped lang="scss">
    .person-bg {
      height: 160px;
      background: url("../../assets/images/mySelf/selfNavBg.png") no-repeat;
      background-size: 100% 100%;
    }
  
    .person-ifo {
      padding: $commonLeftRightPadding;
      padding-top: 45px;
      display: flex;
      color: #ffbfbf;
      .person-pic{
        width: 64px;
        height: 64px;
        margin-right: 15px;
        background: url("../../assets/images/mySelf/photoBG.png") no-repeat;
      }
    }
    .person-con{
      span{
        font-size: 16px;
        font-weight: bold;
      }
    }
  
    .mint-cell{
      border-bottom: 1px solid #EFEDED;
    }
  </style>