Infsea.vue 28.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<template>
  <div class="eibs-tab">
    <c-list-search @form-reset="handleReset" @form-search="handleSearch">
      <!-- 持续展示区 -->
      <template v-slot="searchSlot">
        <el-form
          class="m-table-search-form"
          ref="paramsForm"
          :inline="true"
          label-position="left"
          label-width="110px"
          size="small"
        >
wangna committed
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
          <c-row>
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="Own Reference"
                  prop="infcon.seaownref"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.seaownref"
                    maxlength="16"
                    placeholder="请输入Own Reference"
                  ></c-input>
                </el-form-item>
              </c-col>
29

wangna committed
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
              <c-col :span="8">
                <el-form-item
                  label="Opening between"
                  prop="infcon.opndatfrom"
                  style="width: 100%"
                >
                  <c-col :span="11">
                    <c-date-picker
                      type="date"
                      v-model="model.infcon.opndatfrom"
                      style="width: 100%"
                      placeholder="请选择Opening between"
                      value-format="yyyy-MM-dd"
                    ></c-date-picker>
                  </c-col>
                  <c-col :span="2" style="text-align: center">
                    <label style="display: inline-block; width: 100%">-</label>
                  </c-col>
                  <c-col :span="11">
                    <c-date-picker
                      type="date"
                      v-model="model.infcon.opndatto"
                      style="width: 100%"
                      placeholder="请选择Open Date to"
                      value-format="yyyy-MM-dd"
                    ></c-date-picker>
                  </c-col>
                </el-form-item>
              </c-col>
59

wangna committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
              <c-col :span="8">
                <el-form-item
                  label="Party Reference"
                  prop="infcon.searef"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.searef"
                    maxlength="16"
                    placeholder="请输入Party Reference"
                  ></c-input>
                </el-form-item>
              </c-col>
            </c-col>
          </c-row>
75

wangna committed
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
          <!-- 可控展示区 -->
          <c-row v-show="searchSlot.searchToggle">
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="Name"
                  prop="infcon.nam"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.nam"
                    maxlength="40"
                    placeholder="请输入Name"
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Sel Single Party"
                  prop="infcon.pty.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.pty.extkey"
                    maxlength="16"
                    placeholder="请输入Select Single Party"
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Party Name/BIC"
                  prop="infcon.seapty"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.seapty"
                    maxlength="24"
                    placeholder="请输入Party Name/BIC"
                  ></c-input>
                </el-form-item>
              </c-col>
            </c-col>
119

wangna committed
120 121 122 123 124 125 126 127 128 129 130
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="Party Name"
                  prop="infcon.pty.nam"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.pty.nam"
                    maxlength="40"
                    placeholder="请输入Party Name"
wangna committed
131
                    disabled
wangna committed
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
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Release Status"
                  prop="infcon.relflg"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.relflg"
                    style="width: 100%"
                    placeholder="请选择Release Status"
                  >
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Handling Type"
                  prop="infcon.hndtyp"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.hndtyp"
                    style="width: 100%"
                    placeholder="请选择Handling Type"
                  >
                    <el-option
                      v-for="item in codes.hndtyp"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
            </c-col>
170

wangna committed
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
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="Role"
                  prop="infcon.searol"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.searol"
                    style="width: 100%"
                    placeholder="请选择Role"
                  >
                    <el-option
                      v-for="item in codes.payrol"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Resp.User"
                  prop="infcon.usr.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.usr.extkey"
                    maxlength="24"
                    placeholder="请输入Resp.User"
wangna committed
202
                    disabled
wangna committed
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Status"
                  prop="infcon.seasta"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.seasta"
                    style="width: 100%"
                    placeholder="请选择Status"
                  >
                    <el-option
                      v-for="item in codes.seasta"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
            </c-col>
227

wangna committed
228 229 230 231 232 233 234 235 236 237 238 239 240
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="Currency"
                  prop="infcon.seacur"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.seacur"
                    style="width: 100%"
                    placeholder="请选择Currency"
                  >
                    <el-option
