Infsea.vue 26.7 KB
Newer Older
niewei committed
1
<template>
niewei committed
2 3
  <div class="eibs-tab">
    <c-list-search @form-reset="handleReset" @form-search="handleSearch">
4
      <!-- 持续展示区 -->
niewei committed
5 6 7 8 9 10 11 12 13
      <template v-slot="searchSlot">
        <el-form
          class="m-table-search-form"
          ref="paramsForm"
          :inline="true"
          label-position="right"
          label-width="110px"
          size="small"
        >
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
          <c-row>
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="业务编号"
                  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>
              <c-col :span="8">
                <el-form-item
                  label="开立日期"
                  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>

              <c-col :span="8">
                <el-form-item label="交易类型" prop="mylx" style="width: 100%">
                  <c-select
                    v-model="model.mylx"
                    style="width: 100%"
                    placeholder="请选择交易类型"
                  >
                    <el-option
                      v-for="item in codes.mylx"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    >
                    </el-option>
                  </c-select>
                </el-form-item>
              </c-col>
            </c-col>
          </c-row>
          <c-row v-show="searchSlot.searchToggle">
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="名称"
                  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="参考号"
                  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 :span="8">
                <el-form-item
                  label="客户号"
                  prop="infcon.pty.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.pty.extkey"
                    maxlength="24"
                    placeholder="请输入Select Single Party"
                  ></c-input> </el-form-item
              ></c-col>
            </c-col>
            <c-col :span="24">
              <c-col :span="8"
                ><el-form-item
                  label="客户名称"
                  prop="infcon.pty.nam"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.pty.nam"
                    maxlength="40"
                    placeholder="请输入External Visible Name"
                  ></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 :span="8"
                ><el-form-item
                  label="角色"
                  prop="infcon.searol"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.searol"
                    style="width: 100%"
                    placeholder="请选择Role"
                  >
                  </c-select> </el-form-item
              ></c-col>
            </c-col>
            <c-col :span="24">
              <c-col :span="8"
                ><el-form-item
                  label="用户id"
                  prop="infcon.usr.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.usr.extkey"
                    maxlength="8"
                    placeholder="请输入User ID"
                  ></c-input> </el-form-item
              ></c-col>
              <c-col :span="8">
                <el-form-item
                  label="状态"
                  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 :span="8"
                ><el-form-item
                  label="币种"
                  prop="infcon.seacur"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.seacur"
                    style="width: 100%"
                    placeholder="请选择Currency"
                  >
                  </c-select> </el-form-item
              ></c-col>
            </c-col>
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
                  label="金额"
                  prop="infcon.seaamtfr"
                  style="width: 100%"
                >
                  <c-col :span="11">
                    <c-input
                      v-model="model.infcon.seaamtfr"
                      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"
                      placeholder="请输入Amount to"
                    ></c-input>
                  </c-col>
                </el-form-item>
              </c-col>
              <c-col :span="8"
                ><el-form-item
                  label="Form of L/C"
                  prop="sealcrtyp"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.sealcrtyp"
                    style="width: 100%"
                    placeholder="请选择Form of L/C"
                  >
                    <el-option
                      v-for="item in codes.sealcrtyp"
                      :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="elcflg"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.elcflg"
                    style="width: 100%"
                    placeholder="请选择是否通过电证系统"
                  >
                    <el-option
                      v-for="item in codes.elcflg"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    >
                    </el-option>
                  </c-select> </el-form-item
              ></c-col>
            </c-col>
          </c-row>
          <!-- 原排班-start -->
          <!-- <c-row>
            <c-col :span="11" :offset="1">
              <el-form-item label="业务编号" 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="11" :offset="1">
              <el-form-item label="名称" prop="infcon.nam">
                <c-input
                  v-model="model.infcon.nam"
                  maxlength="40"
                  placeholder="请输入Name"
                ></c-input>
              </el-form-item>
            </c-col>
          </c-row> -->
          <!-- 可控展示区 -->
          <!-- <el-row v-show="searchSlot.searchToggle">
            <c-row>
              <c-col :span="11" :offset="1">
                <el-form-item label="参考号" prop="infcon.searef">
                  <c-input
                    v-model="model.infcon.searef"
                    maxlength="16"
                    placeholder="请输入Party Reference"
                  ></c-input>
                </el-form-item>
              </c-col>
            </c-row>

            <c-row>
              <c-col :span="11" :offset="1">
                <el-form-item label="客户号" 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>
