djbfm.vue 2.52 KB
<!--
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-07-19 09:52:42
-->
<template>
  <div class="djbfm">
    <br /><br />
    <el-button class="print" @click="print">打印</el-button>
    <p>
      <font>{{ info.sheng }}</font>
      省 (区、市)
      <font>{{ info.shi }}</font>
      市 (区)
      <font>{{ info.xian }}</font>
      区 (县、市)
    </p>
    <p>
      <font>{{ info.jdh }}</font>
      街道 (乡、镇)
      <font>{{ info.jfh }}</font>
      街坊 (村)
      <font>{{ info.zh }}</font>

    </p>
    <div class="title">不动产登记簿</div>
    <br />
    <p>
      宗地/宗海号:
      <font>{{ info.zddm }}</font>
    </p>
    <div class="bottom">
      <p>
        登记机构:
        <font>{{ info.djjg }}</font>
      </p>
    </div>
  </div>
</template>

<script>
  import { getDjbfm } from "@/api/djbDetail.js";

  export default {
    data () {
      return {
        //传递参数
        propsParam: this.$attrs,
        info: {},
      };
    },
    mounted () {
      this.loadData();
    },
    methods: {
      /**
       * @description: loadData
       * @author: renchao
       */
      loadData () {
        getDjbfm({ bdcdyid: this.propsParam.bdcdyid }).then((res) => {
          if (res.code === 200) {
            this.info = res.result;
          }
        });
      },
       print(){
         console.log("this.propsParam.bdcdyid ",this.propsParam);
          window.open(`'#/printdjb?bdcdyid=${this.propsParam.bdcdyid}&qllx=${this.propsParam.qllx}&content=djbfm`, `printdjb`);
      }
    },
  };
</script>

<style lang="scss" scoped>
  .djbfm {
    width: 100%;
    height: 100%;
    background: #fff;
    border-right: 1px solid #ccc;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    font-family: serif;
    position: relative;
    .print{
        // background-color: #0079fe;
        z-index: 10;
        position: absolute;
        left: 11px;
       top: 5px;


      }
    font {
      border-bottom: 1px solid #000;
      display: inline-block;
      padding: 0 15px;
      line-height: 16px;
    }

    .title {
      height: 40%;
      display: flex;
      font-size: 38px;
      color: #000;
      justify-content: center;
      align-items: center;
    }

    .bottom {
      position: absolute;
      bottom: 0px;
      text-align: center;
      width: 100%;
      left: 0;
      height: 100px;
      line-height: 100px;

      p {
        font-size: 28px;
      }

      font {
        font-size: 24px;
        line-height: 24px;
      }
    }
  }
</style>