wangna committed
241
                      v-for="item in codes.curtxt1"
wangna committed
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
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="是否显示查询码"
                  prop="infcon.cxmflg"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.cxmflg"
                    style="width: 100%"
                    placeholder="请选择是否显示查询码"
                  >
                    <el-option
                      v-for="item in codes.cxmflg"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Amount between"
                  prop="infcon.seaamtfr"
                  style="width: 100%"
                >
                  <c-col :span="11">
                    <c-input
                      v-model="model.infcon.seaamtfr"
                      style="width: 100%"
                      placeholder="请输入Amount between"
                    ></c-input>
                  </c-col>
                  <c-col :span="2" style="text-align: center">
                    <label style="display: inline-block; width: 100%">-</label>
                  </c-col>
                  <c-col :span="11">
                    <c-input
                      v-model="model.infcon.seaamtto"
                      style="width: 100%"
                      placeholder="请输入Amount to"
                    ></c-input>
                  </c-col>
                </el-form-item>
              </c-col>
            </c-col>
295

wangna committed
296 297 298 299 300 301 302 303 304 305 306 307 308
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="Purpose of Mess."
                  prop="seapurpos"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.seapurpos"
                    style="width: 100%"
                    placeholder="请选择Purpose of Mess."
                  >
                    <el-option
wangna committed
309
                      v-for="item in codes.purpos"
wangna committed
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
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Handling Type"
                  prop="seahndtyp"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.seahndtyp"
                    style="width: 100%"
                    placeholder="请选择Handling Type"
                  >
                    <el-option
                      v-for="item in codes.seahndtyp"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="Undertaking Type"
                  prop="seagtyp"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.seagtyp"
                    style="width: 100%"
                    placeholder="请选择Undertaking Type"
wangna committed
347
                    :code="codes.typgar2"
wangna committed
348 349 350 351 352
                  >
                  </c-select>
                </el-form-item>
              </c-col>
            </c-col>
353

wangna committed
354 355 356 357 358 359 360 361 362 363 364
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="特殊保函类型"
                  prop="infcon.segtyp"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.segtyp"
                    style="width: 100%"
                    placeholder="请选择特殊保函类型"
wangna committed
365
                    :code="codes.segtyp"
wangna committed
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
                  >
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label="电子渠道类型"
                  prop="fromflg"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.fromflg"
                    style="width: 100%"
                    placeholder="请选择电子渠道类型"
                  >
                    <el-option
                      v-for="item in codes.fromflg"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
wangna committed
392
                  label="分离式保函"
wangna committed
393 394 395 396 397 398 399 400 401
                  prop="fenlishi"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.fenlishi"
                    style="width: 100%"
                    placeholder="请选择是否分离式保函"
                  >
                    <el-option
wangna committed
402
                      v-for="item in codes.fenlishi1"
wangna committed
403 404 405 406 407 408 409 410
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    ></el-option>
                  </c-select>
                </el-form-item>
              </c-col>
            </c-col>
411

wangna committed
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label=""
                  style="margin-left: 110px"
                  prop="model.cmtflg"
                >
                  <c-checkbox v-model="model.cmtflg">跨境人民币保函</c-checkbox>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
                  label=""
                  style="margin-left: 110px"
                  prop="model.fingua"
                >
                  <c-checkbox v-model="model.fingua">融资性对外担保</c-checkbox>
                </el-form-item>
              </c-col>
            </c-col>
          </c-row>
433 434 435 436
        </el-form>
      </template>
    </c-list-search>

wangna committed
437
    <el-row>
wangna committed
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
      <c-col :span="24" style="margin-top: 10px">
        <c-button
          class="medium_bcs"
          size="medium"
          type="primary"
          @click="toGitopn"
          >进口保函开立</c-button
        >
        <c-button
          style="margin-left: 20"
          class="medium_bcs"
          size="medium"
          type="primary"
          @click="toGetopn"
          >出口保函通知</c-button
        >
      </c-col>
