Sel.vue 23.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 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 343 344 345 346 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 425 426 427 428 429 430 431 432 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 469 470 471 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 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 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 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 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 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 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 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 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
<template>
  <div class="eibs-tab">
    <!-- 左 -->
    <el-col :span="11">
      <c-col :span="24">
        <c-form-item label="L/C Reference" prop="lidgrp.lid.ownref">
          <c-fullbox>
            <c-input
              v-model="model.lidget.lid.ownref"
              maxlength="16"
              style="width: 100%"
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
              >
                <i class="el-icon-info"></i>
              </c-button>
              <c-checkbox v-model="model.lidget.clsflg">Show closed</c-checkbox>
            </template>
          </c-fullbox>
        </c-form-item>
      </c-col>
      <div v-if="hotreg == 6 || hotreg == 7 || hotreg == 8 || hotreg == 9">
        <c-col :span="24">
          <el-form-item label="Contr.to be Financed" prop="trpnttyp">
            <c-select
              v-model="model.trpnttyp"
              style="width: 100%"
              :code="codes.trpnttyp"
            >
            </c-select>
          </el-form-item>
        </c-col>
      </div>

      <div v-if="hotreg == 3 || hotreg == 4 || hotreg == 6 || hotreg == 7 || hotreg == 8 || hotreg == 9">
        <!-- S0000293 : Document Reference -->
    <c-col :span="24">
      <c-form-item label="Document Reference" prop="brdget.brd.ownref">
        <c-fullbox>
          <c-input v-model="model.brdget.brd.ownref" maxlength="16"
          ></c-input>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
            >
              <i class="el-icon-info"></i>
            </c-button>
            <c-checkbox v-model="model.brdget.clsflg">Show closed</c-checkbox>
          </template>
        </c-fullbox>
      </c-form-item>
    </c-col>
      </div>

      <!-- S0000184 : Finance Reference -->
      <div v-if="hotreg== 6 || hotreg== 7">
    <c-col :span="24">
      <c-form-item label="Finance Reference" prop="trdgrp.rec.ownref">
        <c-fullbox>
          <c-input v-model="model.trdgrp.rec.ownref" maxlength="16"
          ></c-input>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
            >
              <i class="el-icon-info"></i>
            </c-button>

            <c-checkbox v-model="model.trdget.clsflg">Show closed</c-checkbox>
          </template>
        </c-fullbox>
      </c-form-item>
    </c-col>
      </div>
      <div v-if="hotreg == 8 || hotreg == 9">
        <!-- Re-Fin Reference -->
        <c-col :span="24">
      <c-form-item label="Re-Fin Reference" prop="dfdgrp.rec.ownref">
        <c-fullbox>
          <c-input v-model="model.dfdgrp.rec.ownref" maxlength="16"></c-input>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
            >
              <i class="el-icon-info"></i>
            </c-button>
            <c-checkbox v-model="model.dfdget.clsflg">Show closed</c-checkbox>
          </template>
        </c-fullbox>
      </c-form-item>
    </c-col>
      </div>
      <div v-if="hotreg == 5">
        <!-- SG000303 : Shipping Reference -->
    <c-col :span="24">
      <c-form-item label="Shipping Reference" prop="brdgrp.rec.shgref">
        <c-input v-model="model.brdgrp.rec.shgref" maxlength="16"></c-input>
      </c-form-item>
    </c-col>
      </div>
      <!-- L/C -->
    <div v-if="hotreg == 1 || hotreg == 2">
        <c-col :span="24">
          <c-col :span="10">
            <el-form-item label="信用证金额" prop="lidgrp.cbs.nom1.cur">
              <c-input
                v-model="model.lidgrp.cbs.nom1.cur"
                style="width: 100%"
                disabled
              >
              </c-input>
            </el-form-item>
          </c-col>

          <c-col :span="10">
            <c-form-item label="" label-width="10px" prop="lidgrp.cbs.nom1.amt">
              <c-input
                v-model="model.lidgrp.cbs.nom1.amt"
                style="width: 100%"
                disabled
                placeholder="0.00"
              ></c-input>
            </c-form-item>
          </c-col>

          <c-col :span="4">
            <c-checkbox
              v-model="model.aamlid.addamtflg"
              style="margin-left: 1.3px; padding: 0 10px"
              disabled
              >Add.Amount</c-checkbox
            >
          </c-col>
        </c-col>
        <c-col :span="24">
          <c-col :span="10">
            <c-form-item label="信用证余额" prop="lidgrp.cbs.opn1.cur">
              <c-input
                v-model="model.lidgrp.cbs.opn1.cur"
                maxlength="3"
                disabled
              ></c-input>
            </c-form-item>
          </c-col>

          <c-col :span="10">
            <c-form-item label="" label-width="10px" prop="lidgrp.cbs.opn1.amt">
              <c-input v-model="model.lidgrp.cbs.opn1.amt" disabled></c-input>
            </c-form-item>
          </c-col>

          <c-col :span="4">
            <c-checkbox
              v-model="model.lidgrp.rec.revflg"
              style="margin-left: 1.3px; padding: 0 10px"
              disabled
              >循环信用证</c-checkbox
            >
          </c-col>
        </c-col>
        <c-col :span="24">
          <c-form-item label="可用银行" prop="lidgrp.avbnam">
            <c-input
              v-model="model.lidgrp.avbnam"
              maxlength="40"
              disabled
            ></c-input>
          </c-form-item>
        </c-col>

        <!-- S0000153 : by -->

        <c-col :span="24">
          <el-form-item label="兑付方式" prop="lidgrp.rec.avbby">
            <c-input
              v-model="model.lidgrp.rec.avbby"
              style="width: 100%"
              disabled
            >
            </c-input>
          </el-form-item>
        </c-col>
        <c-col :span="12">
          <el-form-item label="开证日期" prop="lidgrp.rec.opndat">
            <c-date-picker
              type="date"
              disabled
              v-model="model.lidgrp.rec.opndat"
              style="width: 100%"
            ></c-date-picker>
          </el-form-item>
        </c-col>
        <c-col :span="12">
          <el-form-item
            label="最迟装运期"
            label-width="140px"
            prop="lidgrp.rec.shpdat"
          >
            <c-date-picker
              type="date"
              disabled
              v-model="model.lidgrp.rec.shpdat"
              style="width: 100%"
            ></c-date-picker>
          </el-form-item>
        </c-col>

        <!-- S0000155 : Date/ Place of Expiry -->

        <c-col :span="12">
          <el-form-item label="Datel/Place of Expiry" prop="lidgrp.rec.expdat">
            <c-date-picker
              type="date"
              v-model="model.lidgrp.rec.expdat"
              style="width: 100%"
              disabled
            ></c-date-picker>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <c-form-item label="" prop="lidgrp.rec.expplc" label-width="5px">
            <c-input
              v-model="model.lidgrp.rec.expplc"
              maxlength="29"
              disabled
            ></c-input>
          </c-form-item>
        </c-col>

        <!-- S0000154 : Form of L/C -->

        <c-col :span="24">
          <el-form-item label="信用证类型" prop="lidgrp.rec.lcrtyp">
            <c-input
              disabled
              v-model="model.lidgrp.rec.lcrtyp"
              style="width: 100%"
            >
            </c-input>
          </el-form-item>
        </c-col>
    </div>
    <!-- Docs -->
    <div v-if="hotreg == 3 || hotreg == 4 || hotreg == 5">
     <!-- S0000130 : Document Amount -->

    <c-col :span="10">
      <el-form-item label="单据金额" prop="brdgrp.cbs.max.cur">
        <c-select
         disabled
          v-model="model.brdgrp.cbs.max.cur"
          style="width: 100%"
        >
        </c-select>
      </el-form-item>
    </c-col>


    <c-col :span="10">
      <c-form-item label="" 
      label-width="10px"
      prop="brdgrp.cbs.max.amt">
        <c-input
         disabled
          v-model="model.brdgrp.cbs.max.amt"
        ></c-input>
      </c-form-item>
    </c-col>
     <c-col :span="4">
      <c-checkbox 
      disabled
      v-model="model.aambrd.addamtflg"
      style="margin-left:2px;padding: 0 10px;"
      >Add.Amount</c-checkbox>
    </c-col>
    <!-- S0000132 : Open Amount -->

    <c-col :span="10">
      <c-form-item label="Open Amount" prop="brdgrp.cbs.opn1.cur">
        <c-input 
        disabled
        v-model="model.brdgrp.cbs.opn1.cur" maxlength="3"></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="14">
      <c-form-item label="" 
      label-width="10px"
      prop="brdgrp.cbs.opn1.amt">
        <c-input
          disabled
          v-model="model.brdgrp.cbs.opn1.amt"
          :placeholder="$t('other.please_enter') + 'Balance'"
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000133 : Received on -->

    <c-col :span="13">
      <el-form-item label="Received on" prop="brdgrp.rec.rcvdat">
        <c-date-picker
          type="date"
          disabled
          v-model="model.brdgrp.rec.rcvdat"
          style="width: 100%"
        ></c-date-picker>
      </el-form-item>
    </c-col>
    <!-- S0000135 : Advised on -->

    <c-col :span="11">
      <el-form-item 
      label="Advised on" 
      label-width="80px"
      prop="brdgrp.rec.advdat">
        <c-date-picker
          type="date"
          disabled
          v-model="model.brdgrp.rec.advdat"
          style="width: 100%"
        ></c-date-picker>
      </el-form-item>
    </c-col>

    <!-- S0000134 : Maturity Date -->

    <c-col :span="24">
        <el-form-item label="Maturity Date" prop="matp.mattxtlab">
        <c-date-picker
          type="date"
          disabled
          v-model="model.matp.mattxtlab"
          style="width: 100%"
        ></c-date-picker>
        </el-form-item>   
    </c-col>
    <!-- S0000141 : Document Type -->

    <c-col :span="24">
      <el-form-item label="Document Type" prop="brdgrp.rec.docflg">
        <c-input 
        v-model="model.brdgrp.rec.docflg" 
        style="width: 100%"
        disabled>
        </c-input>
      </el-form-item>
    </c-col>
    <!-- SF000265 : Document Set Status -->

    <c-col :span="24">
      <c-form-item label="Document Set Status" prop="brdgrp.rec.docsta">
        <c-input 
        v-model="model.brdgrp.rec.docsta" 
        maxlength="1"
        disabled>
        </c-input>
      </c-form-item>
    </c-col>
    </div>
    <!-- Loan -->
    <div v-if="hotreg == 6 || hotreg == 7">
        <!-- S0000176 : Financing of -->

    <c-col :span="24">
      <c-form-item label="Financing of" prop="trdgrp.rec.pctfin">
        <c-input 
        disabled
        v-model="model.trdgrp.rec.pctfin"></c-input>
      </c-form-item>
    </c-col>
    <c-col :span="14">
      <el-form-item label="Finance Amount" prop="trdgrp.cbs.max.cur">
        <c-input
        disabled
          v-model="model.trdgrp.cbs.max.cur"
          style="width: 100%"
          
        >
        </c-input>
      </el-form-item>
    </c-col>
       <c-col :span="10">
      <c-form-item label="" label-width="40px" prop="trdgrp.cbs.max.amt">
        <c-input
        disabled
          v-model="model.trdgrp.cbs.max.amt"
          
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000171 : Open Amount -->

    <c-col :span="14">
      <c-form-item label="Open Amount" prop="trdgrp.cbs.opn1.cur">
        <c-input
          v-model="model.trdgrp.cbs.opn1.cur"
          maxlength="3"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="10">
      <c-form-item label="" label-width="40px" prop="trdgrp.cbs.opn1.amt">
        <c-input
          v-model="model.trdgrp.cbs.opn1.amt"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- SG000319 : Start Tenor Date -->

    <c-col :span="14">
      <el-form-item label="Start Tenor Date" prop="trdgrp.rec.stttendat">
        <c-date-picker
            disabled
          type="date"
          v-model="model.trdgrp.rec.stttendat"
          style="width: 100%"
          
        ></c-date-picker>
      </el-form-item>
    </c-col>
    <c-col :span="10">
      <el-form-item label="Due" 
      label-width="40px"
      prop="trdgrp.rec.matdat">
        <c-date-picker
            disabled
          type="date"
          v-model="model.trdgrp.rec.matdat"
          style="width: 100%"
          
        ></c-date-picker>
      </el-form-item>
    </c-col>
    </div>
    <!-- 同业代付 -->
    <div v-if="hotreg == 8 || hotreg == 9">
        <!-- SG000315 : Re-Fin Amount -->

    <c-col :span="15">
      <el-form-item label="Re-Fin Amount" prop="dfdgrp.cbs.max.cur">
        <c-input
          v-model="model.dfdgrp.cbs.max.cur"
          style="width: 100%"
          disabled
        >
        </c-input>
      </el-form-item>
    </c-col>

    <c-col :span="9">
      <c-form-item label="" 
      label-width="10px"
      prop="dfdgrp.cbs.max.amt">
        <c-input
          v-model="model.dfdgrp.cbs.max.amt"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- SG000316 : Open Amount -->

    <c-col :span="15">
      <el-form-item label="Open Amount" 
      
      prop="dfdgrp.cbs.opn1.cur">
        <c-input v-model="model.dfdgrp.cbs.opn1.cur" style="width: 100%" disabled>
        </c-input>
      </el-form-item>
    </c-col>

    <c-col :span="9">
      <c-form-item label="" 
      label-width="10px"
      prop="dfdgrp.cbs.opn1.amt">
        <c-input v-model="model.dfdgrp.cbs.opn1.amt" disabled></c-input>
      </c-form-item>
    </c-col>
    <!-- SG000318 : Open Date -->

    <c-col :span="12">
      <el-form-item label="Open Date" prop="dfdgrp.rec.opndat">
        <c-date-picker
          type="date"
          v-model="model.dfdgrp.rec.opndat"
          style="width: 100%"
          disabled
        ></c-date-picker>
      </el-form-item>
    </c-col>
    <!-- SG000326 : Re-Fin Type -->

    <c-col :span="12">
      <c-form-item label="Re-Fin Type" 
      label-width="88px"
      prop="dfdgrp.rec.fintyp">
        <c-input
          v-model="model.dfdgrp.rec.fintyp"
          maxlength="3"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
     <c-col :span="12">
      <el-form-item label="Start Tenor Date" prop="dfdgrp.rec.stttendat">
        <c-date-picker
          type="date"
          v-model="model.dfdgrp.rec.stttendat"
          style="width: 100%"
          disabled
        ></c-date-picker>
      </el-form-item>
    </c-col>
    <c-col :span="12">
      <el-form-item label="due" 
      label-width="88px"
      prop="dfdgrp.rec.matdat">
        <c-date-picker
          type="date"
          v-model="model.dfdgrp.rec.matdat"
          style="width: 100%"
          disabled
        ></c-date-picker>
      </el-form-item>
    </c-col>
    </div>
    </el-col>

    <!-- 右 -->
    <el-col :span="11" :offset="1">
      <c-col :span="24">
        <c-form-item label="Name " prop="lidget.lid.nam">
          <c-input
            v-model="model.lidget.lid.nam"
            maxlength="40"
            disabled
            style="width: 100%"
          ></c-input>
        </c-form-item>
      </c-col>
        <c-col :span="24" v-if="hotreg == 6 || hotreg == 7 || hotreg == 8 || hotreg == 9">
            <el-form-item>

            </el-form-item>
            <el-form-item></el-form-item>
            <el-form-item></el-form-item>
        </c-col>
      <div v-if="hotreg == 3 || hotreg == 4 ||hotreg == 6 || hotreg == 7 || hotreg == 8 || hotreg == 9">
        <c-col :span="24">
      <c-form-item label="Name of Bill Contract" prop="brdgrp.rec.nam">
        <c-input
        disabled
          v-model="model.brdgrp.rec.nam"
          maxlength="40"
        ></c-input>
      </c-form-item>
    </c-col>
      </div>


    <div v-if="hotreg== 6 || hotreg== 7">
      <c-col :span="24">
      <c-form-item label="Name of Loan Contract" prop="trdgrp.rec.nam">
        <c-input
        disabled
          v-model="model.trdgrp.rec.nam"
          maxlength="40"
          
        ></c-input>
      </c-form-item>
    </c-col>
    </div>
    <div v-if="hotreg == 8 || hotreg== 9">
        <c-col :span="24">
      <c-form-item label="Name of Loan Contract " prop="dfdgrp.rec.nam">
        <c-input
          v-model="model.dfdgrp.rec.nam"
          maxlength="40"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
    </div>
      <!-- L/C -->
      <div v-if="hotreg == 1 || hotreg == 2">
      <!-- S0000160 : Applicant Ref.-->

      <c-col :span="24">
        <c-form-item label="Application Ref." prop="lidgrp.apl.pts.ref">
          <c-input
            disabled
            v-model="model.lidgrp.apl.pts.ref"
            maxlength="16"
          ></c-input>
        </c-form-item>
      </c-col>
      <c-col :span="24">
        <c-form-item label="申请人名称" prop="lidgrp.apl.pts.nam">
          <c-input
            disabled
            v-model="model.lidgrp.apl.pts.nam"
            maxlength="40"
          ></c-input>
        </c-form-item>
      </c-col>

      <!-- S0000151 : Beneficiary Ref. -->

      <c-col :span="24">
        <c-form-item label="受益人参考号" prop="lidgrp.ben.pts.ref">
          <c-input
            disabled
            v-model="model.lidgrp.ben.pts.ref"
            maxlength="16"
            :placeholder="$t('other.please_enter') + $t('litsel.S0000151')"
          ></c-input>
        </c-form-item>
      </c-col>

      <c-col :span="24">
        <c-form-item label="受益人名称" prop="lidgrp.ben.pts.nam">
          <c-input
            disabled
            v-model="model.lidgrp.ben.pts.nam"
            maxlength="40"
            :placeholder="$t('other.please_enter') + 'Name of Party'"
          ></c-input>
        </c-form-item>
      </c-col>

      <!-- S0000156 : Advising Bank Ref.-->

      <c-col :span="24">
        <c-form-item label="Advising Bank" prop="lidgrp.adv.pts.ref">
          <c-input
            disabled
            v-model="model.lidgrp.adv.pts.ref"
            maxlength="16"
          ></c-input>
        </c-form-item>
      </c-col>

      <c-col :span="24">
        <c-form-item label="通知行名称" prop="lidgrp.adv.pts.nam">
          <c-input
            disabled
            v-model="model.lidgrp.adv.pts.nam"
            maxlength="40"
          ></c-input>
        </c-form-item>
      </c-col>
      </div>
    <!-- Docs -->
    <div v-if="hotreg == 3 || hotreg == 4 || hotreg == 5">
     <!-- S0000127 : Applicant Ref.-->

    <c-col :span="24">
      <c-form-item label="申请人参考号" prop="brdgrp.apl.pts.ref">
        <c-input 
        disabled
        v-model="model.brdgrp.apl.pts.ref" maxlength="16"></c-input>
      </c-form-item>
    </c-col>   
     <c-col :span="24">
      <c-form-item label="申请人名称" prop="brdgrp.apl.pts.nam">
        <c-input
        disabled
          v-model="model.brdgrp.apl.pts.nam"
          maxlength="40"
        ></c-input>
      </c-form-item>
    </c-col>
 <!-- S0000126 : Beneficiary Ref.-->
    
    <c-col :span="24">
      <c-form-item label="受益人参考号" prop="brdgrp.ben.pts.ref">
        <c-input 
        disabled
        v-model="model.brdgrp.ben.pts.ref" maxlength="16"></c-input>
      </c-form-item>
    </c-col>
 <c-col :span="24">
      <c-form-item label="受益人名称" prop="brdgrp.ben.pts.nam">
        <c-input
        disabled
          v-model="model.brdgrp.ben.pts.nam"
          maxlength="40"
          :placeholder="$t('other.please_enter') + $t('litsel.S0000134')"
        ></c-input>
      </c-form-item>
    </c-col>
 <!-- S0000138 : Presenting Bank Ref.-->

    <c-col :span="24">
      <c-form-item label="Presenting Bank Ref." prop="brdgrp.prb.pts.ref">
        <c-input 
        disabled
        v-model="model.brdgrp.prb.pts.ref" maxlength="16"></c-input>
      </c-form-item>
    </c-col>
    <c-col :span="24">
      <c-form-item
        label="Name of Party"
        prop="brdgrp.prb.pts.nam"
      >
        <c-input
        disabled
          v-model="model.brdgrp.prb.pts.nam"
          maxlength="40"
        ></c-input>
      </c-form-item>
    </c-col>

    </div>
    <!-- Loan -->
    <div v-if="hotreg == 6 || hotreg == 7">
         <!-- S0000175 : Financed Party Ref. -->
    <c-col :span="24">
      <c-form-item label="Financed Party Ref." prop="trdgrp.fip.pts.ref">
        <c-input 
        disabled
        v-model="model.trdgrp.fip.pts.ref" maxlength="16"></c-input>
      </c-form-item>
    </c-col>
    <c-col :span="24">
      <c-form-item label="Name of Party" prop="trdgrp.fip.pts.nam">
        <c-input 
        disabled
        v-model="model.trdgrp.fip.pts.nam" maxlength="40"></c-input>
      </c-form-item>
    </c-col>
    <c-col :span="24">
      <c-form-item label="Finance Type" prop="trdgrp.rec.fintyp">
        <c-input 
        disabled
        v-model="model.trdgrp.rec.fintyp" ></c-input>
      </c-form-item>
    </c-col>
    <!-- SG000304 : Finance Account -->

    <c-col :span="24">
      <c-form-item label="Finance Account" prop="trdgrp.rec.finact">
        <c-input
          v-model="model.trdgrp.rec.finact"
          maxlength="21"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
    </div>
    <!-- 同业代付 -->
    <div v-if="hotreg == 8 || hotreg == 9">
    <!-- SG000321 : Re-Fin Party Ref. -->
    <c-col :span="24">
      <c-form-item label="Re-Fin Party Ref." prop="dfdgrp.apl.pts.ref">
        <c-input
          v-model="model.dfdgrp.apl.pts.ref"
          maxlength="16"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
     <!-- 同行  RFP R. NAME -->
    <c-col :span="24">
      <c-form-item label="Name of Party" prop="dfdgrp.apl.pts.nam">
        <c-input
          v-model="model.dfdgrp.apl.pts.nam"
          maxlength="40"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- SG000324 : Re-Fin Bank Ref-->
    <c-col :span="24">
      <c-form-item label="Re-Fin Bank Ref." prop="dfdgrp.dff.pts.ref">
        <c-input
          v-model="model.dfdgrp.dff.pts.ref"
          maxlength="16"
          disabled
        ></c-input>
      </c-form-item>
    </c-col>
   
    <!-- Re-Fin Bank Ref name -->
    <c-col :span="24">
      <c-form-item label="Name of Party" prop="dfdgrp.dff.pts.nam">
        <c-input v-model="model.dfdgrp.dff.pts.nam" maxlength="40" disabled></c-input>
      </c-form-item>
    </c-col>
    </div>
    </el-col>

    <!--     底部      -->
    <el-col :span="24">
      <el-form-item>
        <el-divider />
      </el-form-item>
    </el-col>
    <el-col :span="10" :offset="12">
      <el-tabs tab-position="right">
        <el-tab-pane v-for="it in meum" :key="it.key" :label="it.label">
          <sel-mune :model="model" />
        </el-tab-pane>
      </el-tabs>
    </el-col>

   
  </div>
</template>
<script>
import CodeTable from "~/config/CodeTable";
import event from "../event";
import SelMune from "./SelMune.vue";

export default {
  components: {
    SelMune,
  },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {
      hotreg: "1",
      meum: [
        {
          label: "L/C",
          key: 1,
        },
        {
          label: "Others",
          key: 2,
        },
        {
          label: "Docs",
          key: 3,
        },
        {
          label: "Oth. Docs",
          key: 4,
        },
        {
          label: "SG",
          key: 5,
        },
        {
          label: "Loan",
          key: 6,
        },
        {
          label: "Oth.Loan",
          key: 7,
        },
        {
          label: "同业代付",
          key: 9,
        },
        {
          label: "其他",
          key: 10,
        },
      ],
    };
  },
  methods: {

  },
  computed: {},
};
</script>
<style></style>