104 lines
2.8 KiB
Vue
104 lines
2.8 KiB
Vue
<template>
|
|
<view class="page" :style="themeColor">
|
|
<view class="flex benben-position-layout flex flex-wrap align-center priceDescription_flex_0" :style="{height:(88+StatusBarRpx)+'rpx',paddingTop:StatusBarRpx+'rpx'}">
|
|
<view class='flex flex-wrap align-center justify-between flex-sub priceDescription_fd0_0' >
|
|
<view class='flex flex-wrap align-center' @tap.stop="handleJumpDiy" data-type="back" data-url="1" >
|
|
<text class='fu-iconfont2 priceDescription_fd0_0_c0_c0' @tap.stop="handleJumpDiy" data-type="back" data-url="1" ></text>
|
|
</view>
|
|
<view class='flex flex-wrap align-stretch justify-center flex-sub' >
|
|
<text class='priceDescription_fd0_0_c1_c0' >商品规格说明</text>
|
|
</view>
|
|
<view class='flex flex-wrap align-center priceDescription_fd0_0_c2' >
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
<view :style="{height: (88+StatusBarRpx)+'rpx'}" ></view>
|
|
<!---flex布局flex布局开始-->
|
|
<view class="flex benben-flex-layout flex-wrap align-center priceDescription_flex_1" >
|
|
<jyf-parser class='priceDescription_fd1_0' >
|
|
</jyf-parser>
|
|
</view>
|
|
|
|
<!---flex布局flex布局结束-->
|
|
|
|
|
|
</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:rgba(255, 255, 255, 1);background-size: 100% auto !important;
|
|
}
|
|
.priceDescription_flex_0{
|
|
border-bottom:1px solid #eee;background:#fff;width:750rpx;height:88rpx;overflow:hidden;z-index:10;top:0rpx;background-size:100% auto !important;
|
|
}
|
|
.priceDescription_fd0_0_c2{
|
|
width:32rpx;height:32rpx;
|
|
}
|
|
.priceDescription_fd0_0_c1_c0{
|
|
font-size:36rpx;font-weight:500;color:#333;line-height:88rpx;
|
|
}
|
|
.priceDescription_fd0_0_c0_c0{
|
|
font-size:32rpx;font-weight:500;color:#333;line-height:88rpx;
|
|
}
|
|
.priceDescription_fd0_0{
|
|
margin:0rpx 32rpx 0rpx 32rpx;
|
|
}
|
|
.priceDescription_flex_1{
|
|
background:rgba(255, 255, 255, 1);padding:24rpx 24rpx 0rpx 24rpx;background-size:100% auto !important;
|
|
}
|
|
::v-deep .priceDescription_fd1_0{
|
|
width:100%;
|
|
}
|
|
</style> |