Urpp.vue 27.6 KB
Newer Older
jianglong committed
1 2
<template>
  <div class="eibs-tab">
javaHeight committed
3
    <c-col :span="12" style="padding-right: 20px">
wangna committed
4 5
      <el-form-item label="单据编号" prop="bpdgrp.rec.pntref">
        <c-input
LiRui committed
6
          disabled
wangna committed
7 8
          v-model="model.bpdgrp.rec.pntref"
          maxlength="16"
LiRui committed
9
          placeholder=""
wangna committed
10 11 12 13
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
14
    <c-col :span="12" style="padding-left: 20px">
wangna committed
15 16 17 18 19 20 21 22 23
      <el-form-item label="摘要" prop="bpdgrp.rec.pntnam">
        <c-input
          v-model="model.bpdgrp.rec.pntnam"
          maxlength="40"
          placeholder="请输入摘要"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
24
    <c-col :span="12" style="padding-right: 20px">
wangna committed
25 26 27 28 29 30 31 32 33
      <el-form-item label="融资业务编号" prop="bpdgrp.rec.ownref">
        <c-input
          v-model="model.bpdgrp.rec.ownref"
          maxlength="16"
          placeholder="请输入融资业务编号"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
34
    <c-col :span="12" style="padding-left: 20px">
wangna committed
35 36 37 38 39 40 41 42 43
      <el-form-item label="摘要" prop="bpdgrp.rec.nam">
        <c-input
          v-model="model.bpdgrp.rec.nam"
          maxlength="40"
          placeholder="请输入摘要"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
44
    <c-col :span="12" style="padding-right: 20px">
wangna committed
45 46 47 48 49 50 51 52 53
      <el-form-item label="参考号" prop="bptp.fpdgrp.rec.ownref">
        <c-input
          v-model="model.bptp.fpdgrp.rec.ownref"
          maxlength="16"
          placeholder="请输入参考号"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
54
    <c-col :span="12" style="padding-left: 20px">
wangna committed
55 56 57 58 59 60 61 62 63
      <el-form-item label="摘要" prop="bptp.fpdgrp.rec.nam">
        <c-input
          v-model="model.bptp.fpdgrp.rec.nam"
          maxlength="40"
          placeholder="请输入摘要"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
64
    <c-col :span="12" style="padding-right: 20px">
wangna committed
65 66 67 68 69 70
      <el-form-item label="福费廷类型" prop="bpdgrp.rec.fortyp">
        <c-select
          v-model="model.bpdgrp.rec.fortyp"
          style="width: 100%"
          placeholder="请选择福费廷类型"
        >
liaoxing committed
71 72 73 74 75 76 77
        <el-option
            v-for="item in codes.fortyp"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
wangna committed
78 79 80 81
        </c-select>
      </el-form-item>
    </c-col>

javaHeight committed
82
    <c-col :span="12" style="padding-left: 20px">
wangna committed
83 84 85
      <el-form-item label="信用证类型" prop="bpdgrp.rec.lctyp">
        <c-select
          v-model="model.bpdgrp.rec.lctyp"
liaoxing committed
86
          :code="codes.lctyp"
wangna committed
87
          style="width: 100%"
liaoxing committed
88
          disabled
wangna committed
89 90 91 92 93
          placeholder="请选择信用证类型"
        >
        </c-select>
      </el-form-item>
    </c-col>
javaHeight committed
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 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 332 333 334 335 336 337 338 339 340 341 342
    <!-- --------------------------------------------------------------------------------- -->

