123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <div class="mine-conatainer">
- <div class="header">
- <div class="avatar">
- <img
- :src="userInfo.user_head_img_url"
- alt="">
- </div>
- </div>
- <ul>
- <li @click="$router.push({name: 'Order'})">
- <p class="left">
- <i class="label icon-order"></i>
- <span class="label">下单记录</span>
- </p>
- <p class="right">
- <i class="arrow"></i>
- </p>
- </li>
- <li @click="$router.push({name: 'Wallet'})">
- <p class="left">
- <i class="label icon-wallet"></i>
- <span class="label">钱包</span>
- </p>
- <p class="right">
- <span class="value">{{ userInfo.user_balance | fen2Yuan }}</span>
- <i class="arrow"></i>
- </p>
- </li>
- <li @click="$router.push({name: 'Fans'})">
- <p class="left">
- <i class="label icon-wallet"></i>
- <span class="label">粉丝</span>
- </p>
- <p class="right">
- <span class="value">{{ userInfo.user_fans_num }}</span>
- <i class="arrow"></i>
- </p>
- </li>
- </ul>
- <router-link
- class="jump-recommend"
- :to="{name: 'Recommend'}"></router-link>
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- export default {
- name: 'index',
- computed: {
- ...mapGetters({
- userInfo: 'common/userinfo'
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .mine-conatainer {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- }
- .header {
- width: 100%;
- padding-top: 59px;
- background: url("./image/bg_header@2x.png") center top/100% 94px no-repeat;
- }
- .avatar {
- width: 73px;
- height: 73px;
- margin: 0 auto;
- border-radius: 50%;
- overflow: hidden;
- img {
- display: block;
- width: 100%;
- }
- }
- ul {
- width: 335px;
- margin: 0 auto;
- li {
- display: flex;
- align-items: center;
- width: 100%;
- padding: 16px 0;
- background: #FFFFFF;
- box-shadow: 0 2px 4px 0 rgba(31, 49, 74, 0.12);
- border-radius: 10px;
- margin-top: 17px;
- &:nth-of-type(1) {
- margin-top: 4px;
- }
- }
- .left,
- .right {
- display: flex;
- align-items: center;
- width: 50%;
- }
- .left {
- padding-left: 19px;
- }
- .right {
- justify-content: flex-end;
- padding-right: 14px;
- }
- i.label {
- width: 20px;
- height: 20px;
- margin-right: 8px;
- background-position: center center;
- background-size: 20px 20px;
- background-repeat: no-repeat;
- &.icon-order {
- background-image: url("./image/ic_order@2x.png");
- }
- &.icon-wallet {
- background-image: url("./image/ic_wallet@2x.png");
- }
- &.icon-fans {
- background-image: url("./image/ic_fans@2x.png");
- }
- }
- span.label {
- padding-top: 2px;
- font-size: 14px;
- color: #333333;
- line-height: 20px;
- }
- .value {
- font-size: 12px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FA4A4A;
- line-height: 17px;
- }
- .arrow {
- width: 24px;
- height: 24px;
- background: url("./image/ic_arrow@2x.png") center center/24px 24px no-repeat;
- }
- }
- .jump-recommend {
- display: block;
- width: 335px;
- height: 61px;
- margin: 25px auto 0;
- background: url("./image/bg_recommend@2x.png") center center/335px 61px no-repeat;
- }
- </style>
|