Blame view

src/views/djbworkflow/components/dialog/addQlr.vue 19.7 KB
1
<!--
2
 * @Description:
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-10-17 13:18:17
5 6
-->
<template>
xiaomiao committed
7 8
  <dialogBox
    title="权利人信息"
9
    width="75%"
xiaomiao committed
10 11 12 13 14
    isMain
    v-model="myValue"
    :isFullscreen="false"
    @submitForm="submitForm"
    @closeDialog="closeDialog"
15 16 17 18 19 20 21
    :isButton="isShow">
    <el-tabs v-model="activeName" @tab-click="handleClick" class="from-clues-header">
      <el-tab-pane label="基本信息" name="1"></el-tab-pane>
      <el-tab-pane label="企业信息" v-if="showButton" name="2"></el-tab-pane>
      <el-tab-pane label="银行机构" v-if="showButton" name="3"></el-tab-pane>
    </el-tabs>

xiaomiao committed
22 23
    <el-form
      :model="ruleForm"
24
      v-if="activeName==1"
xiaomiao committed
25 26
      :rules="rules"
      ref="ruleForm"
27 28 29 30 31
      label-width="120px">
      <el-form-item label="身份证读卡器">
        <el-button type="text" icon="el-icon-tickets" :disabled="!showButton" @click="readClick">读取</el-button>
        <el-button type="primary" v-if="isBz" @click="handleFilings">信息备案</el-button>
      </el-form-item>
32 33
      <el-row>
        <el-col :span="8">
xiaomiao committed
34 35 36 37 38
          <el-form-item label="权利人类型" prop="qlrlx">
            <el-select
              clearable
              v-model="ruleForm.qlrlx"
              class="width100"
xiaomiao committed
39
              :disabled="!showButton"
40
              placeholder="请选择">
xiaomiao committed
41 42 43 44
              <el-option
                v-for="item in dictData['A36']"
                :key="item.dcode"
                :label="item.dname"
45
                :value="item.dcode">
46 47 48 49 50
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="8">
xiaomiao committed
51
          <el-form-item label="姓名/名称" prop="qlrmc">
52
            <el-input
xiaomiao committed
53 54
              v-model="ruleForm.qlrmc"
              maxlegth="15"
55
              :disabled="!showButton"></el-input>
56 57 58 59
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item label="证件种类" prop="zjzl">
60
            <el-select
xiaomiao committed
61 62
              clearable
              v-model="ruleForm.zjzl"
xiaomiao committed
63
              :disabled="!showButton"
xiaomiao committed
64
              class="width100"
65 66
              @change="handleZjzl"
              placeholder="请选择">
xiaomiao committed
67 68 69 70
              <el-option
                v-for="item in dictData['A30']"
                :key="item.dcode"
                :label="item.dname"
71
                :value="item.dcode">
72 73 74 75 76 77
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
      </el-row>
      <el-row>
78
        <el-col :span="8">
79
          <el-form-item label="证件号" prop="zjh">
xiaomiao committed
80 81
            <el-input
              v-model="ruleForm.zjh"
xiaomiao committed
82 83
              :disabled="!showButton"
              maxlength="18"
84
              oninput="this.value=this.value.replace(/[^\X0-9]/g,'')"></el-input>
85 86 87 88
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item label="联系电话" prop="dh">
xiaomiao committed
89 90
            <el-input
              v-model="ruleForm.dh"
xiaomiao committed
91
              :disabled="!showButton"
xiaomiao committed
92
              maxlength="11"
93
              oninput="value=value.replace(/[^\d]/g,'')"></el-input>
94 95
          </el-form-item>
        </el-col>
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
        <el-col :span="8">
          <el-form-item label="性别">
            <el-select
              clearable
              v-model="ruleForm.xb"
              :disabled="!showButton"
              class="width100"
              placeholder="请选择">
              <el-option
                v-for="item in dictData['A43']"
                :key="item.dcode"
                :label="item.dname"
                :value="item.dcode">
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
      </el-row>
      <el-row>