<!-- 开立银行 开证行 -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
          <el-form-item label="开证行" prop="bpdgrp.bu2.pts.ref">
            <c-input
              v-model="model.bpdgrp.bu2.pts.ref"
              maxlength="16"
              style="width: 100%"
              placeholder="请输入开证行参考号"
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="开证行申请人" prop="bpdgrp.bu2.pts.extkey">
            <c-fullbox>
              <c-input
                v-model="model.bpdgrp.bu2.pts.extkey"
                maxlength="50"
                placeholder="请输入申请人地址编码"
                @keyup.enter.native="
                  showGridPromptDialog('bpdgrp.bu2.pts.extkey')
                "
              ></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px"
                  size="small"
                  type="primary"
                  @click="onSeainf('bpdgrp.bu2.pts.extkey')"
                  icon="el-icon-search"
                >
                </c-button>
                <c-button
                  style="margin: 0 0"
                  size="small"
                  type="primary"
                  @click="onAplpDet"
                  icon="el-icon-info"
                >
                </c-button>
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="开证行名称地址" prop="bpdgrp.bu2.pts.adrblk">
            <c-input
              type="textarea"
              :rows="4"
              v-model="model.bpdgrp.bu2.pts.adrblk"
              maxlength="50"
              disabled
              show-word-limit
              placeholder="请输入名称地址"
            ></c-input>
          </el-form-item>
        </c-col>
    </c-col>

    <!-- 承兑银行 -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
          <el-form-item label="保兑行" prop="bpdgrp.bu3.pts.ref">
            <c-input
              v-model="model.bpdgrp.bu3.pts.ref"
              maxlength="16"
              style="width: 100%"
              placeholder="请输入保兑行参考号"
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="保兑行申请人" prop="bpdgrp.bu3.pts.extkey">
            <c-fullbox>
              <c-input
                v-model="model.bpdgrp.bu3.pts.extkey"
                maxlength="50"
                placeholder="请输入申请人地址编码"
                @keyup.enter.native="
                  showGridPromptDialog('bpdgrp.bu3.pts.extkey')
                "
              ></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px"
                  size="small"
                  type="primary"
                  @click="onSeainf('bpdgrp.bu3.pts.extkey')"
                  icon="el-icon-search"
                >
                </c-button>
                <c-button
                  style="margin: 0 0"
                  size="small"
                  type="primary"
                  @click="onAplpDet"
                  icon="el-icon-info"
                >
                </c-button>
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="保兑行名称地址" prop="bpdgrp.bu3.pts.adrblk">
            <c-input
              type="textarea"
              :rows="4"
              v-model="model.bpdgrp.bu3.pts.adrblk"
              maxlength="50"
              disabled
              show-word-limit
              placeholder="请输入名称地址"
            ></c-input>
          </el-form-item>
        </c-col>
    </c-col>

    <!-- 售卖银行 -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
          <el-form-item label="售卖行" prop="bpdgrp.inv.pts.ref">
            <c-input
              v-model="model.bpdgrp.inv.pts.ref"
              maxlength="16"
              style="width: 100%"
              placeholder="请输入售卖行参考号"
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="售卖行申请人" prop="bpdgrp.inv.pts.extkey">
            <c-fullbox>
              <c-input
                v-model="model.bpdgrp.inv.pts.extkey"
                maxlength="50"
                placeholder="请输入申请人地址编码"
                @keyup.enter.native="
                  showGridPromptDialog('bpdgrp.inv.pts.extkey')
                "
              ></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px"
                  size="small"
                  type="primary"
                  @click="onSeainf('bpdgrp.inv.pts.extkey')"
                  icon="el-icon-search"
                >
                </c-button>
                <c-button
                  style="margin: 0 0"
                  size="small"
                  type="primary"
                  @click="onAplpDet"
                  icon="el-icon-info"
                >
                </c-button>
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <!-- 售卖行名称地址 -->
        <c-col :span="24">
          <el-form-item label="售卖行名称地址" prop="bpdgrp.inv.pts.adrblk">
            <c-input
              type="textarea"
              :rows="4"
              v-model="model.bpdgrp.inv.pts.adrblk"
              maxlength="50"
              disabled
              show-word-limit
              placeholder="请输入名称地址"
            ></c-input>
          </el-form-item>
        </c-col>
    </c-col>

    <!-- 参与银行 -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
          <el-form-item label="参贷行" prop="bpdgrp.bu1.pts.ref">
            <c-input
              v-model="model.bpdgrp.bu1.pts.ref"
              maxlength="16"
              style="width: 100%"
              placeholder="请输入参贷行参考号"
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="参贷行申请人" prop="bpdgrp.bu1.pts.extkey">
            <c-fullbox>
              <c-input
                v-model="model.bpdgrp.bu1.pts.extkey"
                maxlength="50"
                placeholder="请输入申请人地址编码"
                @keyup.enter.native="
                  showGridPromptDialog('bpdgrp.bu1.pts.extkey')
                "
              ></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px"
                  size="small"
                  type="primary"
                  @click="onSeainf('bpdgrp.bu1.pts.extkey')"
                  icon="el-icon-search"
                >
                </c-button>
                <c-button
                  style="margin: 0 0"
                  size="small"
                  type="primary"
                  @click="onAplpDet"
                  icon="el-icon-info"
                >
                </c-button>
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="参与行名称地址" prop="bpdgrp.bu1.pts.adrblk">
            <c-input
              type="textarea"
              :rows="4"
              v-model="model.bpdgrp.bu1.pts.adrblk"
              maxlength="50"
              disabled
              show-word-limit
              placeholder="请输入名称地址"
            ></c-input>
          </el-form-item>
        </c-col>
    </c-col>
      <!-- ------------------------------------------------------ -->

    <!-- <c-col :span="12" style="padding-right: 20px">
