ct-mattress/page_fenbao/shiyong.vue

101 lines
2.0 KiB
Vue
Raw Normal View History

2024-08-28 11:04:46 +08:00
<template>
<view class="page">
2024-09-10 18:21:34 +08:00
<u-navbar :title="tit" :border-bottom="false" :background="bgc" title-color='#3D3D3D' back-icon-color="#3D3D3D"
title-size='38' height='44'></u-navbar>
2024-08-28 11:04:46 +08:00
2024-09-14 18:01:18 +08:00
<view class="cont" v-html="cont">
2024-08-28 11:04:46 +08:00
2024-09-14 18:01:18 +08:00
</view>
<!-- <rich-text class="cont" :nodes="cont"></rich-text> -->
2024-09-03 18:02:48 +08:00
2024-08-28 11:04:46 +08:00
<view class="" style="position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: -1;">
<image style="width: 100%;height: 100vh;"
src="https://api.ccttiot.com/smartmeter/img/static/u5AWkMT3khOhGPKrUPMH" mode=""></image>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
// background:'linear-gradient(to right, #FFEFEF 20%, #D9F6FF 100%)'
},
2024-09-10 18:21:34 +08:00
cont:'',
2024-09-12 18:02:26 +08:00
tit:'',
type:''
2024-08-28 11:04:46 +08:00
}
},
2024-09-10 18:21:34 +08:00
onLoad(option) {
this.tit = option.tit
2024-09-12 18:02:26 +08:00
if(option.type){
this.type = option.type
}
2024-08-28 11:04:46 +08:00
this.getwz()
},
// 分享到好友(会话)
onShareAppMessage: function() {
return {
title: '创亿康',
path: '/pages/index/index'
}
},
// 分享到朋友圈
onShareTimeline: function() {
return {
title: '创亿康',
query: '',
2024-09-12 18:02:26 +08:00
path: '/pages/index/index'
2024-08-28 11:04:46 +08:00
}
},
methods: {
getwz(){
2024-09-12 18:02:26 +08:00
if(this.type == 'user'){
this.$u.get(`/app/article/licence/${this.type}`).then(res => {
if(res.code == 200){
this.cont = res.data.content
}
})
}else{
this.$u.get(`/app/article/useInfo`).then(res => {
if(res.code == 200){
this.cont = res.data.content
}
})
}
},
2024-08-28 11:04:46 +08:00
}
}
</script>
<style lang="scss">
/deep/ .u-title {
padding-bottom: 15rpx;
}
/deep/ .u-icon__icon {
padding-bottom: 15rpx;
}
2024-09-03 18:02:48 +08:00
.cont{
width: 100%;
height: 89vh;
overflow: scroll;
margin-top: 10rpx;
2024-09-10 18:21:34 +08:00
font-size: 32rpx;
2024-09-03 18:02:48 +08:00
}
2024-08-28 11:04:46 +08:00
page {
background: #F4F5F7;
}
.page {
width: 750rpx;
height: 100vh;
overflow: hidden;
padding: 0 30rpx;
box-sizing: border-box;
font-size: 26rpx;
}
</style>