Blame view

src/views/ywbl/slsqxx/zjgcdy/batchSlxx.vue 15 KB
1 2 3
<template>
  <!-- 受理信息 -->
  <div class="slxx">
xiaomiao committed
4 5 6 7
    <el-form
      class="loadingtext"
      :label-position="flag ? 'top' : ''"
      :inline="flag"
8
      label-width="140px">
9 10
      <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''">
        <div class="slxx_title title-block">
11
          申请业务信息
12 13
          <div class="triangle"></div>
        </div>
tianhaohao@pashanhoo.com committed
14
        <el-row :gutter="10" v-if="ruleForm.flow">
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
          <el-col :span="8">
            <el-form-item label="业务号:">
              <el-input disabled v-model="ruleForm.flow.ywh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="受理人员:">
              <el-input disabled v-model="ruleForm.slsq.slry"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="受理时间:">
              <el-input disabled v-model="ruleForm.slsq.slsj"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
tianhaohao@pashanhoo.com committed
31
        <el-row :gutter="10" v-if="ruleForm.sldyList">
32
          <el-col :span="8">
tianhaohao@pashanhoo.com committed
33
            <el-form-item label="权利类型:">
xiaomiao committed
34 35
              <el-input
                disabled
36
                v-model="ruleForm.sldyList[0].qllxmc"></el-input>
37 38 39
            </el-form-item>
          </el-col>
          <el-col :span="8">
40
            <el-form-item label="登记类型:">
xiaomiao committed
41 42
              <el-input
                disabled
43
                v-model="ruleForm.sldyList[0].djlxmc"></el-input>
44 45 46
            </el-form-item>
          </el-col>
          <el-col :span="8">
47
            <el-form-item label="登记情形:">
48 49 50 51
              <el-input disabled v-model="ruleForm.slsq.djqxmc"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
52 53
        <div
          class="slxx_title title-block"
54
          v-if="ruleForm.hlist && ruleForm.hlist.length > 0">
xiaomiao committed
55
          抵押户信息列表信息({{ ruleForm.hlist.length }} 户)
56
          <div class="triangle"></div>
57
        </div>
tianhaohao@pashanhoo.com committed
58
        <qjhTable :tableData="ruleForm.hlist" />
59 60 61 62
        <div class="slxx_title title-block">
          抵押信息
          <div class="triangle"></div>
        </div>
xiaomiao committed
63 64
        <el-row
          :gutter="10"
65
          v-if="ruleForm.diyaqList && ruleForm.diyaqList.length > 0">
66 67
          <el-col :span="8">
            <el-form-item label="抵押方式:">
68
              <el-radio-group disabled v-model="ruleForm.diyaqList[0].dyfs">
69 70 71 72
                <el-radio label="1">一般抵押</el-radio>
                <el-radio label="2">最高额抵押</el-radio>
              </el-radio-group>
            </el-form-item>
73 74
          </el-col>
          <el-col :span="8">
tianhaohao@pashanhoo.com committed
75
            <el-form-item label="抵押金额类型:">
xiaomiao committed
76 77
              <el-radio-group
                v-model="ruleForm.diyaqList[0].dyjelx"
78
                :disabled="!viewEdit">
tianhaohao@pashanhoo.com committed
79 80 81 82
                <el-radio label="0">独立抵押</el-radio>
                <el-radio label="1">整体抵押</el-radio>
              </el-radio-group>
            </el-form-item>
83
          </el-col>
84
          <el-col :span="8">
xiaomiao committed
85 86
            <el-form-item
              label="是否存在禁止或者限制转让抵押不动产的约定:"
87
              label-width="350px">
xiaomiao committed
88 89
              <el-radio-group
                v-model="ruleForm.diyaqList[0].sfczjzhxz"
90
                :disabled="!viewEdit">
91 92 93 94 95 96 97
                <el-radio label="1">启用</el-radio>
                <el-radio label="0">禁用</el-radio>
              </el-radio-group>
            </el-form-item>
          </el-col>
        </el-row>

xiaomiao committed
98 99
        <el-row
          :gutter="10"
100
          v-if="ruleForm.diyaqList && ruleForm.diyaqList.length > 0">
