<template>
 <view>
  <cu-custom bgColor="bg-gradual-blueness" :isBack="true">
   <block slot="backText">返回</block>
   <block slot="content">用户服务协议</block>
  </cu-custom>
  <view>
  <iframe src="https://qgqy.qhdsafety.com/xieyi/users_agreement.html" :style="'width:100%;height:'+iframeHeight+'px'" frameborder="0"></iframe>
  </view>
 </view>
</template>

<script>
 export default {
  data() {
   return {
    sTop:0,
    totalHeight:0,
    iframeHeight:0
   }
  },
  onLoad() {
  },
  onReady(){
   let that=this;
   let CustomBar = this.CustomBar;
   uni.getSystemInfo({
        success: function (res) {
      that.iframeHeight = res.screenHeight -CustomBar;
        }
    });
  },
  methods: {

  }
 }
</script>

<style>
</style>