demingshangjia/pages/release/selectshop.vue

32 lines
439 B
Vue
Raw Normal View History

2020-07-17 09:49:42 +08:00
<template>
<view class="selectshop">
<view class="title">我的商品</view>
</view>
</template>
<script>
export default {
name:"selectshop",
data(){
return {
}
},
methods:{
},
onLoad(){
}
}
</script>
<style lang="scss" scoped>
.selectshop{
padding: 15rpx 30rpx;
.title{
color: #FF780F;
font-size: 30rpx;
font-weight: 400;
}
}
</style>