455

wangna committed
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
      <c-col :span="24" style="text-align: right; height: 100px">
        <c-istream-table :list="stmData.data" :columns="stmData.columns">
          <el-table-column fixed="right" prop="op" label="操作" width="140px">
            <template slot="header">
              <c-col :span="11" style="text-align: left">
                <span>操作</span>
              </c-col>
              <c-col :span="12" style="text-align: right">
                <c-button icon="el-icon-s-tools"></c-button>
              </c-col>
            </template>
            <template slot-scope="scope">
              <el-popover
                placement="top-start"
                title="历史信息"
                width="800"
                trigger="click"
                :ref="'popover_' + scope.row.IDX"
wangna committed
474
              >
wangna committed
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
                <div
                  style="
                    text-align: right;
                    margin-top: -30px;
                    margin-right: 5px;
                    font-size: 16px;
                  "
                >
                  <span
                    class="el-icon-close"
                    @click="closeTrn('popover_' + scope.row.IDX)"
                  />
                </div>
                <c-istream-table
                  :list="trnData.data"
                  :columns="trnData.columns"
                >
                  <el-table-column prop="op" label="操作" width="0">
                    <template slot-scope="scope">
                      <c-button
                        style="margin-left: 0"
                        size="small"
                        @click="display(scope.row['INR'])"
                        >详情</c-button
                      >
                    </template>
                  </el-table-column>
                </c-istream-table>
                <c-button
                  style="margin-left: 0"
                  size="small"
                  @click="getTrnInfo(scope.$index, scope.row)"
                  slot="reference"
                  >详情</c-button
                >
              </el-popover>
wangna committed
511 512 513
              <c-button
                style="margin-left: 0"
                size="small"
wangna committed
514 515 516
                type="primary"
                @click="getButtons(scope.row['Reference'])"
                >处理</c-button
wangna committed
517
              >
wangna committed
518 519 520 521
            </template>
          </el-table-column>
        </c-istream-table>
      </c-col>
wangna committed
522
    </el-row>
wangna committed
523

wangna committed
524
      <div v-if="dialogFlag" class="m-list-btns">
wangna committed
525 526 527 528 529 530 531 532 533 534
        <m-busbtn
          ref="childs"
          :ownref="ownref"
          trnCode="gitsel"
          ownrefPath="gidgrp"
          :model="gitselModel"
          tabIndex="1"
          @onChoose="onChoose"
          >11</m-busbtn
        >
535
      </div>
wangna committed
536 537 538 539 540 541 542 543 544 545 546
      <div v-else>
        <m-busbtn
          ref="childs"
          :ownref="ownref"
          trnCode="getsel"
          ownrefPath="gidgrp"
          :model="getselModel"
          tabIndex="1"
          @onChoose="onChoose"
          >11</m-busbtn
        >
wangna committed
547
      </div>
548

