Ovwp.vue 52.6 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3
    <c-row>
liyixun committed
4 5 6 7
      <c-col :span="24">
        <!-- ==================左边================ -->
        <c-col :span="12">
          <c-col :span="24">
liyixun committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21
            <el-form-item label="Reference" prop="gidgrp.rec.ownref">
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.rec.ownref"
                  maxlength="16"
                  placeholder="请输入Reference"
                ></c-input>
                <template slot="footer">
                  <!-- <el-form-item label="" label-width="5px"> -->
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
liyixun committed
22
                  >
liyixun committed
23 24 25 26 27 28 29 30 31
                    <span
                      style="
                        font-size: 15px;
                        font-family: '宋体';
                        font-weight: bold;
                      "
                      >i</span
                    >
                  </c-button>
liyixun committed
32

liyixun committed
33 34 35 36 37 38 39 40 41 42 43 44 45
                  <c-button
                    style="margin: 0 0"
                    :disabled="this.flag"
                    size="small"
                    type="primary"
                    @click="onGitpButgetref"
                  >
                    获取
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
liyixun committed
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
          <c-col :span="24">
            <el-form-item label="Responsible User" prop="gitp.usr.extkey">
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gitp.usr.extkey"
                  maxlength="8"
                  placeholder="请输入Responsible User"
                ></c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
                    <span
                      style="
                        font-size: 15px;
                        font-family: '宋体';
                        font-weight: bold;
                      "
                      >i</span
                    >
                  </c-button>
                  <!-- <c-checkbox v-model="model.gidgrp.rec.resflg"
                    >Reserved Contract</c-checkbox
                  > -->
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <c-col :span="12">
              <el-form-item label="Guarantee Amount" prop="gidgrp.cbs.max.cur">
                <c-select
                  v-model="model.gidgrp.cbs.max.cur"
                  style="width: 100%"
                  placeholder="请选择Guarantee Amount"
                >
liyixun committed
86 87 88 89 90 91 92
                  <el-option
                    v-for="item in codes.curtxt1"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
liyixun committed
93 94 95 96 97 98 99 100 101 102 103
                </c-select>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <c-input
                v-model="model.gidgrp.cbs.max.amt"
                style="margin: 0 0 0 10px; width: 80%"
                placeholder="请输入Guarantee Amount"
              ></c-input>
            </c-col>
liyixun committed
104 105 106 107 108
            <c-col
              :span="4"
              v-if="model.gitp.swiftflg != 'Y'"
              class="centerLable"
            >
liyixun committed
109
              <c-checkbox v-model="model.gitp.dzbhflg">电子保函标志</c-checkbox>
liyixun committed
110 111 112 113 114 115
            </c-col>
          </c-col>

          <c-col :span="24">
            <c-col :span="12">
              <el-form-item label="Open Amount" prop="gidgrp.cbs.opn1.cur">
liyixun committed
116 117
                <c-input
                  disabled
liyixun committed
118 119 120 121 122 123 124 125
                  v-model="model.gidgrp.cbs.opn1.cur"
                  style="width: 100%"
                  placeholder="请输入Open Amount"
                ></c-input>
              </el-form-item>
            </c-col>
            <c-col :span="8">
              <!-- <el-form-item label="" prop="gidgrp.cbs.opn1.amt"> -->
liyixun committed
126 127
              <c-input
                disabled
liyixun committed
128 129 130 131 132 133
                v-model="model.gidgrp.cbs.opn1.amt"
                style="margin: 0 0 0 10px; width: 80%"
                placeholder="请输入Balance"
              ></c-input>
              <!-- </el-form-item> -->
            </c-col>
liyixun committed
134 135 136 137 138
            <c-col
              :span="4"
              v-if="model.gitp.swiftflg == 'Y'"
              class="centerLable"
            >
liyixun committed
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
              <c-checkbox v-model="model.gitp.inc760">incoming lose</c-checkbox>
            </c-col>
          </c-col>

          <!-- <c-col :span="24">
            <el-form-item label="Type of Request" prop="gidgrp.rec.drpreflg">
              <c-select
                v-model="model.gidgrp.rec.drpreflg"
                style="width: 100%"
                placeholder="请选择Type of Request"
              >
              <el-option
              v-for="item in codes.drpreflg"
              :key="item.value"
              :label="item.label"
              :value="item.value"
              >
            </el-option>
liyixun committed
157
              </c-select>
liyixun committed
158 159 160 161
            </el-form-item>
          </c-col> -->

          <c-col :span="24">
liyixun committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
            <el-form-item
              v-show="model.gitp.swiftflg == 'Y'"
              label="Incoming Purpose "
              prop="gidgrp.rec.purposin"
            >
              <c-select
                :disabled="model.gitp.inc760 == ''"
                v-model="model.gidgrp.rec.purposin"
                style="width: 100%"
                placeholder="请选择Incoming Purpose "
              >
                <el-option
                  v-for="item in codes.purposin"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
liyixun committed
182 183 184
          </c-col>

          <c-col :span="24">
