Blame view

src/views/workflow/top/receipt/cfhzd.vue 3.66 KB
xiaomiao 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
<!--
 * @Description:
 * @Autor: miaofang
 * @LastEditTime: 2023-07-19 09:52:42
-->
<template>
  <div class="fm" id="boxaaa">
    <div class="title">不动产登记簿</div>
    <div class="title">(回执)</div>
    <p class="bian">
      编号: <span>{{ Receiptdata.sldyList[0].ybdcqzsh||"" }}</span>
    </p>
    <div class="texts">
      <p class="jsjg">{{ Receiptdata.cfdjList[0].cfjg }}:</p>
      <p class="concent">
        <span>{{ sj }}</span> ,你院协助执行通知书订单号为:<font>{{
          Receiptdata.qlxxList[0].ywh||""
        }}</font
        >收悉,具体执行情况如下。
      </p>
    </div>

    <p class="bian">{{ Receiptdata.user.organizationName }}</p>
    <p class="bian">{{ sj }}(盖章)</p>
    <table class="xxTable">
      <tr>
        <td>序号</td>
        <td>坐落</td>
        <td>控制反馈</td>
        <td>控制措施</td>
      </tr>
      <tr v-for="(item, index) in Receiptdata.sldyList" :key="index">
        <td>{{ index + 1 }}</td>
        <td>{{ item.zl }}</td>
        <td>已控</td>
        <td>{{ item.djlxmc }}</td>
      </tr>
    </table>
  </div>
</template>

tianhaohao@pashanhoo.com committed
42

xiaomiao committed
43
<script>
tianhaohao@pashanhoo.com committed
44
import { BatchInit } from "@/api/workflow/cfdjFlow.js";
xiaomiao committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
export default {
  props: {
    Receiptdata: {
      type: Object,
      default: {},
    },
  },
  data() {
    return {
      sj: "",
      data:false
    };
  },
  mounted() {
    this.loadData();
  },
  watch: {
    Receiptdata: {
      handler(newValue, oldValue) {
        this.$nextTick(() => {
          this.Receiptdata = newValue;
          this.loadData();
        });
      },
    },
  },
  methods: {
tianhaohao@pashanhoo.com committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
    openPrint () {
        //  获取打印回执数据
        var formdata = new FormData();
        formdata.append("bsmSldy", this.currentSelectProps.bsmSldy);
        formdata.append("bsmSlsq", this.$route.query.bsmSlsq);
        formdata.append("djlx", this.currentSelectProps.djlx);
        BatchInit(formdata).then((res) => {
          if (res.code === 200 && res.result) {
            this.Receiptdata = res.result
            this.shows = true
            setTimeout(() => {
              this.prinsss()
            }, 100)
          } else {
            this.$message.error(res.message)
          }
        })
      },
xiaomiao committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
    /**
     * @description: loadData
     * @author: miaofang
     */
    loadData() {
      let dateTime = new Date(this.Receiptdata.slsq.slsj);
      let y = dateTime.getFullYear();
      let m = dateTime.getMonth() + 1;
      m = m < 10 ? "0" + m : m;
      let d = dateTime.getDate();
      d = d < 10 ? "0" + d : d;
      let h = dateTime.getHours();
      h = h < 10 ? "0" + h : h;
      let M = dateTime.getMinutes();
      M = M < 10 ? "0" + M : M;
      let s = dateTime.getSeconds();
      s = s < 10 ? "0" + s : s;
      this.sj = y + "年" + m + "月" + d + "日";
    },
  },
};
</script>

<style lang="scss" scoped>
#boxaaa{
font {
  border-bottom: 1px solid #000;
  display: inline-block;
  padding: 0 15px;
  line-height: 16px;
}

.title {
  height: 60px;
  display: flex;
  font-size: 32px;
  color: #000;
  justify-content: center;
  align-items: center;
}
.bian {
  text-align: right;
}
.texts{
  margin-top: 40px;
  margin-bottom: 40px;

}
.jsjg {
  text-align: left;
}
.concent {
  width: 100%;

  line-height: 40px;
  text-align: left;
  text-indent: 2em;
}
p {
  font-family: serif;
}
.xxTable {

  width: 100%;
  border-collapse: collapse;
  font-family: serif;
    margin-top: 20px;

  tr td {
    border: 1px solid #000;
    text-align: center;
    height: 40px;
    line-height: 17px;
    font-size: 13px;
    min-width: 80px;
    z-index: 1;
    min-width: 80px;
    padding: 5px;
  }
}
}
.fm {
  background: #fff;
  font-size: 18px;
  margin: auto;
}

</style>