wangna committed
549
    <!-- <c-col :span="12">
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
        <el-form-item label="Own Reference" prop="infcon.seaownref">
            <c-input  v-model="model.infcon.seaownref" maxlength="16"  placeholder="请输入Own Reference"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Name" prop="infcon.nam">
            <c-input  v-model="model.infcon.nam" maxlength="40"  placeholder="请输入Name"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfbutSearow">
            &Search
        </c-button>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Party Reference" prop="infcon.searef">
            <c-input  v-model="model.infcon.searef" maxlength="16"  placeholder="请输入Party Reference"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Release Status" prop="infcon.relflg">
            <c-select v-model="model.infcon.relflg" style="width:100%" placeholder="请选择Release Status">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfbutDsp">
            D&isplay
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Handling Type" prop="infcon.hndtyp">
            <c-select v-model="model.infcon.hndtyp" style="width:100%" placeholder="请选择Handling Type">
              </c-select>
        </el-form-item>
       </c-col>
                                                    
       <c-col :span="12">
        <el-form-item label="Select Single Party" prop="infcon.pty.extkey">
            <c-input  v-model="model.infcon.pty.extkey" maxlength="24"  placeholder="请输入Select Single Party"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="External Visible Name" prop="infcon.pty.nam">
            <c-input  v-model="model.infcon.pty.nam" maxlength="40"  placeholder="请输入External Visible Name"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfbutUserow">
            &Use
        </c-button>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Party Name/BIC" prop="infcon.seapty">
            <c-input  v-model="model.infcon.seapty" maxlength="24"  placeholder="请输入Party Name/BIC"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Role" prop="infcon.searol">
            <c-select v-model="model.infcon.searol" style="width:100%" placeholder="请选择Role">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfbutClr">
            &Clear
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Opening between" prop="infcon.opndatfrom">
            <c-date-picker type="date"  v-model="model.infcon.opndatfrom" style="width:100%"  placeholder="请选择Opening between"></c-date-picker>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Open Date to" prop="infcon.opndatto">
            <c-date-picker type="date"  v-model="model.infcon.opndatto" style="width:100%"  placeholder="请选择Open Date to"></c-date-picker>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="User ID" prop="infcon.usr.extkey">
            <c-input  v-model="model.infcon.usr.extkey" maxlength="8"  placeholder="请输入User ID"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Status" prop="infcon.seasta">
            <c-select v-model="model.infcon.seasta" style="width:100%" placeholder="请选择Status">
              </c-select>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfbutButprt">
            导Excel
        </c-button>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Currency" prop="infcon.seacur">
            <c-select v-model="model.infcon.seacur" style="width:100%" placeholder="请选择Currency">
              </c-select>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Amount between" prop="infcon.seaamtfr">
            <c-input  v-model="model.infcon.seaamtfr"  placeholder="请输入Amount between"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="Amount to" prop="infcon.seaamtto">
            <c-input  v-model="model.infcon.seaamtto"  placeholder="请输入Amount to"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="是否显示查询码" prop="infcon.cxmflg">
            <c-select v-model="model.infcon.cxmflg" style="width:100%" placeholder="请选择是否显示查询码">
              </c-select>
        </el-form-item>
       </c-col>
                                                                                      
       <c-col :span="12">
        <el-form-item label="电子渠道类型" prop="fromflg">
            <c-select v-model="model.fromflg" style="width:100%" placeholder="请选择电子渠道类型">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="是否分离式保函" prop="fenlishi">
            <c-select v-model="model.fenlishi" style="width:100%" placeholder="请选择是否分离式保函">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="特殊保函类型" prop="infcon.segtyp">
            <c-select v-model="model.infcon.segtyp" style="width:100%" placeholder="请选择特殊保函类型">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.cmtflg">跨境人民币保函</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.fingua">融资性对外担保</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfbutExi">
            E&xit
        </c-button>
       </c-col> -->
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infgid/Event";
wangna committed
728 729

import GitselModel from "~/model/Gitsel";
wangna committed
730
import GetselModel from "~/model/Getsel";
wangna committed
731
import BusNavbar from "~/views/Public/BusNavbar";
732 733