liyixun committed
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' && model.gidgrp.rec.purposin == ''
              "
              label="Outgoing Purpose"
              prop="gidgrp.rec.purpos"
            >
              <c-select
                v-model="model.gidgrp.rec.purpos"
                style="width: 100%"
                placeholder="请选择Outgoing Purpose"
              >
                <el-option
                  v-for="item in codes.purpos4"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
liyixun committed
206 207 208
          </c-col>

          <c-col :span="24">
liyixun committed
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ICCO'
              "
              label="Outgoing Purpose"
              prop="gidgrp.rec.purpos"
            >
              <c-select
                v-model="model.gidgrp.rec.purpos"
                style="width: 100%"
                placeholder="请选择Outgoing Purpose"
              >
                <el-option
                  v-for="item in codes.purpos2"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
liyixun committed
231 232 233
          </c-col>

          <c-col :span="24">
liyixun committed
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISCO'
              "
              label="Outgoing Purpose"
              prop="gidgrp.rec.purpos"
            >
              <c-select
                v-model="model.gidgrp.rec.purpos"
                style="width: 100%"
                placeholder="请选择Outgoing Purpose"
              >
                <el-option
                  v-for="item in codes.purpos3"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
liyixun committed
256 257
          </c-col>

liyixun committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
          <c-col :span="24">
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISSU'
              "
              label="Outgoing Purpose"
              prop="gidgrp.rec.purpos"
            >
              <c-select
                v-model="model.gidgrp.rec.purpos"
                style="width: 100%"
                placeholder="请选择Outgoing Purpose"
              >
                <el-option
                  v-for="item in codes.purpos4"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
liyixun committed
281 282
          </c-col>

liyixun committed
283
          <c-col :span="24">
liyixun committed
284 285 286 287 288
            <el-form-item
              v-if="model.gitp.swiftflg == ''"
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
289 290 291 292 293 294 295 296 297 298
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
                :code="codes.hndtyp2"
              >
              </c-select>
            </el-form-item>
          </c-col>

liyixun committed
299
          <c-col :span="24">
liyixun committed
300 301 302 303 304
            <el-form-item
              v-if="model.gitp.swiftflg == 'N'"
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
305 306 307 308 309 310
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
                :code="codes.hndtyp9"
              >
liyixun committed
311
              </c-select>
liyixun committed
312 313 314 315
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
316 317 318 319 320 321 322 323
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISCO'
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
324 325 326 327 328
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
329 330 331 332 333 334 335
                <el-option
                  v-for="item in codes.hndtyp1"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
336
              </c-select>
liyixun committed
337 338 339 340
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
341 342 343 344 345 346 347 348
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ICCO'
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
349 350 351 352 353
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
354 355 356 357 358 359 360
                <el-option
                  v-for="item in codes.hndtyp1"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
361
              </c-select>
liyixun committed
362 363 364
            </el-form-item>
          </c-col>

liyixun committed
365 366 367 368 369 370 371 372 373 374
          <c-col :span="24">
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISSU' &&
                model.gidgrp.rec.purpos == 'ISCO'
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
375 376 377 378 379
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
380 381 382 383 384 385 386
                <el-option
                  v-for="item in codes.hndtyp4"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
387 388 389 390
              </c-select>
            </el-form-item>
          </c-col>

liyixun committed
391
          <c-col :span="24">
liyixun committed
392 393 394 395 396 397 398 399 400
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISSU' &&
                model.gidgrp.rec.purpos == 'ISSU'
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
401 402 403 404 405
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
406 407 408 409 410 411 412
                <el-option
                  v-for="item in codes.hndtyp3"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
413 414 415 416 417
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
418 419 420 421 422 423 424 425 426
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISSU' &&
                model.gidgrp.rec.purpos == ''
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
427 428 429 430 431
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
432 433 434 435 436 437 438
                <el-option
                  v-for="item in codes.hndtyp5"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
439
              </c-select>
liyixun committed
440 441 442 443
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
444 445 446 447 448 449 450 451 452
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISSU' &&
                model.gidgrp.rec.purpos == 'ADVI'
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
453 454 455 456 457
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
458 459 460 461 462 463 464
                <el-option
                  v-for="item in codes.hndtyp6"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
465
              </c-select>
liyixun committed
466 467 468 469
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
470 471 472 473 474 475 476 477 478
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purposin == 'ISSU' &&
                model.gidgrp.rec.purpos == 'ACNF'
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
479 480 481 482 483
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
484 485 486 487 488 489 490
                <el-option
                  v-for="item in codes.hndtyp7"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
491
              </c-select>
liyixun committed
492 493 494 495
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
496 497 498 499 500 501 502 503 504
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purpos == '' &&
                model.gidgrp.rec.purposin == ''
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
505 506 507 508 509
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
510 511 512 513 514 515 516
                <el-option
                  v-for="item in codes.hndtyp2"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
517
              </c-select>