niewei committed
316

317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
              <c-col :span="11" :offset="1">
                <el-form-item label="客户名称" 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-row>
            <c-row>
              <c-col :span="11" :offset="1">
                <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="11" :offset="1">
                <el-form-item label="角色" prop="infcon.searol">
                  <c-select
                    v-model="model.infcon.searol"
                    style="width: 100%"
                    placeholder="请选择Role"
                  >
                  </c-select>
                </el-form-item>
              </c-col>
            </c-row>

            <c-row>
              <c-col :span="11" :offset="1">
                <c-col :span="12">
                  <el-form-item label="开立日期从" prop="infcon.opndatfrom">
                    <c-date-picker
                      type="date"
                      v-model="model.infcon.opndatfrom"
                      style="width: 100%"
                      placeholder="请选择Opening between"
                      value-format="yyyy-MM-dd"
                    ></c-date-picker>
                  </el-form-item>
niewei committed
362
                </c-col>
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384

                <c-col :span="12">
                  <el-form-item label="至" prop="infcon.opndatto">
                    <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>
                  </el-form-item>
                </c-col>
              </c-col>
              <c-col :span="11" :offset="1">
                <c-col :span="12">
                  <el-form-item label="用户id" prop="infcon.usr.extkey">
                    <c-input
                      v-model="model.infcon.usr.extkey"
                      maxlength="8"
                      placeholder="请输入User ID"
                    ></c-input>
                  </el-form-item>
niewei committed
385 386
                </c-col>

387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
                <c-col :span="12">
                  <el-form-item label="状态" prop="infcon.seasta">
                    <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>
            </c-row>
            <c-row>
              <c-col :span="11" :offset="1">
                <c-col :span="12">
                  <el-form-item label="币种" prop="infcon.seacur">
                    <c-select
                      v-model="model.infcon.seacur"
                      style="width: 100%"
                      placeholder="请选择Currency"
                    >
                    </c-select>
                  </el-form-item>
                </c-col>
              </c-col>
              <c-col :span="11" :offset="1">
                <c-col :span="12">
                  <el-form-item label="金额从" 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="到" prop="infcon.seaamtto">
                    <c-input
                      v-model="model.infcon.seaamtto"
                      placeholder="请输入Amount to"
                    ></c-input>
                  </el-form-item>
                </c-col>
              </c-col>
            </c-row>

            <c-row>
              <c-col :span="9" :offset="1">
                <el-form-item label="Form of L/C" prop="sealcrtyp">
                  <c-select
                    v-model="model.sealcrtyp"
                    style="width: 100%"
                    placeholder="请选择Form of L/C"
                  >
                    <el-option
                      v-for="item in codes.sealcrtyp"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    >
                    </el-option>
                  </c-select>
                </el-form-item>
              </c-col>

              <c-col :span="6" :offset="1">
                <el-form-item label="交易类型" prop="mylx">
                  <c-select
                    v-model="model.mylx"
                    style="width: 100%"
                    placeholder="请选择交易类型"
                  >
                    <el-option
                      v-for="item in codes.mylx"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    >
                    </el-option>
                  </c-select>
                </el-form-item>
              </c-col>

              <c-col :span="6" :offset="1">
                <el-form-item label="是否通过电证系统" prop="elcflg">
                  <c-select
                    v-model="model.elcflg"
                    style="width: 100%"
                    placeholder="请选择是否通过电证系统"
                  >
                    <el-option
                      v-for="item in codes.elcflg"
                      :key="item.value"
                      :label="item.label"
                      :value="item.value"
                    >
                    </el-option>
                  </c-select>
                </el-form-item>
              </c-col>
            </c-row>
          </el-row> -->
          <!-- 原排班-end -->
        </el-form>
      </template>
    </c-list-search>

    <!--                            
niewei committed
502 503 504 505 506 507 508 509 510 511 512 513 514
       <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">
        <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>
515 516
       -->
    <!--
niewei committed
517 518 519 520 521 522 523
       <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>
      -->
niewei committed
524
    <c-col :span="24" style="margin-top: 10px">
525 526 527 528 529 530 531
      <c-button
        class="medium_bcs"
        size="medium"
        type="primary"
        @click="toDetopn"
        >卖方信用证开立</c-button
      >
