You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
10 months ago
|
<template>
|
||
|
<view class="">
|
||
|
<view class="u-padding-20">
|
||
|
<view class="box">
|
||
|
<u-parse :html="content"></u-parse>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
<!-- <view class="u-padding-top-30 u-padding-bottom-30 u-padding-left-10 u-padding-right-10">
|
||
|
<image src="../../static/image/kefu.png" class="kefu" mode="" @click="$call(phone)"></image>
|
||
|
</view> -->
|
||
|
<view style="height: constant(safe-area-inset-bottom); height: env(safe-area-inset-bottom);"></view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
data:"",
|
||
|
content:"11111111111",
|
||
|
}
|
||
|
},
|
||
|
onShow() {
|
||
|
},
|
||
|
methods: {
|
||
|
},
|
||
|
onReachBottom() {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
page {
|
||
|
background: #f8f9fb;
|
||
|
}
|
||
|
|
||
|
.box {
|
||
|
border-radius: 20rpx;
|
||
|
background: white;
|
||
|
padding: 40rpx 30rpx;
|
||
|
box-shadow: 0px 0px 20rpx rgba(145, 165, 205, 0.5);
|
||
|
}
|
||
|
|
||
|
.kefu {
|
||
|
width: 100%;
|
||
|
height: 114rpx;
|
||
|
}
|
||
|
/deep/._img{
|
||
|
display: block!important;
|
||
|
}
|
||
|
</style>
|