100 lines
2.6 KiB
Vue
100 lines
2.6 KiB
Vue
<template>
|
|
<view class="page" :style="themeColor">
|
|
<view class="flex benben-position-layout flex flex-wrap align-center siteClassification_flex_0" :style="{height:(88+StatusBarRpx)+'rpx',paddingTop:StatusBarRpx+'rpx'}">
|
|
<view class='flex flex-wrap align-center justify-between flex-sub siteClassification_fd0_0' >
|
|
<view class='flex flex-wrap align-center siteClassification_fd0_0_c0' @tap.stop="handleJumpDiy" data-type="back" data-url="1" >
|
|
<text class='fu-iconfont2 siteClassification_fd0_0_c0_c0' ></text>
|
|
</view>
|
|
<view class='flex flex-wrap align-center' >
|
|
<text class='siteClassification_fd0_0_c1_c0' >店铺分类</text>
|
|
</view>
|
|
<view class='flex flex-wrap align-center justify-end siteClassification_fd0_0_c2' @tap.stop="handleJumpDiy" data-type="back" data-url="1" >
|
|
<text class='siteClassification_fd0_0_c2_c0' >确定</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
<view :style="{height: (88+StatusBarRpx)+'rpx'}" ></view>
|
|
<benben-goods-classify :top='88' >
|
|
</benben-goods-classify>
|
|
|
|
|
|
</view>
|
|
</template>
|
|
<script>
|
|
|
|
export default {
|
|
components:{},
|
|
|
|
|
|
data(){
|
|
return {};
|
|
},
|
|
computed:{
|
|
themeColor() {
|
|
return this.$store.getters.themeColor
|
|
},
|
|
|
|
},
|
|
watch:{},
|
|
onLoad(options){
|
|
|
|
},
|
|
onUnload() {
|
|
|
|
},
|
|
onReady(){
|
|
|
|
},
|
|
onShow(){
|
|
|
|
},
|
|
onHide(){
|
|
|
|
},
|
|
onResize(){
|
|
|
|
},
|
|
onPullDownRefresh(){
|
|
|
|
},
|
|
onReachBottom(e){
|
|
|
|
},
|
|
onPageScroll(e){
|
|
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.page{
|
|
width: 100vw;
|
|
overflow-x: hidden;
|
|
min-height: calc(100vh - var(--window-bottom));
|
|
background:#F8F8F8;background-size: 100% auto !important;
|
|
}
|
|
.siteClassification_flex_0{
|
|
background:#fff;width:750rpx;height:88rpx;overflow:hidden;z-index:10;top:0rpx;background-size:100% auto !important;
|
|
}
|
|
.siteClassification_fd0_0_c2_c0{
|
|
line-height:35rpx;font-size:32rpx;font-weight:400;color:#000000;
|
|
}
|
|
.siteClassification_fd0_0_c2{
|
|
width:150rpx;
|
|
}
|
|
.siteClassification_fd0_0_c1_c0{
|
|
font-size:36rpx;font-weight:500;color:#333;line-height:88rpx;
|
|
}
|
|
.siteClassification_fd0_0_c0_c0{
|
|
font-size:36rpx;font-weight:500;color:#333;line-height:36rpx;
|
|
}
|
|
.siteClassification_fd0_0_c0{
|
|
width:150rpx;
|
|
}
|
|
.siteClassification_fd0_0{
|
|
margin:0rpx 32rpx 0rpx 32rpx;
|
|
}
|
|
</style> |