wangna committed
343 344 345 346 347 348 349
      <el-form-item label="开证行" prop="bpdgrp.bu2.pts.ref">
        <c-input
          v-model="model.bpdgrp.bu2.pts.ref"
          maxlength="16"
          placeholder="请输入开证行"
        ></c-input>
      </el-form-item>
javaHeight committed
350
    </c-col> -->
wangna committed
351

javaHeight committed
352 353
    <!-- 承兑行 -->
    <!-- <c-col :span="12">
wangna committed
354 355 356 357
      <el-form-item label="保兑行" prop="bpdgrp.bu3.pts.ref">
        <c-input
          v-model="model.bpdgrp.bu3.pts.ref"
          maxlength="16"
javaHeight committed
358
          placeholder="请输入发票收件人参考号"
wangna committed
359 360
        ></c-input>
      </el-form-item>
javaHeight committed
361
    </c-col> -->
wangna committed
362

javaHeight committed
363
    <!-- <c-col :span="12" style="padding-right: 20px">
wangna committed
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
      <el-form-item
        label="Drag  Drop Sender"
        prop="bptp.bu2p.ptsget.sdamod.dadsnd"
      >
        <c-input
          v-model="model.bptp.bu2p.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item
        label="Drag  Drop Sender"
        prop="bptp.bu3p.ptsget.sdamod.dadsnd"
      >
        <c-input
          v-model="model.bptp.bu3p.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
javaHeight committed
385
    </c-col> -->
wangna committed
386

javaHeight committed
387 388
    <!-- 开立行 -->
    <!-- <c-col :span="12" style="padding-right: 20px">
wangna committed
389 390 391 392 393 394 395 396 397 398
      <el-form-item
        label="地址"
        prop="bpdgrp.bu2.pts.extkey"
      >
        <c-input
          v-model="model.bpdgrp.bu2.pts.extkey"
          maxlength="16"
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
399
    </c-col> -->
wangna committed
400

javaHeight committed
401 402
    <!-- 开立行 -->
    <!-- <c-col :span="12">
wangna committed
403 404 405 406 407 408
      <el-form-item label="" prop="bptp.bu2p.ptsget.sdamod.seainf">
        <c-input
          v-model="model.bptp.bu2p.ptsget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
javaHeight committed
409
    </c-col> -->
wangna committed
410

javaHeight committed
411
    <!-- <c-col :span="12">
wangna committed
412 413 414
      <c-button size="small" type="primary" @click="onBu2pDet">
        详情
      </c-button>
javaHeight committed
415
    </c-col> -->
wangna committed
416

javaHeight committed
417 418
    <!-- 承兑行 -->
    <!-- <c-col :span="12">
wangna committed
419 420 421 422 423 424 425 426 427 428
      <el-form-item
        label="地址"
        prop="bpdgrp.bu3.pts.extkey"
      >
        <c-input
          v-model="model.bpdgrp.bu3.pts.extkey"
          maxlength="16"
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
429
    </c-col> -->
wangna committed
430

javaHeight committed
431 432
    <!-- ????????bu3p  是bu3 ??????? -->
    <!-- <c-col :span="12">
wangna committed
433 434 435 436 437 438 439 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
      <el-form-item label="" prop="bptp.bu3p.ptsget.sdamod.seainf">
        <c-input
          v-model="model.bptp.bu3p.ptsget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onBu3pDet">
        详情
      </c-button>
    </c-col>

    <c-col :span="12">
      <el-form-item label="名称" prop="bpdgrp.bu2.namelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu2.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="名称" prop="bpdgrp.bu3.namelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu3.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
