kaiguan-zfb/page_fenbao/statulist/question/xiangqing/index.vue
2024-07-16 15:00:10 +08:00

74 lines
1.3 KiB
Vue

<template>
<view class="page">
<u-navbar title="疑问解答" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<view class="box">
<view class="title">
{{listobj.title == undefined ? '' : listobj.title}}
</view>
<view class="cont">
{{listobj.content}}
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
articleId:'',
listobj:{}
}
},
onLoad(option) {
this.articleId = option.id
this.getxq()
},
methods: {
getxq(){
this.$u.get(`/app/article/${this.articleId}`).then(res => {
if (res.code == 200) {
this.listobj = res.data
}
})
}
}
}
</script>
<style lang="scss">
/deep/ .u-title{
padding-bottom: 22rpx;
}
/deep/ .u-icon__icon{
padding-bottom: 22rpx;
}
page {
background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 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>