101
          <el-col :span="8" v-show="ruleForm.diyaqList[0].dyfs == 1">
102
            <el-form-item label="被担保主债权数额:">
xiaomiao committed
103 104
              <el-input
                v-model="ruleForm.diyaqList[0].bdbzzqse"
105
                :disabled="!viewEdit"></el-input>
xiaomiao committed
106 107
              <el-select
                v-model="ruleForm.diyaqList[0].jedw"
108
                :disabled="!viewEdit">
xiaomiao committed
109 110 111 112
                <el-option
                  v-for="item in dictData['A57']"
                  :key="item.dcode"
                  :label="item.dname"
113
                  :value="item.dcode">
114
                </el-option>
tianhaohao@pashanhoo.com committed
115
              </el-select>
116 117 118
            </el-form-item>
          </el-col>

119
          <el-col :span="8" v-show="ruleForm.diyaqList[0].dyfs == 2">
120
            <el-form-item label="最高债权额:">
xiaomiao committed
121 122
              <el-input
                v-model="ruleForm.diyaqList[0].zgzqse"
123
                :disabled="!viewEdit"></el-input>
xiaomiao committed
124 125
              <el-select
                v-model="ruleForm.diyaqList[0].jedw"
126
                :disabled="!viewEdit">
xiaomiao committed
127 128 129 130
                <el-option
                  v-for="item in dictData['A57']"
                  :key="item.dcode"
                  :label="item.dname"
131
                  :value="item.dcode">
132
                </el-option>
tianhaohao@pashanhoo.com committed
133
              </el-select>
134 135 136 137 138
            </el-form-item>
          </el-col>

          <el-col :span="8">
            <el-form-item label="债务履行起始时间:">
xiaomiao committed
139 140 141
              <el-date-picker
                v-model="ruleForm.diyaqList[0].zwlxqssj"
                :disabled="!viewEdit"
142
                type="date">
143 144 145 146 147
              </el-date-picker>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="债务履行结束时间:">
xiaomiao committed
148 149 150
              <el-date-picker
                v-model="ruleForm.diyaqList[0].zwlxjssj"
                :disabled="!viewEdit"
151
                type="date">
152 153 154 155 156
              </el-date-picker>
            </el-form-item>
          </el-col>
        </el-row>

xiaomiao committed
157
        <el-row v-if="ruleForm.diyaqList && ruleForm.diyaqList.length > 0">
158 159
          <el-col :span="24">
            <el-form-item label="担保范围:">
xiaomiao committed
160 161
              <el-input
                v-model="ruleForm.diyaqList[0].dbfw"
162
                :disabled="ruleForm.sldyList[0].djlx == '300' && !viewEdit"></el-input>
163 164 165
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
166
        <el-row v-if="ruleForm.diyaqList && ruleForm.diyaqList.length > 0">
167 168
          <el-col :span="24">
            <el-form-item label="最高债权确定事实和数额:">
xiaomiao committed
169 170
              <el-input
                v-model="ruleForm.diyaqList[0].zgzqqdss"
171
                :disabled="!viewEdit"></el-input>
172 173 174
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
175
        <el-row v-if="ruleForm.diyaqList && ruleForm.diyaqList.length > 0">
176 177
          <el-col>
            <el-form-item label="附记:" prop="fj">
xiaomiao committed
178 179 180 181 182
              <el-input
                type="textarea"
                maxlength="500"
                show-word-limit
                v-model="ruleForm.diyaqList[0].fj"
183
                :disabled="!viewEdit"></el-input>
184 185 186 187 188 189 190 191
            </el-form-item>
          </el-col>
        </el-row>

        <div class="slxx_title title-block">
          抵押权人信息
          <div class="triangle"></div>
        </div>
xiaomiao committed
192 193
        <el-row
          :gutter="10"
194
          v-if="ruleForm.sldyList && ruleForm.sldyList.length > 0">
195 196
          <el-col :span="14">
            <el-form-item label="共有方式:">
xiaomiao committed
197 198
              <el-radio-group
                :disabled="!viewEdit"
199
                v-model="ruleForm.sldyList[0].gyfs">