javaHeight committed
469 470
    </c-col> -->
    <!-- ????????????????????????????????????????? -->
wangna committed
471

javaHeight committed
472 473
    <!-- 开立行 -->
    <!-- <c-col :span="12">
wangna committed
474 475 476 477 478 479 480 481 482
      <el-form-item label="地址" prop="bpdgrp.bu2.pts.adrblk">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu2.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
483
    </c-col> -->
wangna committed
484

javaHeight committed
485
    <!-- <c-col :span="12">
wangna committed
486 487 488 489 490 491 492 493 494
      <el-form-item label="国内地址" prop="bpdgrp.bu2.dbfadrblkcn">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu2.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入国内地址"
        ></c-input>
      </el-form-item>
javaHeight committed
495
    </c-col> -->
wangna committed
496

javaHeight committed
497 498
    <!-- 承兑行 -->
    <!-- <c-col :span="12">
wangna committed
499 500 501 502 503 504 505 506 507
      <el-form-item label="地址" prop="bpdgrp.bu3.pts.adrblk">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu3.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
508
    </c-col> -->
wangna committed
509

javaHeight committed
510
    <!-- <c-col :span="12">
wangna committed
511 512 513 514 515 516 517 518 519
      <el-form-item label="国内地址" prop="bpdgrp.bu3.dbfadrblkcn">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu3.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入国内地址"
        ></c-input>
      </el-form-item>
javaHeight committed
520
    </c-col> -->
wangna committed
521

javaHeight committed
522 523
    <!-- ?????????????????????????????? -->
    <!-- <c-col :span="12">
wangna committed
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
      <el-form-item label="地址" prop="bpdgrp.bu2.adrelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu2.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="地址" prop="bpdgrp.bu3.adrelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu3.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
545 546
    </c-col> -->
    <!-- ??????????????????????? -->
wangna committed
547

javaHeight committed
548 549
    <!-- 售卖行 -->
    <!-- <c-col :span="12">
wangna committed
550 551 552 553 554 555 556
      <el-form-item label="发票收件人参考号" prop="bpdgrp.inv.pts.ref">
        <c-input
          v-model="model.bpdgrp.inv.pts.ref"
          maxlength="16"
          placeholder="请输入发票收件人参考号"
        ></c-input>
      </el-form-item>
javaHeight committed
557
    </c-col> -->
wangna committed
558

javaHeight committed
559 560
    <!-- 参与行 -->
    <!-- <c-col :span="12">
wangna committed
561 562 563 564 565 566 567
      <el-form-item label="参贷行" prop="bpdgrp.bu1.pts.ref">
        <c-input
          v-model="model.bpdgrp.bu1.pts.ref"
          maxlength="16"
          placeholder="请输入参贷行"
        ></c-input>
      </el-form-item>
javaHeight committed
568
    </c-col> -->
wangna committed
569

javaHeight committed
570
    <!-- <c-col :span="12">
wangna committed
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
      <el-form-item
        label="Drag  Drop Sender"
        prop="bptp.invp.ptsget.sdamod.dadsnd"
      >
        <c-input
          v-model="model.bptp.invp.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item
        label="Drag  Drop Sender"
        prop="bptp.bu1p.ptsget.sdamod.dadsnd"
      >
        <c-input
          v-model="model.bptp.bu1p.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
javaHeight committed
592
    </c-col> -->
wangna committed
593

javaHeight committed
594 595
    <!-- 售卖银行 -->
    <!-- <c-col :span="12">
wangna committed
596 597 598 599 600 601 602 603 604 605
      <el-form-item
        label="地址"
        prop="bpdgrp.inv.pts.extkey"
      >
        <c-input
          v-model="model.bpdgrp.inv.pts.extkey"
          maxlength="16"
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
606
    </c-col> -->
wangna committed
607

javaHeight committed
608 609
    <!-- ?????????????????????????????? -->
    <!-- <c-col :span="12">
wangna committed
610 611 612 613 614 615 616 617 618 619 620 621
      <el-form-item label="" prop="bptp.invp.ptsget.sdamod.seainf">
        <c-input
          v-model="model.bptp.invp.ptsget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onInvpDet">
        详情
      </c-button>
javaHeight committed
622 623
    </c-col> -->
    <!-- ?????????????????????????????? -->