liyixun committed
518 519 520 521
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
522 523 524 525 526 527 528 529 530
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purpos == 'ISSU' &&
                model.gidgrp.rec.purposin == ''
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
531 532 533 534 535
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
536 537 538 539 540 541 542
                <el-option
                  v-for="item in codes.hndtyp3"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
543
              </c-select>
liyixun committed
544 545 546
            </el-form-item>
          </c-col>

liyixun committed
547 548 549 550 551 552 553 554 555 556 557
          <c-col :span="24">
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                (model.gidgrp.rec.purpos == 'ISCO' ||
                  model.gidgrp.rec.purpos == 'ICCO') &&
                model.gidgrp.rec.purposin == ''
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
558 559 560 561 562
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
563 564 565 566 567 568 569
                <el-option
                  v-for="item in codes.hndtyp4"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
570
              </c-select>
liyixun committed
571 572 573
            </el-form-item>
          </c-col>

liyixun committed
574 575 576 577 578 579 580 581 582 583
          <c-col :span="24">
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purpos == 'ADVI' &&
                model.gidgrp.rec.purposin == ''
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
584 585 586 587 588
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
589 590 591 592 593 594 595
                <el-option
                  v-for="item in codes.hndtyp6"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
596
              </c-select>
liyixun committed
597 598 599 600
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
601 602 603 604 605 606 607 608 609
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'Y' &&
                model.gidgrp.rec.purpos == 'ACNF' &&
                model.gidgrp.rec.purposin == ''
              "
              label="Handling Type"
              prop="gidgrp.rec.hndtyp"
            >
liyixun committed
610 611 612 613 614
              <c-select
                v-model="model.gidgrp.rec.hndtyp"
                style="width: 100%"
                placeholder="请选择Handling Type"
              >
liyixun committed
615 616 617 618 619 620 621
                <el-option
                  v-for="item in codes.hndtyp7"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
622
              </c-select>
liyixun committed
623 624 625 626 627 628 629 630 631 632
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <el-form-item label="Type of Undertaking" prop="gidgrp.rec.gartyp">
              <c-select
                v-model="model.gidgrp.rec.gartyp"
                style="width: 100%"
                placeholder="请选择Type of Undertaking"
              >
liyixun committed
633 634 635 636 637 638 639
                <el-option
                  v-for="item in codes.seagtyp"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
640
              </c-select>
liyixun committed
641 642 643 644
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
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
            <c-col :span="24">
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
                label="Form of Undertaking"
                prop="gidgrp.rec.legfrm"
              >
                <c-select
                  v-model="model.gidgrp.rec.legfrm"
                  style="width: 100%"
                  placeholder="请选择Form of Undertaking"
                >
                  <el-option
                    v-for="item in codes.legfrm"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>
          </c-col>

          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
              label="Demand Indicator"
              prop="gidgrp.rec.demand"
            >
              <c-select
                v-model="model.gidgrp.rec.demand"
                style="width: 100%"
                placeholder="请选择Demand Indicator"
              >
                <el-option
                  v-for="item in codes.demand"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
689 690 691 692 693 694 695 696 697

          <c-col :span="24">
            <el-form-item label="Applicable Rules" prop="gidgrp.blk.apprul">
              <c-fullbox>
                <c-select
                  v-model="model.gidgrp.blk.apprul"
                  style="width: 100%"
                  placeholder="请选择Applicable Rules"
                >
liyixun committed
698
                  <el-option
liyixun committed
699 700 701 702
                    v-for="item in codes.apprul"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
liyixun committed
703
                  >
liyixun committed
704 705 706 707 708
                  </el-option>
                </c-select>

                <template slot="footer">
                  <c-input
liyixun committed
709 710 711 712 713
                    :disabled="
                      model.gidgrp.blk.apprul == 'URDG' ||
                      model.gidgrp.blk.apprul == 'NONE' ||
                      model.gidgrp.blk.apprul == 'UCPR'
                    "
liyixun committed
714 715 716 717 718 719 720 721 722 723
                    v-model="model.gidgrp.blk.apprultxt"
                    maxlength="35"
                    placeholder="请输入Applicable Rules"
                  ></c-input>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
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
            <c-col :span="12">
              <el-form-item
                v-if="model.gitp.swiftflg != 'Y'"
                label="Language of Undertak."
                prop="gidgrp.rec.giduil"
              >
                <c-select
                  v-model="model.gidgrp.rec.giduil"
                  style="width: 100%"
                  placeholder="请选择Language of Undertak."
                  :code="codes.uiltxt2"
                >
                </c-select>
              </el-form-item>
            </c-col>
            <c-col :span="12">
              <el-form-item
                v-if="model.gitp.swiftflg != 'Y'"
                label="核销日期"
                prop="gidgrp.rec.vrfdat"
              >
                <c-date-picker
                  disabled
                  type="date"
                  v-model="model.gidgrp.rec.vrfdat"
                  style="width: 100%"
                  placeholder="请选择核销日期"
                ></c-date-picker>
              </el-form-item>
            </c-col>
