115 lines
2.4 KiB
Vue
115 lines
2.4 KiB
Vue
<template>
|
|
<view class="page" :style="themeColor">
|
|
<view class="flex benben-position-layout flex flex-wrap align-center helpCenter_flex_0"
|
|
:style="{height:(88+StatusBarRpx)+'rpx',paddingTop:StatusBarRpx+'rpx'}">
|
|
<view class='flex flex-wrap align-center justify-between flex-sub helpCenter_fd0_0'>
|
|
<view class='flex flex-wrap align-center' @tap.stop="handleJumpDiy" data-type="back" data-url="1">
|
|
<text class='fu-iconfont2 helpCenter_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='helpCenter_fd0_0_c1_c0'>帮助中心</text>
|
|
</view>
|
|
<view class='flex flex-wrap align-center helpCenter_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 helpCenter_flex_1">
|
|
<jyf-parser :html="parser1 | richTextFormat"></jyf-parser>
|
|
</view>
|
|
|
|
<!---flex布局flex布局结束-->
|
|
|
|
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
components: {},
|
|
|
|
|
|
data() {
|
|
return {
|
|
parser1:""
|
|
};
|
|
},
|
|
computed: {
|
|
themeColor() {
|
|
return this.$store.getters.themeColor
|
|
},
|
|
|
|
},
|
|
watch: {},
|
|
onLoad(options) {
|
|
this.Get636c78ae2216b()
|
|
},
|
|
methods: {
|
|
Get636c78ae2216b(){
|
|
this.$api.post(global.apiUrls.Get636c78ae2216b,{
|
|
aid:12
|
|
}).then(res=>{
|
|
if(res.data.code==1){
|
|
this.parser1 = res.data.data.body
|
|
}
|
|
})
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.page {
|
|
width: 100vw;
|
|
overflow-x: hidden;
|
|
min-height: calc(100vh - var(--window-bottom));
|
|
background: rgba(248, 248, 248, 1);
|
|
background-size: 100% auto !important;
|
|
}
|
|
|
|
.helpCenter_flex_0 {
|
|
background: #fff;
|
|
width: 750rpx;
|
|
height: 88rpx;
|
|
overflow: hidden;
|
|
z-index: 10;
|
|
top: 0rpx;
|
|
background-size: 100% auto !important;
|
|
}
|
|
|
|
.helpCenter_fd0_0_c2 {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
}
|
|
|
|
.helpCenter_fd0_0_c1_c0 {
|
|
font-size: 36rpx;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 88rpx;
|
|
}
|
|
|
|
.helpCenter_fd0_0_c0_c0 {
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 88rpx;
|
|
}
|
|
|
|
.helpCenter_fd0_0 {
|
|
margin: 0rpx 32rpx 0rpx 32rpx;
|
|
}
|
|
|
|
.helpCenter_flex_1 {
|
|
padding: 32rpx 32rpx 0rpx 32rpx;
|
|
}
|
|
|
|
.helpCenter_fd1_0 {
|
|
color: #0E0E0C;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
line-height: 48rpx;
|
|
}
|
|
</style>
|