115
        <el-col :span="8">
xiaomiao committed
116 117 118 119
          <el-form-item label="权利比例">
            <el-input
              v-model="ruleForm.qlbl"
              maxlength="32"
120
              :disabled="!showButton || this.ruleForm.gyfs == 1"></el-input>
121 122 123
          </el-form-item>
        </el-col>
        <el-col :span="8">
xiaomiao committed
124 125 126 127
          <el-form-item label="法人名称" prop="frmc">
            <el-input
              v-model="ruleForm.frmc"
              maxlength="32"
128
              :disabled="!showButton"></el-input>
129 130 131
          </el-form-item>
        </el-col>
        <el-col :span="8">
xiaomiao committed
132 133 134 135
          <el-form-item label="国家/地区" prop="gj">
            <el-input
              v-model="ruleForm.gj"
              maxlength="3"
136
              :disabled="!showButton"></el-input>
137 138
          </el-form-item>
        </el-col>
139 140
      </el-row>
      <el-row>
141 142
        <el-col :span="8">
          <el-form-item label="户籍所在省市">
xiaomiao committed
143 144 145
            <el-input
              v-model="ruleForm.hjszss"
              maxlength="3"
146
              :disabled="!showButton"></el-input>
147 148
          </el-form-item>
        </el-col>
149
        <el-col :span="16">
150
          <el-form-item label="地址">
xiaomiao committed
151 152 153
            <el-input
              v-model="ruleForm.dz"
              maxlength="100"
154
              :disabled="!showButton"></el-input>
155 156 157 158 159 160 161
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item label="发证机关">
xiaomiao committed
162 163 164
            <el-input
              v-model="ruleForm.fzjg"
              maxlength="10"
165
              :disabled="!showButton"></el-input>
166 167 168 169
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item label="电子邮件">
xiaomiao committed
170 171 172
            <el-input
              v-model="ruleForm.dzyj"
              :disabled="!showButton"
173
              maxlength="25"></el-input>
174 175 176
          </el-form-item>
        </el-col>
        <el-col :span="8">
xiaomiao committed
177 178 179 180 181
          <el-form-item label="邮编" prop="yb">
            <el-input
              v-model.number="ruleForm.yb"
              :disabled="!showButton"
              maxlength="6"
182
              oninput="value=value.replace(/[^\d]/g,'')"></el-input>
183 184 185 186 187 188 189
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item label="工作单位">
xiaomiao committed
190 191 192
            <el-input
              v-model="ruleForm.gzdw"
              maxlength="32"
193
              :disabled="!showButton"></el-input>
194 195 196 197
          </el-form-item>
        </el-col>
        <el-col :span="16">
          <el-form-item label="代理机构">
xiaomiao committed
198 199 200
            <el-input
              v-model="ruleForm.dlrjgmc"
              maxlength="32"
201
              :disabled="!showButton"></el-input>
202 203 204 205 206 207 208
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item label="代理人姓名">
xiaomiao committed
209 210 211
            <el-input
              v-model="ruleForm.dlrxm"
              maxlength="15"
212
              :disabled="!showButton"></el-input>
213 214 215 216
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item label="代理人证件类型">
xiaomiao committed
217 218 219
            <el-select
              clearable
              v-model="ruleForm.dlrzjlx"
xiaomiao committed
220
              :disabled="!showButton"
xiaomiao committed
221
              class="width100"
222
              placeholder="请选择">
xiaomiao committed
223 224 225 226
              <el-option
                v-for="item in dictData['A30']"
                :key="item.dcode"
                :label="item.dname"
227
                :value="item.dcode">
228 229 230 231 232
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="8">
233 234 235
          <el-form-item label="代理人证件号">
            <el-input
              v-model="ruleForm.dlrzjh"
xiaomiao committed
236
              :disabled="!showButton"
237
              maxlength="18"></el-input>
xiaomiao committed
238 239
          </el-form-item>
        </el-col>