wangna committed
624

javaHeight committed
625 626
    <!-- 参与行 -->
    <!-- <c-col :span="12">
wangna committed
627 628 629 630 631 632 633 634 635 636
      <el-form-item
        label="地址"
        prop="bpdgrp.bu1.pts.extkey"
      >
        <c-input
          v-model="model.bpdgrp.bu1.pts.extkey"
          maxlength="16"
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
637
    </c-col> -->
wangna committed
638

javaHeight committed
639 640
    <!-- ??????????????????????????????????? -->
    <!-- <c-col :span="12">
wangna committed
641 642 643 644 645 646 647 648 649 650 651 652
      <el-form-item label="" prop="bptp.bu1p.ptsget.sdamod.seainf">
        <c-input
          v-model="model.bptp.bu1p.ptsget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onBu1pDet">
        详情
      </c-button>
javaHeight committed
653 654
    </c-col> -->
    <!-- ??????????????????????????????????? -->
wangna committed
655

javaHeight committed
656
    <!-- <c-col :span="12">
wangna committed
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
      <el-form-item label="名称" prop="bpdgrp.inv.namelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.inv.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="名称" prop="bpdgrp.bu1.namelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu1.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
680
    售卖行名称地址
wangna committed
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
    <c-col :span="12">
      <el-form-item label="地址" prop="bpdgrp.inv.pts.adrblk">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.inv.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="国内地址" prop="bpdgrp.inv.dbfadrblkcn">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.inv.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入国内地址"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
705
    参与行
wangna committed
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
    <c-col :span="12">
      <el-form-item label="地址" prop="bpdgrp.bu1.pts.adrblk">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu1.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="国内地址" prop="bpdgrp.bu1.dbfadrblkcn">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu1.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入国内地址"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="地址" prop="bpdgrp.inv.adrelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.inv.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="地址" prop="bpdgrp.bu1.adrelc">
        <c-input
          type="textarea"
          v-model="model.bpdgrp.bu1.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
javaHeight committed
752
    </c-col> -->
wangna committed
753

javaHeight committed
754
    <!-- ----------------------------------------------------------------------------- -->
liaoxing committed
755
    <!-- v-show="(sysmod.apt.cod == 'BPTOPN' || sysmod.apt.cod == 'BPTADD') && bpdgrp.rec.fintyp == 'G' && bpdgrp.rec.fortyp == '2'" -->
javaHeight committed
756
    <c-col :span="12" style="padding-right: 20px">
liaoxing committed
757 758
      <el-form-item label="原一级市场买入融资借据号" prop="bpdgrp.rec.loanno" 
      v-show="model.bpdgrp.rec.fintyp == 'G' && model.bpdgrp.rec.fortyp == '2'">
wangna committed
759 760 761 762 763 764 765 766
        <c-input
          v-model="model.bpdgrp.rec.loanno"
          maxlength="20"
          placeholder="请输入原一级市场买入融资借据号"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
767
    <c-col :span="12" style="padding-left: 20px">
wangna committed
768 769 770
      <el-form-item
        label="国内信用证受益人统一信用代码"
        prop="bpdgrp.rec.benidcode"
liaoxing committed
771
        v-show="model.bpdgrp.rec.fintyp == 'G' && model.bpdgrp.rec.fortyp == '2'"
wangna committed
772 773 774 775 776 777 778 779 780
      >
        <c-input
          v-model="model.bpdgrp.rec.benidcode"
          maxlength="18"
          placeholder="请输入国内信用证受益人统一信用代码"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
781
    <c-col :span="24">
liaoxing committed
782 783
      <el-form-item label="国内证受益人中文名称" prop="bpdgrp.rec.bennam"
      v-show="model.bpdgrp.rec.fintyp == 'G' && model.bpdgrp.rec.fortyp == '2'">
wangna committed
784 785 786 787 788 789 790 791
        <c-input
          v-model="model.bpdgrp.rec.bennam"
          maxlength="100"
          placeholder="请输入国内证受益人中文名称"
        ></c-input>
      </el-form-item>
    </c-col>

javaHeight committed
792 793
    <!-- ----------------------------------------------------------------------- -->
      <c-col :span="12" style="padding-right: 20px">
794
        <c-col :span="24">