liyixun committed
754 755
          </c-col>

liyixun committed
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
              label="Language of Undertak."
              prop="gidgrp.rec.giduil"
            >
              <c-select
                v-model="model.gidgrp.rec.giduil"
                style="width: 100%"
                placeholder="请选择Language of Undertak."
                :code="codes.uiltxt2"
              >
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
771 772

          <c-col :span="24">
liyixun committed
773 774 775 776 777
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="特殊保函类型"
              prop="gidgrp.ghd.segtyp"
            >
liyixun committed
778 779 780 781 782
              <c-select
                v-model="model.gidgrp.ghd.segtyp"
                style="width: 100%"
                placeholder="请选择特殊保函类型"
              >
liyixun committed
783 784 785 786 787 788 789
                <el-option
                  v-for="item in codes.segtyp"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
790
              </c-select>
liyixun committed
791 792 793 794
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
795 796 797 798 799
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="是否分离式保函"
              prop="gidgrp.rec.fenlishi"
            >
liyixun committed
800 801 802 803 804 805
              <c-select
                disabled
                v-model="model.gidgrp.rec.fenlishi"
                style="width: 100%"
                placeholder="请选择是否分离式保函"
              >
liyixun committed
806 807 808 809 810 811 812
                <el-option
                  v-for="item in codes.fenlishi2"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
813
              </c-select>
liyixun committed
814 815 816
            </el-form-item>
          </c-col>

liyixun committed
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
          <c-col :span="24">
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'N' &&
                model.gidgrp.rec.gartyp == '' &&
                model.gidgrp.rec.hndtyp == ''
              "
              label="Choice of Text"
              prop="gidgrp.rec.gtxinr"
            >
              <c-select
                v-model="model.gidgrp.rec.gtxinr"
                style="width: 100%"
                placeholder="请选择Choice of Text"
              >
              </c-select>
            </el-form-item>
liyixun committed
834
          </c-col>
liyixun committed
835

liyixun committed
836
          <c-col :span="24">
liyixun committed
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
            <el-form-item
              v-if="
                model.gitp.swiftflg == 'N' &&
                model.gidgrp.rec.gartyp != '' &&
                model.gidgrp.rec.hndtyp == ''
              "
              label="Choice of Text"
              prop="gidgrp.rec.gtxinr"
            >
              <c-select
                v-model="model.gidgrp.rec.gtxinr"
                style="width: 100%"
                placeholder="请选择Choice of Text"
                :code="codes.gtxinr"
              >
              </c-select>
            </el-form-item>
liyixun committed
854 855 856
          </c-col>

          <c-col :span="24">
liyixun committed
857 858 859 860 861 862 863 864 865 866 867 868 869 870
            <el-form-item
              v-if="model.gitp.swiftflg == 'N' && model.gidgrp.rec.hndtyp != ''"
              label="Choice of Text"
              prop="gidgrp.rec.gtxinr"
            >
              <c-select
                disabled
                v-model="model.gidgrp.rec.gtxinr"
                style="width: 100%"
                placeholder="请选择Choice of Text"
                :code="codes.gtxinr"
              >
              </c-select>
            </el-form-item>
liyixun committed
871 872 873
          </c-col>

          <c-col :span="24">
liyixun committed
874 875 876 877 878
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y' && model.gidgrp.rec.gartyp == ''"
              label="Choice of Text"
              prop="gidgrp.rec.atxinr"
            >
liyixun committed
879
              <c-select
liyixun committed
880 881 882 883
                :disabled="
                  model.gidgrp.rec.purpos == 'ADVI' ||
                  model.gidgrp.rec.purpos == 'ACNF'
                "
liyixun committed
884
                v-model="model.gidgrp.rec.atxinr"
liyixun committed
885 886 887
                style="width: 100%"
                placeholder="请选择Choice of Text"
              >
liyixun committed
888
              </c-select>
liyixun committed
889 890 891 892
            </el-form-item>
          </c-col>

          <c-col :span="24">
liyixun committed
893 894 895 896 897
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y' && model.gidgrp.rec.gartyp != ''"
              label="Choice of Text"
              prop="gidgrp.rec.atxinr"
            >
liyixun committed
898
              <c-select
liyixun committed
899 900 901 902
                :disabled="
                  model.gidgrp.rec.purpos == 'ADVI' ||
                  model.gidgrp.rec.purpos == 'ACNF'
                "
liyixun committed
903
                v-model="model.gidgrp.rec.atxinr"
liyixun committed
904 905 906
                style="width: 100%"
                placeholder="请选择Choice of Text"
              >
liyixun committed
907 908 909 910 911 912
                <el-option
                  v-for="item in codes.atxinr"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
liyixun committed
913
                </el-option>
liyixun committed
914
              </c-select>
liyixun committed
915 916
            </el-form-item>
          </c-col>
liyixun committed
917

liyixun committed
918
          <c-col :span="24">