niewei committed
532 533
    </c-col>

534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
    <c-col :span="24">
      <c-istream-table :list="stmData.data" :columns="stmData.columns">
        <el-table-column fixed="right" prop="op" label="操作" width="150px">
          <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"
            >
              <div
                style="
                  text-align: right;
                  margin-top: -30px;
                  margin-right: 5px;
                  font-size: 16px;
                "
niewei committed
558
              >
559 560 561 562
                <span
                  class="el-icon-close"
                  @click="closeTrn('popover_' + scope.row.IDX)"
                />
niewei committed
563
              </div>
564 565 566 567 568 569
              <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"
570
                      @click="display(scope.row['INR'])"
571 572 573 574 575 576
                    >
                      详情
                    </c-button>
                  </template>
                </el-table-column>
              </c-istream-table>
niewei committed
577 578 579
              <c-button
                style="margin-left: 0"
                size="small"
580 581
                @click="getTrnInfo(scope.$index, scope.row)"
                slot="reference"
niewei committed
582
              >
583 584 585 586 587 588 589 590 591 592 593 594
                详情
              </c-button>
            </el-popover>
            <c-button
              style="margin-left: 0"
              size="small"
              type="primary"
              @click="getButtons(scope.row['Reference'])"
            >
              处理
            </c-button>
            <!--
niewei committed
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
              <c-button
                style="margin-left: 0"
                size="small"
                type="primary"
                @click="getButtons(scope.row['Reference'], 'detame')"
              >
                修改通知
              </c-button>
              <c-button
                style="margin-left: 0"
                size="small"
                type="primary"
                @click="getButtons(scope.row['Reference'], 'detdrv')"
              >
                收单
niewei committed
610 611
              </c-button>  
              -->
612 613 614 615 616
          </template>
        </el-table-column>
      </c-istream-table>
    </c-col>
    <!--
niewei committed
617 618 619
        <c-row style="margin-top:20px; padding: 0 10px 0 10px;">
            <c-col>
                <c-button size="small" type="primary">导Excel</c-button>
niewei committed
620 621 622 623
                <c-button size="small" type="primary"
                @click="onInfbutDsp"
                :disabled="model.infbut.selrow === 0"
                >Display</c-button>
niewei committed
624 625 626
                <c-button size="small" type="primary">Use</c-button>
            </c-col>
        </c-row>
niewei committed
627
      -->
niewei committed
628

629
    <!--
niewei committed
630
        <c-row style="margin-top:20px; padding: 0 10px 0 10px;">
niewei committed
631 632 633 634 635 636
               <c-istream-table 
                 :border="true" 
                 :list="tableData" 
                 :columns="stmData.columns"
                  v-on:chooseRowEvent="chooseRowEvent"
                  style="width:80%,text-align:center">
niewei committed
637 638 639
            </c-istream-table>
        </c-row>
      -->
640
    <!--
niewei committed
641 642 643 644 645
                <el-table-column prop="op" label="OP" width="100">
                    <template slot-scope="scope">
                        <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
                    </template>
                </el-table-column>
niewei committed
646
            -->
niewei committed
647 648 649 650 651 652 653 654
    <el-dialog :visible.sync="initdialog" :title="'交易列表'" append-to-body>
      <div class="m-list-btns">
        <m-busbtn ref="childs" :ownref="ownref" @onChoose="onChoose"
          >11</m-busbtn
        >
      </div>
    </el-dialog>
  </div>
niewei committed
655 656
</template>
<script>
niewei committed
657
import Utils from "~/utils/index";
658
import Api from "~/service/Api";
wangren committed
659
import commonProcess from "~/mixin/commonProcess";
660 661
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infdet/Event";
niewei committed
662 663
//交易跳转逻辑
import BusNavbar from "~/views/Business/Infdet/BusNavbar";
niewei committed
664 665

