Blame view

src/views/workflow/components/szxx.vue 6.81 KB
1 2 3 4 5
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:41:49
-->
蔡俊立 committed
6
<template>
田浩浩 committed
7 8 9 10
  <div class="szxx">
    <el-card class="box-card" v-for="(item, index) in tableData" :key="index">
      <div slot="header" class="szxx_header">
        <span class="header_type">{{
11
            item.bdcqzlx == 1 ? "不动产权证书" : "不动产登记证明"
田浩浩 committed
12 13 14 15 16
        }}</span>
        <div class="header_text">{{ item.bdcqzh }}</div>
      </div>
      <div class="szxx_body card_padding">
        <div class="text color_iray">
17
          <span>{{ item.qllx }}</span>
田浩浩 committed
18 19 20 21 22
        </div>
        <div class="text color_red">
          <span>{{ item.qlr }}</span>
        </div>
        <div class="text color_iray">
23
          <span>{{ item.gyqk }}</span>
田浩浩 committed
24 25 26 27 28
        </div>
        <div class="text color_red">
          <span>{{ item.bdcdyh }}</span>
        </div>
        <div class="text color_iray">
29
          <span>{{ item.zl }}</span>
田浩浩 committed
30 31
        </div>
        <div class="text color_red">
32
          <span>{{ item.yt }}</span>
田浩浩 committed
33 34
        </div>
        <div class="text color_iray">
35 36 37
          <span>{{ item.mj }}</span>
        </div>
        <div class="text color_red">
田浩浩 committed
38 39
          <span>{{ item.syqx }}</span>
        </div>
40 41
        <div class="text color_iray">
          <span>印刷序列号:{{ item.ysxlh }}</span>
田浩浩 committed
42 43 44 45 46
        </div>
      </div>
      <div class="card_padding">
        <div class="top_line middle_margin"></div>
        <div class="text" v-if="item.ysxlh">
47 48 49
          <el-button class="operation_button" type="text" @click="openInvalidDiglog(item)">再次打印({{ item.szcs
          }})</el-button>
          <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button>
田浩浩 committed
50 51
        </div>
        <div class="text" v-else>