javaHeight committed
795
          <c-fullbox>
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
              <c-col :span="21">
                <el-form-item
                  label="境外付款人所属国家/地区"
                  prop="bpdgrp.rec.f0103"
                  v-show="model.bpdgrp.rec.fintyp == 'F' || model.bpdgrp.rec.fintyp == 'U'"
                  >
                  <c-input
                    v-model="model.bpdgrp.rec.f0103"
                    maxlength="3"
                    placeholder="请输入境外付款人所属国家/地区"
                    @keyup.enter.native="
                      showGridPromptDialog('bpdgrp.rec.f0103',null,null,
                        { COD: 'bpdgrp.rec.f0103' },
                        { COD: true },
                        'doxpDialog')
                    "
                    style="width: 100%"
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="3">
                <c-button
                    size="small"
                    type="primary"
                    icon="el-icon-search"
                    @click="onBptcodSelbut1"
                  >
javaHeight committed
823
                </c-button>
824 825 826 827 828 829 830
                <!-- @click="
                      showGridPromptDialog('bptp.bptcod.selbut1',null,null,
                        { COD: 'bpdgrp.rec.f0103' },
                        { COD: true },
                        'doxpDialog')
                    " -->
              </c-col>
javaHeight committed
831
          </c-fullbox>
832
        </c-col>
javaHeight committed
833

834 835 836 837 838 839 840 841 842 843 844 845 846

        <c-col :span="24">
          <el-form-item label="境外付款人所属部门" prop="bpdgrp.rec.f0104"
          v-show="model.bpdgrp.rec.fintyp == 'F' || model.bpdgrp.rec.fintyp == 'U'">
            <c-select
              v-model="model.bpdgrp.rec.f0104"
              :code="codes.f0104"
              style="width: 100%"
              placeholder="请选择境外付款人所属部门"
            >
            </c-select>
          </el-form-item>
        </c-col>
javaHeight committed
847 848 849 850 851 852
      </c-col>
      <!-- <c-col :span="12">
        
      </c-col> -->

      <c-col :span="12" style="padding-left: 20px">
liaoxing committed
853 854
        <el-form-item label="是否附有银行承兑汇票" prop="bpdgrp.rec.f0102"
        v-show="model.bpdgrp.rec.fintyp == 'F' || model.bpdgrp.rec.fintyp == 'U'">
javaHeight committed
855 856
          <c-select
            v-model="model.bpdgrp.rec.f0102"
liaoxing committed
857
            :code="codes.f0102"
javaHeight committed
858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
            style="width: 100%"
            placeholder="请选择是否附有银行承兑汇票"
          >
          </c-select>
        </el-form-item>
      </c-col>

      <!-- <c-col :span="12" style="padding-right: 20px">
        <el-form-item label="境外付款人所属部门" prop="bpdgrp.rec.f0104">
          <c-select
            v-model="model.bpdgrp.rec.f0104"
            style="width: 100%"
            placeholder="请选择境外付款人所属部门"
          >
          </c-select>
        </el-form-item>
      </c-col> -->

      <c-col :span="12" style="padding-left: 20px">
liaoxing committed
877 878
        <el-form-item label="境外付款人与本机构的关系" prop="bpdgrp.rec.f0105"
        v-show="model.bpdgrp.rec.fintyp == 'F' || model.bpdgrp.rec.fintyp == 'U'">
javaHeight committed
879 880
          <c-select
            v-model="model.bpdgrp.rec.f0105"
liaoxing committed
881
            :code="codes.f0105"
javaHeight committed
882 883 884 885 886 887
            style="width: 100%"
            placeholder="请选择境外付款人与本机构的关系"
          >
          </c-select>
        </el-form-item>
      </c-col>
wangna committed
888

jianglong committed
889 890 891
  </div>
</template>
<script>
wangna committed
892
import Api from "~/service/Api";
jianglong committed
893
import commonProcess from "~/mixin/commonProcess";
wangna committed
894 895
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bptopn/Event";
jianglong committed
896 897

export default {
wangna committed
898 899 900 901
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
liaoxing committed
902 903 904 905 906 907
    return {
      codes: {
        ...CodeTable,
      },
    };
    
wangna committed
908 909 910 911
  },
  methods: { ...Event },
  created: function () {},
};
jianglong committed
912 913 914
</script>
<style>
</style>