Blame view

src/views/ywbl/ywsq/components/cfdj.vue 8.08 KB
1
<!--
2
 * @Description:
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-07-21 11:17:58
5
-->
任超 committed
6 7 8 9
<template>
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
10 11 12 13
      <el-form :model="queryForm" ref="queryForm" label-width="90px">
        <el-row style="margin-bottom:10px">
          <el-col :span="5">
            <el-form-item label="不动产单元号" label-width="110px">
14 15 16 17 18
              <el-input
                placeholder="请输入不动产单元号"
                maxlength="28"
                v-model="queryForm.bdcdyh"
                clearable
19
                class="width100"></el-input>
任超 committed
20 21
            </el-form-item>
          </el-col>
22
          <el-col :span="5">
23
            <el-form-item label="查封机关">
24
              <el-input placeholder="请输入查封机关" v-model="queryForm.cfjg" clearable class="width100"></el-input>
25 26
            </el-form-item>
          </el-col>
27
          <el-col :span="5">
28 29 30 31 32
            <el-form-item label="查封文号">
              <el-input
                placeholder="请输入不动产权证号"
                v-model="queryForm.cfwh"
                clearable
33
                class="width100"></el-input>
任超 committed
34 35
            </el-form-item>
          </el-col>
36 37 38
          <el-col :span="6">
            <el-form-item label="坐落" label-width="50px">
              <el-input placeholder="请输入坐落" v-model="queryForm.zl" clearable class="width100"></el-input>
任超 committed
39 40
            </el-form-item>
          </el-col>
41
          <el-col :span="3" class="btnColRight">
任超 committed
42
            <el-form-item>
43
              <el-button type="primary" @click="queryClick">查询</el-button>
44
              <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> -->
任超 committed
45 46 47 48 49 50
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
51
    <div class="from-clues-content loadingtext">
52 53 54 55 56 57 58 59 60 61 62 63
      <lb-table
        ref="table"
        @row-click="handleRowClick"
        :page-size="pageData.pageSize"
        :calcHeight="300"
        :current-page.sync="pageData.currentPage"
        :total="tableData.total"
        @size-change="handleSizeChange"
        @select="select"
        @p-current-change="handleCurrentChange"
        @selection-change="handleSelectionChange"
        :column="tableData.columns"
64
        :data="tableData.data"></lb-table>
任超 committed
65
    </div>
任超 committed
66
    <div class="submit_button">
67
      <el-button @click="$popupCacel">取消</el-button>
任超 committed
68
      <el-button type="primary" plain @click="submitForm">发起申请</el-button>
任超 committed
69
    </div>
任超 committed
70 71 72
  </div>
</template>
<script>
73 74 75 76
  //查封登记
  import store from "@/store/index.js";
  import table from "@/utils/mixin/table";
  import jump from "../components/mixin/jump";
77 78 79
  import { ywPopupDialog } from "@/utils/popup.js";
  import { datas, sendThis } from "../javascript/cfdj.js";
  import { defaultParameters } from "../javascript/publicDefaultPar.js";
80
  import { selectCfdj } from "@/api/ywsq.js";
81
  import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js";