240 241
      </el-row>
      <el-row>
xiaomiao committed
242
        <el-col :span="8">
243
          <el-form-item label="代理人电话">
xiaomiao committed
244
            <el-input
245
              v-model="ruleForm.dlrdhhm"
xiaomiao committed
246
              :disabled="!showButton"
247 248
              maxlength="11"
              oninput="value=value.replace(/[^\d]/g,'')"></el-input>
249 250 251 252
          </el-form-item>
        </el-col>
      </el-row>
    </el-form>
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331

    <div v-if="activeName==2" class="padding10">
      <el-form :model="queryFormQY" label-width="80px">
        <el-row>
          <el-col :span="8">
            <el-form-item label="姓名/名称">
              <el-input placeholder="姓名/名称" v-model="queryFormQY.qymc" clearable class="width100">
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="证件号">
              <el-input placeholder="证件号" v-model="queryFormQY.zjh" clearable class="width100">
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8" class="btnColRight">
            <el-form-item>
              <el-button type="primary" @click="handleSearchQY">查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
      <el-table :data="tableDataQy.data" border v-Loading="loading" :height="426.8">
        <el-table-column label="序号" type="index" width="50" align="center">
          <template slot-scope="scope">
            {{(pageData.currentPage - 1) * pageData.pageSize + scope.$index + 1}}
          </template>
        </el-table-column>
        <el-table-column v-for="item in tableDataQy.columns" :key="item.index" :width="item.width" :prop="item.prop" :label="item.label" align="center">
        </el-table-column>
        <el-table-column label="操作" width="50">
          <template slot-scope="scope">
            <el-button type="text" @click="handleSelect(scope.row)">使用</el-button>
          </template>
        </el-table-column>
      </el-table>
      <el-pagination background layout="prev, pager, next,total" :total="tableDataQy.total"
        @current-change="handleQYCurrentChange"></el-pagination>
    </div>
    <div v-if="activeName==3" class="padding10">
      <el-form :model="queryFormYH" label-width="80px">
        <el-row>
          <el-col :span="8">
            <el-form-item label="姓名/名称">
              <el-input placeholder="姓名/名称" v-model="queryFormYH.qymc" clearable class="width100">
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="证件号">
              <el-input placeholder="证件号" v-model="queryFormYH.zjh" clearable class="width100">
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8" class="btnColRight">
            <el-form-item>
              <el-button type="primary" @click="handleSearchYH">查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
      <el-table :data="tableDataYh.data" border v-Loading="loading" :height="426.8">
        <el-table-column label="序号" type="index" width="50" align="center">
          <template slot-scope="scope">
            {{(pageData.currentPage - 1) * pageData.pageSize + scope.$index + 1}}
          </template>
        </el-table-column>
        <el-table-column v-for="item in tableDataYh.columns" :key="item.index" :prop="item.prop" :label="item.label" align="center">
        </el-table-column>
        <el-table-column label="操作" width="50">
          <template slot-scope="scope">
            <el-button type="text" @click="handleSelect(scope.row)">使用</el-button>
          </template>
        </el-table-column>
      </el-table>
      <el-pagination background layout="prev, pager, next,total" :total="tableDataYh.total"
        @current-change="handleYHCurrentChange"></el-pagination>
    </div>
332 333 334
  </dialogBox>
