32 lines
540 B
Vue
32 lines
540 B
Vue
<template>
|
|
<view class="memberUserInfo_centent">
|
|
<view class="member_tips_info">
|
|
<CommVipInfo />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import CommVipInfo from '@/components/commVipInfo/index.vue'
|
|
export default {
|
|
components: {
|
|
CommVipInfo
|
|
},
|
|
data() {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.memberUserInfo_centent {
|
|
width: 100%;
|
|
|
|
.member_tips_info {
|
|
width: 100%;
|
|
// height: 134rpx;
|
|
// background: url('/static/images/bookCity/member_vip_bg.png') no-repeat;
|
|
// background-size: 100% 100%;
|
|
}
|
|
}
|
|
</style> |