export default {
666 667 668 669 670 671
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  components: { "m-busbtn": BusNavbar },
  data() {
    return {
niewei committed
672 673 674 675 676 677 678 679 680 681 682 683 684 685
      ownref: "",
      initdialog: false,
      dialogTableVisible: false,
      trnData: {
        columns: [
          '1 1 "编号" 200',
          '2 2 "交易名称" 100',
          '3 3 "日期" 200',
          '4 4 "状态" 50',
          '5 5 "币种" 80',
          '6 6 "金额" 80',
        ],
        data: [],
      },
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
      stmData: {
        columns: [
          '1 1 "Reference" 100 ',
          '2 2 "Resp. User" 100',
          '3 3 "Tenor day" 100',
          '7 4 "Party Number" 150 ',
          '8 5 "Applicant" 150 ',
          '9 6 "Party Number" 150 ',
          '10 7 "Beneficiary" 150 ',
          '11 8 "Party Number" 150 ',
          '12 9 "Issuing Bank" 150 ',
          '4 10 "Opened" 150 ',
          '5 11 "Expired" 150 ',
          '6 12 "Closed" 150 ',
          '13 13 "Cur" 150 ',
          '15 14 "Cur" 150 ',
          '14 15 "L/C Amount" 150 ',
          '16 16 "Open Amount" 150 ',
        ],
        data: [],
      },
    };
  },
  /*
niewei committed
710 711 712 713 714 715 716
	computed: {
        tableData() {
      // "10000449\t2000007350\t2000007350-001\tBEIJING TESTTEST,BEIJING, CHINA\t\t100080\tBEIJING, CHINA\tTEST TEST1 CO.,LTD."
      console.log(this.model.infbut.dspstm.rows)
      return this.model.infbut.dspstm.rows;
    }
  },
niewei committed
717
  */
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
  methods: {
    ...Event,
    async getButtons(ownref) {
      this.initdialog = true;
      this.ownref = ownref;
      console.log("ownref:" + ownref);
      setTimeout(() => {
        this.$refs.childs.$emit("childmethods");
      }, 10);
      //this.$router.history.push({ path: "/business/" + frm, query: { ownref } })
    },
    async onChoose(code) {
      //跳转交易
      this.$router.history.push("/business/" + code);
      this.initdialog = false;
    },
    async getDitSelInfo(idx, row) {
      //TD中选中行触发
      var params = { selDst: "infbut.dspstm", selIds: [idx + 1] };
      let rtnmsg = await this.executeRule("infbut.dspstm", params);
      if ((rtnmsg.respCode = SUCCESS)) {
        this.updateModel(rtnmsg.data);
        // Utils.copyValueFromVO(this.model, rtnmsg.data);
        //TD中点击display时触发
        params = { selDst: "infbut.dsp", selIds: [idx + 1] };
        let rtnmsgNew = await this.executeRule("infbut.dsp", params);
niewei committed
744

745 746 747
        if ((rtnmsgNew.respCode = SUCCESS)) {
          console.log(rtnmsgNew);
          this.updateModel(rtnmsgNew.data);
niewei committed
748

749 750 751
          let rtnmsgOitset = await this.executeDefault(
            "mtabut.coninf.oitset.oit"
          );
niewei committed
752

753 754
          if ((rtnmsgOitset.respCode = SUCCESS)) {
            Utils.copyValueFromVO(this.model, rtnmsgOitset.data);
niewei committed
755
          }
756 757 758 759
        }
      }
      //触发父组件中updateShowPanel 事件,修改index中showPanel ,控制 index中组件的显示和隐藏
      this.$emit("updateShowPanel", true);
niewei committed
760 761
    },

niewei committed
762 763 764 765 766 767 768 769 770 771 772 773
    async getTrnInfo(idx, row) {
      this.model.infcon.objinr = row["INR"];
      this.model.dedgrp.rec.inr = row["INR"];
      this.model.infcon.chksubcon = "X";

      this.dialogTableVisible = true;
      let rtnmsg = await this.executeDefault("infcon.chksubcon");

      if ((rtnmsg.respCode = SUCCESS)) {
        this.trnData.data = rtnmsg.data.infcon_trnstm.rows;
      }
    },
774 775
    closeTrn(refId) {
      this.$refs[refId].doClose();
niewei committed
776 777
    },
    /*
niewei committed
778 779 780
    chooseRowEvent(row) {
      this.model.infbut.selrow = row.IDX + 1;
    },
niewei committed
781
    */
782 783 784 785
    toDetopn() {
      this.$router.history.push("/business/detopn");
    },
  },
niewei committed
786

787
  created: function () {},
niewei committed
788
};
niewei committed
789 790
</script>
<style>
791 792 793 794
.el-form--label-left .el-form-item__label {
  white-space: pre-wrap;
  text-align: center;
}
niewei committed
795
</style>