</template>
<script>
335 336 337 338 339 340 341 342 343 344 345 346
  import { mapGetters } from "vuex";
  import store from '@/store/index.js'
  import { replace } from "@/api/company.js"
  import { getUuid } from "@/utils/operation.js"
  import { getIdCardInfo } from '@/utils/operation.js'
  import { queryQyByPage, queryYhByPage, addQy } from "@/api/xxba.js";
  import { dataYh, dataQy, sendThis } from "./addQlrData";
  export default {
    props: {
      value: { type: Boolean, default: false },
      details: { type: Object, default: {} },
      showButton: { type: Boolean, default: false },
xiaomiao committed
347
    },
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
    computed: {
      ...mapGetters(["dictData"]),
    },
    mounted () {
      sendThis(this);
    },
    data () {
      return {
        isShow: false,
        isBz: false,
        activeName: '1',
        loading: false,
        myValue: this.value,
        ruleForm: {
          bsmBdcqz: "",
          bsmQlr: "",
          bsmQlxx: "",
          bz: "",
          cbfbm: "",
          dh: "",
          dlrdhhm: "",
          dlrjgmc: "",
          dlrxm: "",
          dlrzjh: "",
          dlrzjlx: "",
          dz: "",
          dzyj: "",
          fbfbm: "",
          frdh: "",
          frmc: "",
          fzjg: "",
          gj: "",
          gzdw: "",
          hjszss: "",
          qlrlx: "",
          qlrmc: "",
          qlrtz: "",
          sfczr: "",
          sshy: "",
          sxh: 0,
          xb: "",
          yb: "",
          zjh: "",
          zjzl: "",
        },
        rules: {
          qlrlx: [{ required: true, message: "权利人类型", trigger: "change" }],
          qlrmc: [{ required: true, message: "姓名/名称", trigger: "blur" }],
          zjzl: [{ required: true, message: "证件种类", trigger: "change" }],
          zjh: [{ required: true, message: "证件号", trigger: "blur" }],
        },
        pageData: {
          currentPage: 1,
          pageSize: 8
        },
        // 企业
        queryFormQY: {
          qymc: "",
          zjh: ""
        },
        tableDataQy: {
          total: 0,
          columns: dataQy.columns(),
          data: [],
        },
        // 银行
        queryFormYH: {
          qymc: "",
          zjh: ""
        },
        tableDataYh: {
          total: 0,
          columns: dataYh.columns(),
          data: [
          ]
        }
      }
xiaomiao committed
425
    },
426 427 428 429 430 431 432 433 434 435 436 437 438 439
    watch: {
      value (val) {
        this.myValue = _.cloneDeep(val)
        if (val && Object.keys(this.details).length > 0) {
          this.activeName = '1'
        }
        this.isShow = this.showButton
      },
      details: {
        handler: function (val, oldVal) {
          this.ruleForm = val;
        },
        deep: true
      }
xiaomiao committed
440
    },
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
    methods: {
      handleZjzl (val) {
        if (['6', '7', '8'].includes(val)) {
          this.isBz = true
        } else {
          this.isBz = false
        }
      },
      /**
       * @description: 信息备案
       * @author: renchao
       */
      handleFilings () {
        this.ruleForm.qymc = this.ruleForm.qlrmc
        this.ruleForm.dwdz = this.ruleForm.dz
        addQy(this.ruleForm).then(res => {
          if (res.code == 200) {
            this.$message.success('备案成功')
          } else {
            this.$message.error(res.message);
          }
        })
      },
      /**
       * @description: handleClick
       * @author: renchao
       */
      handleClick (event, tab) {
        if (this.activeName != 1) {
          this.isShow = false
xiaomiao committed
471
        } else {
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
          this.isShow = true
        }
        this.pageData.currentPage = 1
        if (this.activeName == 2) {
          this.handleSearchQY()
        } else {
          this.handleSearchYH()
        }
      },
      /**
       * @description:企业查询
       * @param {*} val
       * @param {*} code
       * @author: renchao
       */
      dicStatus (val, code) {
        let data = store.getters.dictData[code],
          name = '暂无'
        if (data) {
          data.map((item) => {
            if (item.dcode == val) {
              name = item.dname
            }
          })
          return name
xiaomiao committed
497
        }
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
      },
      /**
       * @description: 企业信息搜索
       * @author: renchao
       */
      handleSearchQY () {
        let data = { ...this.queryFormQY, ...this.pageData }
        this.tableDataQy.data = []
        queryQyByPage(data).then((res) => {
          if (res.code === 200) {
            let { total, records } = res.result;
            this.tableDataQy.total = total;
            this.tableDataQy.data = records;
            this.tableDataQy.data.forEach(item => {
              item.zjzlMc = this.dicStatus(item.zjzl, 'A30')
              item.qlrmc = item.qymc
              item.dz = item.dwdz
            })
          }
        })
      },
      /**
       * @description: handleQYCurrentChange
       * @param {*} val
       * @author: renchao
       */
      handleQYCurrentChange (val) {
        this.pageData.currentPage = val
        this.handleSearchQY()
      },
      /**
       * @description: handlesQYSelect
       * @param {*} val
       * @author: renchao
       */
      handleSelect (val) {
        let that = this
        let bsmSldy = window.currentSelect.bsmSldy ? window.currentSelect.bsmSldy : ''
        this.$confirm('是否同步材料信息?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
539
          distinguishCancelAndClose: true,//区分取消与关闭
540 541
        }).then(() => {
          replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy).then(res => {
542
            that.$emit("updateDetail", _.cloneDeep({ ...val, qlrlx: '2', id: getUuid(16) }));
543 544 545 546 547 548 549 550 551 552
            that.$emit("input", false);
            if (res.code == 200) {
              that.$message({
                type: 'success',
                message: '同步成功!'
              })
            } else {
              this.$message.error(res.message);
            }
          })
553 554 555 556 557
        }).catch(action => {
          if (action == 'cancel') {
            that.$emit("updateDetail", _.cloneDeep({ ...val, sqrlx: '2' }));
            that.$emit("input", false);
          }
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
        })
      },
      /**
       * @description: 银行信息搜索
       * @author: renchao
       */
      handleSearchYH () {
        let data = { ...this.queryFormYH, ...this.pageData }
        this.tableDataYh.data = []
        queryYhByPage(data).then((res) => {
          if (res.code === 200) {
            let { total, records } = res.result;
            this.tableDataYh.total = total;
            this.tableDataYh.data = records;
            this.tableDataYh.data.forEach(item => {
              item.zjzlMc = this.dicStatus(item.zjzl, 'A30')
              item.qlrmc = item.qymc
              item.dz = item.dwdz
            })
          }
        })
      },
      /**
       * @description: handleYHCurrentChange
       * @param {*} val
       * @author: renchao
       */
      handleYHCurrentChange (val) {
        this.pageData.currentPage = val
        this.handleSearchQY()
      },
      /**
       * @description: 身份证打卡器
       * @author: renchao
       */
      readClick () {
        getIdCardInfo().then(res => {
          if (res.data.code == 0) {
            let data = res.data.IDCardInfo
            this.ruleForm.qlrmc = data.name
            this.ruleForm.zjzl = '1'
            this.ruleForm.zjh = data.cardID
            this.ruleForm.xb = data.sexCode
            this.ruleForm.dz = data.address
            this.ruleForm.fzjg = data.issueOrgan
            this.$message({
              message: '读取成功!',
              type: 'success'
            })
          } else {
            this.$message({
              message: res.data.message,
              type: 'warning'
            })
          }
        })
      },
      /**
       * @description: closeDialog
       * @author: renchao
       */
      closeDialog () {
        this.$emit("input", false);
        this.$refs["ruleForm"].resetFields();
      },
      /**
       * @description: submitForm
       * @author: renchao
       */
      submitForm () {
        this.$refs.ruleForm.validate((valid) => {
          if (valid) {
            this.$emit("input", false);
            this.$emit("updateDetail", _.cloneDeep(this.ruleForm));
          } else {
            return false;
          }
        });
      },
637
    },
638
  };
639 640
</script>
<style scoped lang="scss">
641 642 643 644 645 646 647 648 649 650
  @import "~@/styles/dialogBoxheader.scss";
  .submit-button {
    text-align: center;
    height: 52px;
    padding-top: 10px;
    background-color: #fff;
  }
  .padding10 {
    padding-bottom: 10px;
  }
651
</style>