export default {
wangna committed
734 735 736 737 738 739
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  components: { "m-busbtn": BusNavbar },
  data() {
    return {
wangna committed
740
      gitselModel: new GitselModel().data,
wangna committed
741
      getselModel: new GetselModel().data,
wangna committed
742 743
      ownref: "",
      dialogTableVisible: false,
wangna committed
744
      dialogFlag: true,
wangna committed
745 746
      trnData: {
        columns: [
wangna committed
747 748 749 750 751 752 753 754
          '0 1 "Trn ID" 100',
          '1 2 "Reference" 200',
          '2 3 "Transaction Name" 100',
          '3 4 "Entry" 200',
          '4 5 "Status" 50',
          '5 6 "Cur." 80',
          '6 7 "Relevant Amount" 80',
          '7 8 "Signed" 80',
wangna committed
755 756 757 758 759 760 761
        ],
        data: [],
      },
      stmData: {
        columns: [
          '1 1 "Reference" 150',
          '2 2 "Resp. User" 150',
wangna committed
762 763 764 765 766 767 768
          // '8 3 "保函品种" 150',
          {
            index: 8,
            position: 3,
            width: 150,
            pattern: "code",
            label: "保函品种",
wangna committed
769
            code: this.codes.typgar1,
wangna committed
770
          },
wangna committed
771 772
          '11 4 "Party Number" 150',
          '12 5 "Applicant" 150',
wangna committed
773
          '17 6 "Cur" 100',
wangna committed
774 775 776
          '18 7 "Guarantee Amount(RMB)" 180',
          '13 8 "Party Number " 150',
          '14 9 "Beneficiary" 150',
wangna committed
777 778
          '3 10 "Opened" 150',
          '10 11 "分行名称" 150',
wangna committed
779
          '21 12 "Cur " 100',
wangna committed
780 781 782
          '22 13 "Open Amount(RMB)" 150',
          '4 14 "Validity" 150',
          '5 15 "Liability" 150',
wangna committed
783
          '15 16 "Cur  " 100',
wangna committed
784
          '16 17 "Guar. Amount" 150',
wangna committed
785
          '19 18 "Cur   " 100',
wangna committed
786
          '20 19 "Open Amount" 150',
wangna committed
787 788 789 790 791 792 793 794 795
          // '9 20 "Handling Type" 150',
          {
            index: 9,
            position: 20,
            width: 150,
            pattern: "code",
            label: "Handling Type",
            code: this.codes.hndtyp,
          },
wangna committed
796 797
          '6 21"电子渠道类型" 150',
          '7 22"OTHERSNO" 150',
wangna committed
798 799 800 801 802 803 804
        ],
        data: [],
      },
    };
  },
  methods: {
    ...Event,
805 806 807
    async getButtons(ownref){
        this.ownref = ownref
        this.$refs.childs.initdialog = true
wangna committed
808 809
        this.dialogFlag = ownref.startsWith("LG");
        console.log("dialogFlag:" + this.dialogFlag);
810 811 812 813 814 815 816 817 818 819 820 821
        console.log("ownref:" +ownref);
      },
        async  onChoose(code){
            //跳转交易
          this.$router.history.push("/business/" + code) 
          this.$refs.childs.initdialog = false                    
        } ,
        async  getDitSelInfo(code){
            //跳转交易
          this.$router.history.push("/business/" + code) 
          this.$refs.childs.initdialog = false                    
        },
822

wangna committed
823 824 825 826
    async getTrnInfo(idx, row) {
      this.model.infcon.objinr = row["INR"];
      this.model.gidgrp.rec.inr = row["INR"];
      this.model.infcon.chksubcon = "X";
827

wangna committed
828 829
      this.dialogTableVisible = true;
      let rtnmsg = await this.executeDefault("infcon.chksubcon");
830

wangna committed
831 832 833
      if ((rtnmsg.respCode = SUCCESS)) {
        this.trnData.data = rtnmsg.data.infcon_trnstm.rows;
      }
834
    },
wangna committed
835 836 837 838 839 840
    closeTrn(refId) {
      this.$refs[refId].doClose();
    },
    toGitopn() {
      this.$router.history.push("/business/gitopn");
    },
wangna committed
841 842 843
    toGetopn() {
      this.$router.history.push("/business/getopn");
    },
wangna committed
844 845 846 847 848 849 850 851
    handleReset: function () {
      this.model = {
        instNo: "",
        instName: "",
      };
    },
  },
  created: function () {},
wangna committed
852 853
  watch: {
    "model.gidgrp.rec.ownref": function () {},
wangna committed
854
  },
wangna committed
855
};
856 857 858 859 860 861
</script>
<style>
.el-dialog__body {
  padding: 10px 5px 50px;
}
</style>