82 83 84 85
  export default {
    props: {
      isJump: { type: Boolean, default: false },
      sqywInfo: { type: Object, default: () => { } },
任超 committed
86
    },
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
    mixins: [table, jump],
    data () {
      return {
        queryForm: defaultParameters.defaultParameters(),
        tableData: {
          total: 0,
          columns: datas.columns(),
          data: [],
        },
        bdcdysz: [],
        bsmSqyw:
          this.sqywInfo.nodetype === "djlx"
            ? this.sqywInfo.bsmSqyw
            : this.sqywInfo.parentid,
      };
102
    },
103 104
    mounted () {
      sendThis(this);
105
    },
106
    methods: {
yuanbo committed
107 108 109 110
      /**
       * @description: queryClick
       * @author: renchao
       */
111 112 113 114 115 116 117 118 119 120 121
      queryClick () {
        this.$startLoading();
        selectCfdj({ ...this.queryForm, ...this.pageData }).then((res) => {
          this.$endLoading();
          if (res.code === 200) {
            let { total, records } = res.result;
            this.tableData.total = total;
            this.tableData.data = records;
          }
        });
      },
yuanbo committed
122 123 124 125
      /**
       * @description: submitForm
       * @author: renchao
       */
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
      submitForm () {
        if (this.bdcdysz.length == 0) {
          this.$message.error("请至少选择一条数据");
          return;
        }
        if (!this.isJump) {
          startBusinessFlow({
            bsmSqyw: this.bsmSqyw,
            bdcdysz: this.bdcdysz,
            djqxbm:
              this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodecode : "",
            djqxmc:
              this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodename : "",
          }).then((res) => {
            if (res.code == 200) {
              this.$message({
                showClose: true,
                message: "发起申请成功",
                type: "success",
              });
              if (!this.isJump) {
                this.jump(res.result, this.sqywInfo.djywbm);
              } else {
                store.dispatch('user/refreshPage', true);
              }
              this.$popupCacel()

            } else {
154
              ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message, result: res.result }, '36%')
155
            }
156
          })
157
        } else {
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
          choiceBdcdy({
            bsmSlsq: this.$route.query.bsmSlsq,
            bdcdysz: this.bdcdysz,
          }).then((res) => {
            if (res.code == 200) {
              this.$message({
                showClose: true,
                message: "发起申请成功",
                type: "success",
              });
              store.dispatch("user/refreshPage", true);
            } else {
              this.$message.error(res.message);
            }
            this.$popupCacel();
          });
        }
      },
yuanbo committed
176 177 178 179 180
      /**
       * @description: handleSelectionChange
       * @param {*} val
       * @author: renchao
       */
181
      handleSelectionChange (val) {
182 183 184 185 186 187 188 189 190
        if (this.sqywInfo.sqywdylx == "1") {
          if (val.length > 1) {
            this.bdcdysz = [...val[val.length - 1]];
          } else {
            this.bdcdysz = val;
          }
        } else {
          this.bdcdysz = val;
        }
191
      },
yuanbo committed
192 193 194 195 196 197
      /**
       * @description: select
       * @param {*} selection
       * @param {*} row
       * @author: renchao
       */
198 199 200 201 202 203 204
      select (selection, row) {
        if (this.sqywInfo.sqywdylx == "1") {
          // 清除 所有勾选项
          this.$refs.table.clearSelection();
          // 当表格数据都没有被勾选的时候 就返回
          // 主要用于将当前勾选的表格状态清除
          if (selection.length == 0) return;
205
          this.$refs.table.toggleRowSelection(row, true);
206
        }
207
      },
yuanbo committed
208 209 210 211 212
      /**
       * @description: handleRowClick
       * @param {*} row
       * @author: renchao
       */
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
      handleRowClick (row) {
        // 如果状态是1,那就是单选
        if (this.sqywInfo.sqywdylx == "1") {
          const bdcdysz = this.bdcdysz;
          this.$refs.table.clearSelection();
          if (bdcdysz.length == 1) {
            bdcdysz.forEach((item) => {
              // 判断 如果当前的一行被勾选, 再次点击的时候就会取消选中
              if (item == row) {
                this.$refs.table.toggleRowSelection(row, false);
              }
              // 不然就让当前的一行勾选
              else {
                this.$refs.table.toggleRowSelection(row, true);
              }
            });
          } else {
            this.$refs.table.toggleRowSelection(row, true);
          }
        } else {
          this.$refs.table.toggleRowSelection(row);
        }
      },
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
           /**
       * @description: openBook
       * @param {*} row
       * @author: miaofang
       */
      openBook (row) {
        console.log("的急急急急急急");
        var param = {
          bdcdyid: row.bdcdyid,
          qllx: row.qllx,
          bdcdyh: row.bdcdyh,
          bsmQlxx: row.bsmQlxx,
        };
        this.$popup("登记簿详情", "registerBook/djbFrame", {
          formData: param
        })
      },
任超 committed
253
    },
254
  };
任超 committed
255 256
</script>
<style scoped lang="scss">
257 258
  @import "~@/styles/mixin.scss";
  @import "~@/styles/public.scss";
任超 committed
259
</style>