liyixun committed
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
            <c-col :span="12">
              <el-form-item
                v-if="model.gitp.swiftflg != 'Y'"
                label="Order Date"
                prop="gidgrp.rec.orddat"
              >
                <c-date-picker
                  :disabled="model.gidgrp.rec.hndtyp == 'FR'"
                  type="date"
                  v-model="model.gidgrp.rec.orddat"
                  style="width: 100%"
                  placeholder="请选择Order Date"
                ></c-date-picker>
              </el-form-item>
            </c-col>
            <c-col :span=12>
              <el-form-item
                v-if="model.gitp.swiftflg != 'Y'"
                label="Issuance Date"
                prop="gidgrp.rec.opndat"
              >
                <c-date-picker
                  type="date"
                  v-model="model.gidgrp.rec.opndat"
                  style="width: 100%"
                  placeholder="请选择Valid from"
                ></c-date-picker>
              </el-form-item>
            </c-col>
liyixun committed
948 949 950
          </c-col>
          <c-col :span="24">
            <c-col :span="14">
liyixun committed
951 952 953 954 955
              <el-form-item
                v-if="model.gitp.swiftflg != 'Y'"
                label="Validity until"
                prop="gidgrp.rec.expdat"
              >
liyixun committed
956
                <c-date-picker
liyixun committed
957
                  :disabled="model.gidgrp.rec.expflg == 'X'"
liyixun committed
958 959 960 961 962 963 964
                  type="date"
                  v-model="model.gidgrp.rec.expdat"
                  style="width: 90%"
                  placeholder="请选择Validity until"
                ></c-date-picker>
              </el-form-item>
            </c-col>
liyixun committed
965 966 967 968 969 970
            <c-col
              :span="7"
              v-if="model.gitp.swiftflg != 'Y'"
              class="centerLable"
            >
              <c-checkbox v-model="model.gidgrp.rec.expflg"
liyixun committed
971 972 973
                >Unlimited Guarantee</c-checkbox
              >
            </c-col>
liyixun committed
974 975 976 977 978 979 980 981 982 983 984 985 986 987
            <c-col
              :span="3"
              v-if="model.gitp.swiftflg != 'Y'"
              class="centerLable"
            >
              <c-button
                size="small"
                type="primary"
                @click="onGitpWbxs"
                disabled
                style="color: white"
              >
                显示文本
              </c-button>
liyixun committed
988 989 990 991 992
            </c-col>
          </c-col>
          <c-col :span="24">
            <c-col :span="14">
              <el-form-item
liyixun committed
993
                v-if="model.gitp.swiftflg != 'Y'"
liyixun committed
994 995 996
                label="Our Liability until"
                prop="gidgrp.rec.liadat"
              >
liyixun committed
997 998 999 1000 1001
                <c-date-picker
                  :disabled="
                    model.gidgrp.rec.hndtyp != 'OC' ||
                    model.gidgrp.rec.liaflg == 'X'
                  "
liyixun committed
1002 1003 1004 1005 1006 1007 1008
                  type="date"
                  v-model="model.gidgrp.rec.liadat"
                  style="width: 90%"
                  placeholder="请选择Our Liability until"
                ></c-date-picker>
              </el-form-item>
            </c-col>
liyixun committed
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
            <c-col
              :span="7"
              v-if="model.gitp.swiftflg != 'Y'"
              class="centerLable"
            >
              <c-checkbox
                v-model="model.gidgrp.rec.liaflg"
                :disabled="
                  model.gidgrp.rec.hndtyp != 'OC' ||
                  model.gidgrp.rec.expflg == 'X'
                "
liyixun committed
1020 1021 1022
                >Unlimited Liability</c-checkbox
              >
            </c-col>
liyixun committed
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
            <c-col
              :span="3"
              v-if="model.gitp.swiftflg != 'Y'"
              class="centerLable"
            >
              <c-button
                size="small"
                type="primary"
                @click="onGitpYptxy"
                disabled
              >
                协议签署
liyixun committed
1035 1036 1037 1038
              </c-button>
            </c-col>
          </c-col>
          <c-col :span="24">
liyixun committed
1039 1040 1041 1042 1043
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Inure Date"
              prop="gidgrp.rec.inudat"
            >
liyixun committed
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.inudat"
                style="width: 100%"
                placeholder="请选择Inure Date"
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <c-col :span="20">
liyixun committed
1055 1056 1057 1058 1059
              <el-form-item
                v-if="model.gitp.swiftflg != 'Y'"
                label="Mortgage Flag"
                prop="gidgrp.rec.guaflg"
              >
liyixun committed
1060 1061 1062 1063 1064
                <c-select
                  v-model="model.gidgrp.rec.guaflg"
                  style="width: 90%"
                  placeholder="请选择Mortgage Flag"
                >
liyixun committed
1065
                  <el-option
liyixun committed
1066 1067 1068 1069
                    v-for="item in codes.guaflg"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
liyixun committed
1070
                  >