52
          <el-button class="operation_button" type="text" @click="openZsylDialog(item, 2)">证书打印1({{ item.szcs
53 54
          }}</el-button>
          <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button>
田浩浩 committed
55 56 57
        </div>
      </div>
    </el-card>
58
    <el-dialog title="证书作废" :visible.sync="invalidDiglog" width="30%" :modal-append-to-body="false" top="30vh">
田浩浩 committed
59 60 61 62 63 64
      <div class="invalid-diglog">
        <div class="invalid-title">
          <i class="el-icon-question invalid-icon"></i>
          <div class="invalid-body">您确定作废证书并再次打印?</div>
        </div>
        <div class="invalid-reson">作废原因:</div>
65
        <el-input v-model="zfyy" placeholder="请输入作废原因" type="textarea" :rows="4"></el-input>
renchao@pashanhoo.com committed
66 67 68
        <div class="text-center pt-10">
          <el-button @click="closeInvalidDiglog">取 消</el-button>
          <el-button type="primary" @click="confirmInvalid">确 定</el-button>
田浩浩 committed
69 70 71 72 73
        </div>
      </div>
    </el-dialog>
    <el-empty description="暂无数据" v-if="tableData.length == 0"></el-empty>
  </div>
蔡俊立 committed
74 75
</template>
<script>
renchao@pashanhoo.com committed
76
  import { mapGetters } from 'vuex'
renchao@pashanhoo.com committed
77
  import { getSlsqBdcqzList, invalidCertificate } from "@/api/bdcqz.js";
xiaomiao committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91
  export default {
    props: {},
    data () {
      return {
        dialog: false,
        tableData: [],
        bdcqzlx: 1,
        bdcqz: {},
        zfyy: "",
        invalidDiglog: false,
        bsmSz: "",
        bsmBdcqz: ""
      };
    },
renchao@pashanhoo.com committed
92 93 94 95 96 97 98 99 100 101
    computed: {
      ...mapGetters(['isRefresh'])
    },
    watch: {
      isRefresh: {
        handler (newVal, oldVal) {
          if (newVal) this.list()
        }
      }
    },
xiaomiao committed
102 103
    created () {
      this.list();
田浩浩 committed
104
    },
xiaomiao committed
105 106 107 108 109 110 111 112 113 114
    methods: {
      //初始化列表
      list () {
        var bsmSlsq = this.$route.query.bsmSlsq;
        getSlsqBdcqzList({ bsmSlsq: bsmSlsq }).then((res) => {
          if (res.code === 200) {
            this.tableData = res.result;
            if (res.result) {
              this.bdcqz = res.result[0];
            }
115
          }
田浩浩 committed
116
        });
xiaomiao committed
117 118 119 120 121
      },
      //打开证书预览弹窗
      openZsylDialog (item, type) {
        if (type == 1) {
          //证书预览
renchao@pashanhoo.com committed
122
          this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", { bdcqz: item }, "70%", true);
田浩浩 committed
123
        } else {
renchao@pashanhoo.com committed
124
          this.$popupDialog("不动产权证书", "workflow/components/dialog/zsdy", { bdcqz: item }, "70%", true);
田浩浩 committed
125
        }
xiaomiao committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139
      },
      //再次打印
      openInvalidDiglog (item) {
        this.bsmSz = item.bsmSz;
        this.invalidDiglog = true;
        this.bsmBdcqz = item.bsmBdcqz
      },
      closeInvalidDiglog () {
        this.invalidDiglog = false;
        this.bsmSz = "";
        this.zfyy = "";
      },
      //作废缮证信息
      confirmInvalid () {
赵千 committed
140
        invalidCertificate({ bsmBdcqz: this.bsmBdcqz, zfyy: this.zfyy }).then((res) => {
xiaomiao committed
141 142 143 144
          if (res.code === 200) {
            this.list();
            this.$message.success("作废成功");
            this.invalidDiglog = false;
renchao@pashanhoo.com committed
145
            this.zfyy = ''
xiaomiao committed
146 147 148 149 150 151 152
            this.openZsylDialog(this.bdcqz);
          } else {
            this.$message.error(res.message);
          }
        });
      },
      openRecordPop (item) {
renchao@pashanhoo.com committed
153
        this.$popupDialog("缮证记录", "workflow/components/dialog/szRecord", { bsmBdcqz: item.bsmBdcqz }, '60%', true)
xiaomiao committed
154
      }
田浩浩 committed
155
    },
xiaomiao committed
156
  };
蔡俊立 committed
157 158
</script>
<style scoped lang='scss'>
xiaomiao committed
159 160 161 162 163 164 165
  @import "~@/styles/public.scss";
  .szxx {
    box-sizing: border-box;
    padding-right: 15px;
    width: 100%;
    height: 600px;
    overflow-y: scroll;
任超 committed
166

xiaomiao committed
167 168 169 170 171
    .box-card {
      float: left;
      width: 300px;
      margin-top: 10px;
      margin-right: 10px;
任超 committed
172

xiaomiao committed
173 174 175
      .szxx_body {
        height: 240px;
      }
田浩浩 committed
176 177
    }
  }
蔡俊立 committed
178

xiaomiao committed
179 180 181 182
  .szxx_header {
    color: #ffffff;
    font-weight: bolder;
    font-size: 16px;
任超 committed
183

xiaomiao committed
184 185 186 187 188 189 190 191 192 193 194
    .header_type {
      display: flex;
      justify-content: center;
      align-content: center;
    }

    .header_text {
      text-align: center;
      margin-top: 10px;
      line-height: 30px;
    }
田浩浩 committed
195
  }
任超 committed
196

xiaomiao committed
197 198
  .top_line {
    border-top: 2px solid rgb(222, 222, 222);
田浩浩 committed
199
  }
任超 committed
200

xiaomiao committed
201 202 203 204
  .text {
    margin-bottom: 10px;
    text-align: center;
  }
任超 committed
205

xiaomiao committed
206 207 208
  .color_iray {
    color: rgb(153, 153, 153);
  }
任超 committed
209

xiaomiao committed
210 211 212
  .color_red {
    color: rgb(255, 89, 24);
  }
任超 committed
213

xiaomiao committed
214 215 216
  .middle_margin {
    margin-bottom: 10px;
  }
任超 committed
217

xiaomiao committed
218 219 220 221 222
  .operation_button {
    border: 1px solid rgb(0, 121, 254);
    padding: 5px;
    text-align: center;
  }
任超 committed
223

xiaomiao committed
224 225 226
  .card_padding {
    padding-top: 8px;
  }
任超 committed
227

xiaomiao committed
228 229 230 231 232
  .invalid-diglog {
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    color: rgb(99, 99, 99);
任超 committed
233

xiaomiao committed
234 235 236
    .invalid-title {
      display: flex;
      align-content: center;
任超 committed
237

xiaomiao committed
238 239 240 241 242
      .invalid-icon {
        color: rgb(254, 148, 0);
        font-size: 34px;
        margin-right: 10px;
      }
任超 committed
243

xiaomiao committed
244 245 246 247
      .invalid-body {
        line-height: 40px;
        margin-bottom: 10px;
      }
田浩浩 committed
248
    }
任超 committed
249

xiaomiao committed
250
    .invalid-reson {
任超 committed
251
      margin-bottom: 10px;
田浩浩 committed
252 253
    }

xiaomiao committed
254 255 256 257 258
    .dialog-footer {
      margin-top: 10px;
      display: flex;
      justify-content: flex-end;
    }
田浩浩 committed
259
  }
任超 committed
260

xiaomiao committed
261 262
  /deep/.el-card__header {
    background-color: rgb(198, 67, 83);
田浩浩 committed
263
  }
蔡俊立 committed
264

xiaomiao committed
265 266 267 268
  /deep/.el-card__body {
    padding: 0px;
  }
</style>