| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="page flex-col" :style="{'height':height}">
- <scroll-view scroll-y="true" class="scroll-y ">
- <view class="content-box flex-col">
- <!-- <web-view src="http://www.gzqcdj.cn/doc/2.html"></web-view>-->
- <rich-text v-html="name">
- </rich-text>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- name: '',
- height: '',
- type:''
- };
- },
- mounted() {
- },
- onLoad(option) {
- let sysInfo = uni.getSystemInfoSync();
- this.height = sysInfo.windowHeight + 'px';
- console.log("获取到的高度", this.height)
- uni.setNavigationBarTitle({
- title: option.name
- })
- this.type = option.type
- this.AboutByType(this.type)
- },
- methods: {
- AboutByType(type) {
- this.$api.AboutByType({type:type}).then(res => {
- this.name = res.data.data.aboutContent
- console.log(res,'333333333333')
- })
- }
- }
- };
- </script>
- <style lang="scss">
- @import '/common/css/common.css';
- @import './index.rpx.css';
- </style>
|