liyixun committed
1071 1072 1073 1074
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>
liyixun committed
1075 1076 1077 1078 1079 1080 1081 1082 1083
            <c-col
              :span="4"
              v-if="model.gitp.swiftflg != 'Y'"
              class="centerLable"
            >
              <c-checkbox v-model="model.gidgrp.rec.teskeyunc">
                Test Key Unconfirmity
              </c-checkbox>
            </c-col>
liyixun committed
1084 1085 1086
          </c-col>

          <c-col :span="24">
liyixun committed
1087 1088 1089 1090 1091
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="是否显示查询码"
              prop="gidgrp.gidcxm.cxmflg"
            >
liyixun committed
1092 1093 1094
              <c-select
                v-model="model.gidgrp.gidcxm.cxmflg"
                style="width: 100%"
liyixun committed
1095 1096 1097 1098 1099 1100 1101 1102 1103
                placeholder="请选择是否显示查询码"
              >
                <el-option
                  v-for="item in codes.cxmflg"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
1104
              </c-select>
liyixun committed
1105 1106 1107
            </el-form-item>
          </c-col>
          <c-col :span="24">
liyixun committed
1108 1109 1110 1111 1112
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="是否对外担保"
              prop="gidgrp.rec.fingua"
            >
liyixun committed
1113 1114 1115 1116 1117 1118
              <c-select
                disabled
                v-model="model.gidgrp.rec.fingua"
                style="width: 100%"
                placeholder="请选择是否对外担保"
              >
liyixun committed
1119 1120 1121 1122 1123 1124 1125
                <el-option
                  v-for="item in codes.fingua"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
liyixun committed
1126 1127 1128
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
1129
        </c-col>
liyixun committed
1130 1131 1132
        <!-- ============右边================= -->
        <c-col :span="11" :offset="1">
          <c-col :span="24">
liyixun committed
1133 1134 1135 1136 1137
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Name"
              prop="gidgrp.rec.nam"
            >
liyixun committed
1138 1139 1140 1141 1142 1143 1144 1145
              <c-input
                disabled
                v-model="model.gidgrp.rec.nam"
                maxlength="40"
                placeholder="请输入Name"
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
1146 1147 1148 1149 1150 1151
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Applicant Ref."
              prop="gidgrp.apl.pts.ref"
            >
liyixun committed
1152
              <c-input
liyixun committed
1153 1154 1155 1156
                :disabled="model.gidgrp.ghd.segtyp == '02'"
                v-model="model.gidgrp.apl.pts.ref"
                maxlength="16"
                placeholder="请输入Applicant Ref."
liyixun committed
1157 1158 1159 1160
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
liyixun committed
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Applicant"
              prop="gidgrp.apl.pts.extkey"
            >
              <c-fullbox>
                <c-input
                  v-model="model.gidgrp.apl.pts.extkey"
                  maxlength="16"
                  placeholder="请输入External Key of Address"
                  @keyup.enter.native="
                    showGridPromptDialog(`gidgrp.apl.pts.extkey`)
                  "
                >
                </c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
                    <span style="font-family: '宋体'; font-weight: bold"
                      >i</span
                    >
                  </c-button>
                  <c-button
                    :disabled="model.gidgrp.rec.hndtyp != 'OT'"
                    size="small"
                    type="primary"
                    @click="onAplpDet"
                  >
                    Details
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="地址名称"
              prop="gidgrp.apl.pts.adrblk"
            >
              <c-input
                rows="4"
                type="textarea"
                v-model="model.gidgrp.apl.pts.adrblk"
                maxlength="35"
                show-word-limit
                placeholder="请输入地址名称"
              ></c-input>
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Issuing Bank"
              prop="gidgrp.iss.pts.ref"
            >
              <c-input
                v-model="model.gidgrp.iss.pts.ref"
                maxlength="16"
                placeholder="请输入Issuing Bank"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Issuing Bank"
              prop="gidgrp.iss.pts.extkey"
            >
              <c-fullbox>
                <c-input
                  v-model="model.gidgrp.iss.pts.extkey"
                  maxlength="16"
                  placeholder="请输入External Key of Address"
                  @keyup.enter.native="
                    showGridPromptDialog(`gidgrp.iss.pts.extkey`)
                  "
                ></c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
                    <span style="font-family: '宋体'; font-weight: bold"
                      >i</span
                    >
                  </c-button>
                  <c-button
                    disabled
                    size="small"
                    type="primary"
                    @click="onIsspDet"
                  >
                    Details
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="地址名称"
              prop="gidgrp.iss.pts.adrblk"
            >
              <c-input
                disabled
                rows="4"
                type="textarea"
                v-model="model.gidgrp.iss.pts.adrblk"
                maxlength="35"
                show-word-limit
                placeholder="请输入地址名称"
              ></c-input>
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Beneficiary Ref."
              prop="gidgrp.ben.pts.ref"
            >
              <c-input
                v-model="model.gidgrp.ben.pts.ref"
                maxlength="16"
                placeholder="请输入Beneficiary Ref."
              ></c-input>
liyixun committed
1294 1295
            </el-form-item>
          </c-col>
