<template> <view class="page"> <u-navbar title="常见问题" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36' height='58'></u-navbar> <view class="box"> <view class="title"> {{listobj.title}} </view> <view class="cont" v-html="listobj.content"> </view> </view> </view> </template> <script> export default { data() { return { type:'', listobj:{} } }, onLoad(option) { console.log(option); this.type = option.type this.getwzxq() }, methods: { getwzxq(){ this.$u.get(`/app/article/licence/${this.type}`).then((res) => { if (res.code == 200) { this.listobj = res.data } }) }, } } </script> <style lang="scss"> /deep/ .u-title{ padding-bottom: 41rpx; } /deep/ .u-icon__icon{ padding-bottom: 40rpx; } page { background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%); } image{ width: 100%; } .page { width: 750rpx; position: fixed; top: 0; left: 0; .box{ width: 750rpx; height: 1440rpx; background: #F4F5F7; border-radius: 0rpx 0rpx 0rpx 0rpx; padding: 40rpx; box-sizing: border-box; .title{ font-size: 40rpx; font-weight: 600; } .cont{ font-size: 32rpx; color: #666; margin-top: 50rpx; } } } </style>