2020-07-17 09:49:42 +08:00
|
|
|
<template>
|
|
|
|
<view class="selectshop">
|
|
|
|
<view class="title">我的商品</view>
|
2020-07-21 08:57:48 +08:00
|
|
|
<view class="list">
|
|
|
|
<shopItem></shopItem>
|
|
|
|
</view>
|
2020-07-17 09:49:42 +08:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
2020-07-21 08:57:48 +08:00
|
|
|
import shopItem from "../../components/release/shop-item"
|
2020-07-17 09:49:42 +08:00
|
|
|
export default {
|
|
|
|
name:"selectshop",
|
|
|
|
data(){
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
2020-07-21 08:57:48 +08:00
|
|
|
components:{
|
|
|
|
shopItem
|
|
|
|
},
|
2020-07-17 09:49:42 +08:00
|
|
|
methods:{
|
|
|
|
|
|
|
|
},
|
|
|
|
onLoad(){
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.selectshop{
|
|
|
|
padding: 15rpx 30rpx;
|
2020-07-21 08:57:48 +08:00
|
|
|
background-color: #2D2D2D;
|
|
|
|
min-height: calc(100vh - 45px);
|
2020-07-17 09:49:42 +08:00
|
|
|
.title{
|
|
|
|
color: #FF780F;
|
|
|
|
font-size: 30rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|