liyixun committed
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="Beneficiary"
              prop="gidgrp.ben.pts.extkey"
            >
              <c-fullbox>
                <c-input
                  v-model="model.gidgrp.ben.pts.extkey"
                  maxlength="16"
                  placeholder="请输入External Key of Address"
                  @keyup.enter.native="
                    showGridPromptDialog(`gidgrp.ben.pts.extkey`)
                  "
                ></c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
                    <span style="font-family: '宋体'; font-weight: bold"
                      >i</span
                    >
                  </c-button>
                  <c-button
                    disabled
                    size="small"
                    type="primary"
                    @click="onBenpDet"
                  >
                    Details
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="地址名称"
              prop="gidgrp.ben.pts.adrblk"
            >
              <c-input
                disabled
                rows="4"
                type="textarea"
                v-model="model.gidgrp.ben.pts.adrblk"
                maxlength="35"
                show-word-limit
                placeholder="请输入地址名称"
              ></c-input>
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="被保证人"
              prop="gidgrp.gidcxm.warran"
            >
              <c-input
                v-model="model.gidgrp.gidcxm.warran"
                maxlength="40"
                placeholder="请输入被保证人"
              ></c-input>
            </el-form-item>
          </c-col>

liyixun committed
1365 1366
          <c-col :span="24">
            <c-col :span="20">
liyixun committed
1367 1368 1369 1370 1371
              <el-form-item
                v-if="model.gitp.swiftflg != 'Y'"
                label="对外担保类型"
                prop="gidgrp.rec.cfaguatyp"
              >
liyixun committed
1372 1373 1374 1375 1376 1377
                <c-select
                  disabled
                  v-model="model.gidgrp.rec.cfaguatyp"
                  style="width: 90%"
                  placeholder="请选择对外担保类型"
                >
liyixun committed
1378
                  <el-option
liyixun committed
1379 1380 1381 1382
                    v-for="item in codes.cfaguatyp"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
liyixun committed
1383
                  >
liyixun committed
1384 1385 1386 1387
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>
liyixun committed
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
            <c-col
              :span="4"
              v-if="
                model.gidgrp.cbs.max.cur == 'CNY' && model.gitp.swiftflg != 'Y'
              "
              class="centerLable"
            >
              <c-checkbox
                label="跨境人民币保函"
                v-model="model.gidgrp.rec.cmtflg"
                >跨境人民币保函</c-checkbox
              >
liyixun committed
1400 1401
            </c-col>

liyixun committed
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
            <c-col :span="24">
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
                label="Order Date"
                prop="gidgrp.rec.orddat"
              >
                <c-date-picker
                  type="date"
                  v-model="model.gidgrp.rec.orddat"
                  style="width: 100%"
                  placeholder="请选择Order Date"
                ></c-date-picker>
              </el-form-item>
            </c-col>
liyixun committed
1416

liyixun committed
1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
            <c-col :span="24">
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
                label="Valid from"
                prop="gidgrp.rec.opndat"
              >
                <c-date-picker
                  type="date"
                  v-model="model.gidgrp.rec.opndat"
                  style="width: 100%"
                  placeholder="请选择Valid from"
                ></c-date-picker>
              </el-form-item>
            </c-col>
liyixun committed
1431

liyixun committed
1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
            <c-col :span="24">
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
                label="Expiry Type"
                prop="gidgrp.rec.exptyp"
              >
                <c-select
                  v-model="model.gidgrp.rec.exptyp"
                  style="width: 100%"
                  placeholder="请选择Expiry Type"
                >
                  <el-option
                    v-for="item in codes.exptyp"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>
            <c-col :span="24">
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
                label="Validity until"
                prop="gidgrp.rec.expdat"
              >
                <c-date-picker
                  :disabled="model.gidgrp.rec.exptyp == 'OPEN'"
                  type="date"
                  v-model="model.gidgrp.rec.expdat"
                  style="width: 100%"
                  placeholder="请选择Validity until"
                ></c-date-picker>
              </el-form-item>
            </c-col>

            <c-col :span="24">
              <c-col :span="20">
                <el-form-item
                  v-if="model.gitp.swiftflg == 'Y'"
                  label="Expiry Condition/ Evt."
                  prop="gidgrp.blk.exptxt"
                >
                  <c-input
                    type="textarea"
                    rows="4"
                    :disabled="model.gitp.exptxtmodflg == ''"
                    v-model="model.gidgrp.blk.exptxt"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Expiry Condition/ Evt."
                  ></c-input>
                </el-form-item>
liyixun committed
1486
              </c-col>
