certification.vue 773 Bytes
Newer Older
李晓兵's avatar
李晓兵 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
<template>
  <h-view id="certification">
    <h-header :proportion="[5,1,1]" class="bar-custom">
      <div slot="left" class="h-header-btn">
        <img src="@/assets/userBind/arrow.png" @click="exitCertification" >
        <span>电子签认证</span>
      </div>
    </h-header>
    <h-content>
      <iframe
        :src="url" frameborder="0" scrolling="no" width="100%"
        height="100%"/>
    </h-content>
  </h-view>
</template>
<script>
export default {
  data () {
    return {
      url: this.$route.params.authUrl,
    }
  },

  created () {
    console.log(this)
  },

  activated () {
  },
  methods: {
    exitCertification () {
      this.$router.replace({
        name: 'MyInfo',
      })
    },
  },
}
</script>

<style lang="less" scoped>

</style>