200 201 202 203 204 205 206
                <el-radio label="0">单独所有</el-radio>
                <el-radio label="1">共同共有</el-radio>
                <el-radio label="2">按份所有</el-radio>
                <el-radio label="3">其它共有</el-radio>
              </el-radio-group>
            </el-form-item>
          </el-col>
207 208

          <el-col :span="5" v-show="ruleForm.sldyList[0].gyfs != '0'">
209
            <el-form-item label="是否分别持证:">
xiaomiao committed
210 211 212
              <el-radio-group
                v-model="ruleForm.sldyList[0].sqfbcz"
                :disabled="!viewEdit"
213
                @input="updaterow()">
214 215 216 217 218
                <el-radio label="1"></el-radio>
                <el-radio label="0"></el-radio>
              </el-radio-group>
            </el-form-item>
          </el-col>
xiaomiao committed
219 220 221 222 223
          <el-col
            :span="5"
            v-show="
              ruleForm.sldyList[0].gyfs != '0' &&
              ruleForm.sldyList[0].sqfbcz == '0'
224
            ">
225
            <el-form-item label="持证人:">
xiaomiao committed
226 227 228
              <el-select
                v-model="czr"
                placeholder="持证人"
229
                :disabled="!viewEdit">
xiaomiao committed
230 231 232 233
                <el-option
                  v-for="item in czrOptions"
                  :key="item.value"
                  :label="item.label"
234
                  :value="item.value">
235 236 237 238 239
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
240 241 242 243 244
        <qlrCommonTable
          v-if="ruleForm.sldyList && ruleForm.sldyList.length > 0"
          :tableData="ruleForm.qlrList"
          @upDateQlrxxList="upDateQlrxxList"
          :disabled="viewEdit"
245
          :gyfs="ruleForm.sldyList[0].gyfs" />
246 247 248 249
        <div class="slxx_title title-block">
          抵押人信息
          <div class="triangle"></div>
        </div>
xiaomiao committed
250 251 252
        <qlrCommonTable
          :tableData="ruleForm.ywrList"
          @upDateQlrxxList="upDateYwrxxList"
253
          :disabled="viewEdit" />
254 255 256 257 258

        <div class="slxx_title title-block">
          登记原因
          <div class="triangle"></div>
        </div>
xiaomiao committed
259 260
        <el-row
          :gutter="10"
261
          v-if="ruleForm.diyaqList && ruleForm.diyaqList.length > 0">
262
          <el-col>
xiaomiao committed
263 264 265
            <el-form-item
              v-if="ruleForm.sldyList[0].djlx == '400'"
              label="注销抵押原因:"
266
              prop="djyy">
xiaomiao committed
267 268 269 270
              <el-input
                class="textArea"
                type="textarea"
                :disabled="!viewEdit"
271
                v-model="ruleForm.diyaqList[0].zxdyyy">
272 273 274
              </el-input>
            </el-form-item>
            <el-form-item v-else label="登记原因:" prop="djyy">
xiaomiao committed
275 276 277 278 279 280
              <el-input
                class="textArea"
                type="textarea"
                maxlength="500"
                show-word-limit
                :disabled="!viewEdit"
281
                v-model="ruleForm.diyaqList[0].djyy">
282 283 284 285 286
              </el-input>
            </el-form-item>
          </el-col>
        </el-row>
      </div>
287
      <el-row class="btn" v-if="viewEdit">
288 289 290 291 292 293 294 295
        <el-form-item>
          <el-button type="primary" @click="onSubmitClick()">保存</el-button>
        </el-form-item>
      </el-row>
    </el-form>
  </div>