liyixun committed
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
              <c-col :span="4">
                <c-checkbox
                  v-if="model.gitp.swiftflg == 'Y'"
                  v-model="model.gitp.exptxtmodflg"
                  :disabled="
                    model.gidgrp.rec.exptyp == 'FIXD' ||
                    model.gidgrp.rec.exptyp == 'OPEN' ||
                    model.gidgrp.rec.exptyp == ''
                  "
                  style="margin: 0 0 0 10px"
                  >Modify Text</c-checkbox
                >
                <c-button
                  v-if="model.gitp.swiftflg == 'Y'"
                  disabled
                  size="small"
                  type="primary"
                  style="margin: 5px 0 0 10px"
                  @click="onGitpButdifexptxt"
                >
                  vs. &System
                </c-button>
                <c-button
                  v-if="model.gitp.swiftflg == 'Y'"
                  disabled
                  size="small"
                  type="primary"
                  style="margin: 5px 0 0 10px"
                  @click="onGitpButdifhisexptxt"
                >
                  vs. &History
                </c-button>
liyixun committed
1519
              </c-col>
liyixun committed
1520
            </c-col>
liyixun committed
1521

liyixun committed
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
            <c-col :span="24">
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
                label="Liability Type "
                prop="gidgrp.rec.liatypc"
              >
                <c-select
                  :disabled="model.gidgrp.rec.purpos == 'ISSU'"
                  v-model="model.gidgrp.rec.liatypc"
                  style="width: 100%"
                  placeholder="请选择Liability Type "
                >
                  <el-option
                    v-for="item in codes.liatypc"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>
liyixun committed
1544

liyixun committed
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
            <c-col :span="24">
              <c-col :span="20">
                <el-form-item
                  v-if="model.gitp.swiftflg == 'Y'"
                  label="Our Liability until"
                  prop="gidgrp.rec.liadat"
                >
                  <c-date-picker
                    :disabled="
                      model.gidgrp.rec.liatypc == 'OPEN' ||
                      model.gidgrp.rec.liatypc == ''
                    "
                    type="date"
                    v-model="model.gidgrp.rec.liadat"
                    style="width: 90%"
                    placeholder="请选择Our Liability until"
                  ></c-date-picker>
                </el-form-item>
liyixun committed
1563
              </c-col>
liyixun committed
1564 1565 1566 1567 1568 1569 1570 1571
              <c-col
                :span="4"
                v-if="model.gitp.swiftflg == 'Y'"
                class="centerLable"
              >
                <c-checkbox v-model="model.gidgrp.rec.liaflg"
                  >Unlimited Liability</c-checkbox
                >
liyixun committed
1572
              </c-col>
liyixun committed
1573
            </c-col>
liyixun committed
1574

liyixun committed
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
            <c-col :span="24">
              <c-col :span="20">
                <el-form-item
                  v-if="model.gitp.swiftflg == 'Y'"
                  label="Liability Condition"
                  prop="gidgrp.blk.liatxtc"
                >
                  <c-input
                    type="textarea"
                    :disabled="model.gitp.liatxtcmodflg == ''"
                    rows="4"
                    v-model="model.gidgrp.blk.liatxtc"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Liability Condition"
                  ></c-input>
                </el-form-item>
liyixun committed
1592
              </c-col>
liyixun committed
1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
              <c-col :span="4">
                <c-checkbox
                  v-if="model.gitp.swiftflg == 'Y'"
                  :disabled="
                    model.gidgrp.rec.liatypc == 'OPEN' ||
                    model.gidgrp.rec.liatypc == 'FIXD' ||
                    model.gidgrp.rec.liatypc == ''
                  "
                  v-model="model.gitp.liatxtcmodflg"
                  style="margin: 0 0 0 10px"
                  >Modify Text</c-checkbox
                >
                <c-button
                  v-if="model.gitp.swiftflg == 'Y'"
                  disabled
                  size="small"
                  type="primary"
                  style="margin: 5px 0 0 10px"
                  @click="onGitpButdifliatxtc"
                >
                  vs. &System
                </c-button>
                <c-button
                  v-if="model.gitp.swiftflg == 'Y'"
                  disabled
                  size="small"
                  type="primary"
                  style="margin: 5px 0 0 10px"
                  @click="onGitpButdifhisliatxtc"
                >
                  vs. &History
                </c-button>
              </c-col>
            </c-col>
liyixun committed
1627
          </c-col>
liyixun committed
1628
        </c-col>
liyixun committed
1629 1630
      </c-col>
    </c-row>
liyixun committed
1631 1632 1633
  </div>
</template>
<script>
liyixun committed
1634
import Api from "~/service/Api";
liyixun committed
1635
import commonProcess from "~/mixin/commonProcess";
liyixun committed
1636 1637
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getopn/Event";
liyixun committed
1638
import Ptap from "~/views/Public/Ptap";
liyixun committed
1639 1640

export default {
liyixun committed
1641 1642 1643 1644 1645 1646 1647
  components: { "c-ptap": Ptap },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
liyixun committed
1648

liyixun committed
1649
  computed: {
liyixun committed
1650 1651 1652 1653
    flag() {
      return this.model.gidgrp.apl.pts.extkey == "";
    },
  },
liyixun committed
1654 1655 1656
  methods: { ...Event },
  created: function () {},
};
liyixun committed
1657 1658 1659
</script>
<style>
</style>