|
|
@@ -0,0 +1,53 @@
|
|
|
+ <template>
|
|
|
+ <div class="user-content">
|
|
|
+ <div class="user-name">
|
|
|
+ <img src="/images/component/default.png"/>
|
|
|
+ <p>UU用户名</p>
|
|
|
+ <a href="#">全部收藏<i></i></a>
|
|
|
+ </div>
|
|
|
+ <shop-list></shop-list>
|
|
|
+ <shop-list></shop-list>
|
|
|
+ <shop-list></shop-list>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import ShopList from '~components/mobile/common/shopList.vue'
|
|
|
+ export default {
|
|
|
+ layout: 'main',
|
|
|
+ components: {
|
|
|
+ ShopList
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.user-content{
|
|
|
+ margin-top:1rem;
|
|
|
+ min-height: 10rem;
|
|
|
+ background: #e2e4e6;
|
|
|
+ .user-name{
|
|
|
+ padding:.14rem .38rem .09rem .34rem;
|
|
|
+ background:#fff;
|
|
|
+ display:flex;
|
|
|
+ align-items: center;
|
|
|
+ width:100%;
|
|
|
+ img{
|
|
|
+ display: inline-block;
|
|
|
+ width:1.25rem;
|
|
|
+ height:1.25rem;
|
|
|
+ border:.04rem solid #c5dbfc;
|
|
|
+ border-radius: .05rem;
|
|
|
+ }
|
|
|
+ p{
|
|
|
+ font-size:.32rem;
|
|
|
+ margin:0;
|
|
|
+ margin-left:.25rem;
|
|
|
+ flex:1;
|
|
|
+ }
|
|
|
+ a{
|
|
|
+ font-size:.32rem;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|