|
@@ -1,58 +1,92 @@
|
|
<template>
|
|
<template>
|
|
- <div class="mine-conatainer">
|
|
|
|
- <div class="header">
|
|
|
|
- <div class="avatar">
|
|
|
|
- <img
|
|
|
|
- :src="userInfo.user_head_img_url"
|
|
|
|
- alt="">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="mine-conatainer"
|
|
|
|
+ ref="fbyMine">
|
|
|
|
+ <div>
|
|
|
|
+ <div class="header">
|
|
|
|
+ <div class="avatar">
|
|
|
|
+ <img
|
|
|
|
+ :src="userInfo.user_head_img_url"
|
|
|
|
+ alt="">
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="income-wrap">
|
|
|
|
+ <div>
|
|
|
|
+ <p>上月预估收入(元)</p>
|
|
|
|
+ <p>¥{{ userInfo.last_month_money | fen2Yuan }}</p>
|
|
|
|
+ </div>
|
|
|
|
+ <div>
|
|
|
|
+ <p>本月预估收入(元)</p>
|
|
|
|
+ <p>¥{{ userInfo.month_money | fen2Yuan }}</p>
|
|
|
|
+ </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>
|
|
</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>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import BScroll from 'better-scroll'
|
|
import { mapGetters } from 'vuex'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'index',
|
|
name: 'index',
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ scroll: null
|
|
|
|
+ }
|
|
|
|
+ },
|
|
computed: {
|
|
computed: {
|
|
...mapGetters({
|
|
...mapGetters({
|
|
userInfo: 'common/userinfo'
|
|
userInfo: 'common/userinfo'
|
|
})
|
|
})
|
|
|
|
+ },
|
|
|
|
+ activated () {
|
|
|
|
+ if (!this.$route.meta.isUseCache) {
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ this.scroll = new BScroll(this.$refs.fbyMine, {
|
|
|
|
+ click: true,
|
|
|
|
+ scrollbar: true
|
|
|
|
+ })
|
|
|
|
+ }, 500)
|
|
|
|
+ } else {
|
|
|
|
+ if (this.scroll) {
|
|
|
|
+ this.scroll.refresh()
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
@@ -63,8 +97,10 @@ export default {
|
|
left: 0;
|
|
left: 0;
|
|
top: 0;
|
|
top: 0;
|
|
right: 0;
|
|
right: 0;
|
|
- bottom: 0;
|
|
|
|
|
|
+ bottom: 50px;
|
|
width: 100%;
|
|
width: 100%;
|
|
|
|
+ padding-bottom: 20px;
|
|
|
|
+ overflow: hidden;
|
|
}
|
|
}
|
|
|
|
|
|
.header {
|
|
.header {
|
|
@@ -86,6 +122,46 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.income-wrap {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ width: 335px;
|
|
|
|
+ margin: 17px auto;
|
|
|
|
+ padding: 16px 0;
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+ background: #FFFFFF;
|
|
|
|
+ box-shadow: 0 2px 4px 0 rgba(31, 49, 74, 0.12);
|
|
|
|
+
|
|
|
|
+ & > div {
|
|
|
|
+ position: relative;
|
|
|
|
+ left: 0;
|
|
|
|
+ top: 0;
|
|
|
|
+ flex: 1;
|
|
|
|
+
|
|
|
|
+ &:nth-of-type(2) {
|
|
|
|
+ &:before {
|
|
|
|
+ @include vertical-center;
|
|
|
|
+ left: 0;
|
|
|
|
+ height: 86%;
|
|
|
|
+ content: '';
|
|
|
|
+ border-left: 1px solid #ccc;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ p {
|
|
|
|
+ width: 100%;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 20px;
|
|
|
|
+ text-align: center;
|
|
|
|
+
|
|
|
|
+ &:nth-of-type(2) {
|
|
|
|
+ margin-top: 4px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
ul {
|
|
ul {
|
|
width: 335px;
|
|
width: 335px;
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|