</template>
<script>
296 297 298 299 300 301 302 303 304
  import qjhTable from "@/views/workflow/components/qjhTable";
  import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
  import { bacthInit, saveBatchData } from "@/api/workflow/zjgcdyFlow.js";
  import { mapGetters } from "vuex";
  export default {
    mounted () {
      this.viewEdit = this.$parent.currentSelectTab.ableOperation;
      this.propsParam = this.$attrs;
      var formdata = new FormData();
305

306 307 308 309 310 311 312 313 314 315 316 317 318
      this.$startLoading();
      formdata.append("bsmSlsq", this.$route.query.bsmSlsq);
      formdata.append("djlx", this.propsParam.djlx);
      formdata.append("isEdit", this.viewEdit);
      bacthInit(formdata).then((res) => {
        this.$endLoading();
        if (res.code === 200 && res.result) {
          this.ruleForm = res.result;
          this.czrOptions = this.ruleForm.qlrList;
          this.ruleForm.qlrList.forEach((item) => {
            if (item.sfczr == 1) {
              this.czr = item.zjh
            }
xiaomiao committed
319
          });
320 321
        } else {
          this.$message.error(res.message);
322
        }
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
      });
    },
    components: { qlrCommonTable, qjhTable },
    computed: {
      ...mapGetters(["dictData", "flag"]),
    },
    data () {
      return {
        //表单是否可操作
        viewEdit: true,
        disabled: true,
        czrOptions: [],
        czr: "",
        ruleForm: {},
        //传递参数
        propsParam: {},
        rules: {},
        tableData: [],
      };
    },
    methods: {
      /**
       * @description: onSubmitClick
       * @author: renchao
       */
      onSubmitClick () {
        let that = this;
        if (this.ruleForm.qlrList.length == 0) {
351 352
          this.$message({
            showClose: true,
353
            message: "请确认抵押权人信息",
354 355 356 357
            type: "error",
          });
          return false;
        }
358 359 360 361 362 363 364 365 366 367
        if (ruleForm.sldyList[0].gyfs == "0") {
          if (this.ruleForm.qlrList.length > 1) {
            this.$message({
              showClose: true,
              message: "共有方式:单独所有,权利人只能是一个人",
              type: "error",
            });
            return false;
          }
          this.ruleForm.qlrList[0].sfczr = "1";
368
        } else {
369 370
          if (this.ruleForm.qlrList.length <= 1) {
            this.$message({
371
              showClose: true,
372 373
              message:
                "共有方式:共同所有,按份所有,其他所有,权利人必须是两个以上",
374 375 376 377
              type: "error",
            });
            return false;
          }
378 379 380 381
          //是否分别持证
          if (this.ruleForm.sldyList[0].sqfbcz == "1") {
            //是
            this.ruleForm.qlrList.forEach((item, index) => {
382
              item.sfczr = "1";
383 384 385 386 387 388 389 390 391
            });
          } else {
            if (!that.czr) {
              that.$message({
                showClose: true,
                message: "请选择持证人",
                type: "error",
              });
              return false;
392
            }
393 394 395 396 397 398 399 400
            this.ruleForm.qlrList.forEach((item, index) => {
              if (item.zjh == that.czr) {
                item.sfczr = "1";
              } else {
                item.sfczr = "0";
              }
            });
          }
401
        }
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
        saveBatchData(this.ruleForm, this.propsParam.djlx).then((res) => {
          if (res.code === 200) {
            this.$message({
              showClose: true,
              message: "保存成功!",
              type: "success",
            });
            this.$store.dispatch("user/refreshPage", true);
          } else {
            this.$message({
              showClose: true,
              message: res.message,
              type: "error",
            });
          }
        });
      },
      // 是否持证人变化
      /**
       * @description: 是否持证人变化
       * @param {*} val
       * @author: renchao
       */
      updaterow () {
        this.czr = "";
      },
      /**
       * @description: 更新权利人信息
       * @param {*} val
       * @author: renchao
       */
      upDateQlrxxList (val) {
        if (!_.isEqual(val, this.ruleForm.qlrList)) {
          this.ruleForm.qlrList = _.cloneDeep(val);
          this.czrOptions = this.ruleForm.qlrList;
437
        }
438 439 440 441 442 443 444 445 446 447 448
      },
      /**
       * @description: 更新义务人信息
       * @param {*} val
       * @author: renchao
       */
      upDateYwrxxList (val) {
        if (!_.isEqual(val, this.ruleForm.ywrList)) {
          this.ruleForm.ywrList = _.cloneDeep(val);
        }
      },
xiaomiao committed
449
    },
450
  };
451
</script>
xiaomiao committed
452
<style scoped lang="scss">
453 454
  @import "~@/styles/public.scss";
  @import "~@/styles/slxx/slxx.scss";
455
</style>