Blame view

src/views/ywbl/ywsq/components/cfdj.vue 8.09 KB
1
<!--
2
 * @Description:
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-09-21 10:18:57
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>
任超 committed
44 45 46 47 48 49
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
50
    <div class="from-clues-content loadingtext">
51 52 53 54 55 56 57 58 59 60 61 62
      <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"
63
        :data="tableData.data"></lb-table>
任超 committed
64
    </div>
任超 committed
65
    <div class="submit_button">
66
      <el-button @click="$popupCacel">取消</el-button>
67
      <el-button type="primary" plain @click="submitForm" :loading="loading">发起申请</el-button>
任超 committed
68
    </div>
任超 committed
69 70 71
  </div>
</template>
<script>
72 73
  //查封登记
  import store from "@/store/index.js";
74
  import ywsqTable from "@/utils/mixin/ywsqTable";
75
  import jump from "../components/mixin/jump";
76 77 78
  import { ywPopupDialog } from "@/utils/popup.js";
  import { datas, sendThis } from "../javascript/cfdj.js";
  import { defaultParameters } from "../javascript/publicDefaultPar.js";
79
  import { selectCfdj } from "@/api/ywsq.js";
80
  import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js";
81 82 83 84
  export default {
    props: {
      isJump: { type: Boolean, default: false },
      sqywInfo: { type: Object, default: () => { } },
任超 committed
85
    },
86
    mixins: [ywsqTable, jump],
87 88
    data () {
      return {
89
        loading: false,
90 91 92 93 94 95 96 97
        queryForm: defaultParameters.defaultParameters(),
        tableData: {
          total: 0,
          columns: datas.columns(),
          data: [],
        },
        bdcdysz: [],
      };
98
    },
99 100
    mounted () {
      sendThis(this);
101
    },
102
    methods: {
yuanbo committed
103 104 105 106
      /**
       * @description: queryClick
       * @author: renchao
       */
107 108 109 110 111 112 113 114 115 116 117
      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
118 119 120 121
      /**
       * @description: submitForm
       * @author: renchao
       */
122 123 124 125 126 127
      submitForm () {
        if (this.bdcdysz.length == 0) {
          this.$message.error("请至少选择一条数据");
          return;
        }
        if (!this.isJump) {
128
          this.loading = true
129
          startBusinessFlow({
130
            bsmSqyw: this.sqywInfo.bsmSqyw,
131 132
            bdcdysz: this.bdcdysz,
          }).then((res) => {
133
            this.loading = false
134 135 136 137 138 139 140 141 142 143 144 145 146 147
            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 {
148
              if (res.result && res.result.length > 0) {
149 150 151 152
                ywPopupDialog("申请错误明细", "components/ywdialog", { result: res.result }, '36%', true)
              } else {
                ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message }, '36%', true)
              }
153
            }
154 155
          }).catch(() => {
            this.loading = false
156
          })
157
        } else {
158
          this.loading = true
159 160 161 162
          choiceBdcdy({
            bsmSlsq: this.$route.query.bsmSlsq,
            bdcdysz: this.bdcdysz,
          }).then((res) => {
163
            this.loading = false
164 165 166 167 168 169 170 171 172 173 174
            if (res.code == 200) {
              this.$message({
                showClose: true,
                message: "发起申请成功",
                type: "success",
              });
              store.dispatch("user/refreshPage", true);
            } else {
              this.$message.error(res.message);
            }
            this.$popupCacel();
175 176 177
          }).catch(() => {
            this.loading = false
          })
178 179
        }
      },
yuanbo committed
180 181 182 183 184
      /**
       * @description: handleSelectionChange
       * @param {*} val
       * @author: renchao
       */
185
      handleSelectionChange (val) {
186 187 188 189 190 191 192 193 194
        if (this.sqywInfo.sqywdylx == "1") {
          if (val.length > 1) {
            this.bdcdysz = [...val[val.length - 1]];
          } else {
            this.bdcdysz = val;
          }
        } else {
          this.bdcdysz = val;
        }
195
      },
yuanbo committed
196 197 198 199 200 201
      /**
       * @description: select
       * @param {*} selection
       * @param {*} row
       * @author: renchao
       */
202 203 204 205 206 207 208
      select (selection, row) {
        if (this.sqywInfo.sqywdylx == "1") {
          // 清除 所有勾选项
          this.$refs.table.clearSelection();
          // 当表格数据都没有被勾选的时候 就返回
          // 主要用于将当前勾选的表格状态清除
          if (selection.length == 0) return;
209
          this.$refs.table.toggleRowSelection(row, true);
210
        }
211
      },
yuanbo committed
212 213 214 215 216
      /**
       * @description: handleRowClick
       * @param {*} row
       * @author: renchao
       */
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
      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);
        }
      },
240 241 242 243 244
      /**
  * @description: openBook
  * @param {*} row
  * @author: miaofang
  */
245 246 247 248 249 250 251 252 253 254
      openBook (row) {
        var param = {
          bdcdyid: row.bdcdyid,
          qllx: row.qllx,
          bdcdyh: row.bdcdyh,
          bsmQlxx: row.bsmQlxx,
        };
        this.$popup("登记簿详情", "registerBook/djbFrame", {
          formData: param
        })
255 256 257
      }
    }
  }
任超 committed
258 259
</script>
<style scoped lang="scss">
260 261
  @import "~@/styles/mixin.scss";
  @import "~@/styles/public.scss";
任超 committed
262
</style>