Opnp1.vue 35.9 KB
Newer Older
chenzhaole committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    <!-- ==============左边=========== -->
    <c-col :span="11">
      <c-col :span="24">
        <el-form-item
          label="业务编号"
          prop="cpdgrp.rec.ownref"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              v-model="model.cpdgrp.rec.ownref"
              maxlength="16"
              placeholder="请输入Reference"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click="onSeainf"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
              <c-button
                style="margin: 0 0"
                size="small"
                type="primary"
                :disabled="this.flag"
                @click="onAttpGetref"
              >
                获取
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-col :span="13">
          <el-form-item label="汇款金额" prop="cpdgrp.cbs.nom1.cur">
            <c-select
              v-model="model.cpdgrp.cbs.nom1.cur"
              style="width: 100%"
              placeholder="请选择汇款金额"
            >
              <el-option
                v-for="item in codes.curtxt1"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>

60
        <c-col :span="11">
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
          <el-form-item
            style="text-align: left"
            label-width="5px"
            prop="cpdgrp.cbs.nom1.amt"
          >
            <c-input-currency
              v-model="model.cpdgrp.cbs.nom1.amt"
              style="text-align: left; width: 100%"
              placeholder="请输入汇款金额"
              @keyup.enter.native="
                defaultFunction('cpdgrp.cbs.nom1.amt',model.cpdgrp.cbs.nom1.amt)
              "
            ></c-input-currency>
          </el-form-item>
        </c-col>

      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="是否需要核验" prop="cpdgrp.rec.ischktyp">
            <c-select
              v-model="model.cpdgrp.rec.ischktyp"
              style="width: 100%"
              placeholder="请选择是否需要核验"
            >
              <el-option
                v-for="item in codes.ischktyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="预计核验日期" prop="cpdgrp.rec.prechkdat">
            <c-date-picker
              type="date"
              v-model="model.cpdgrp.rec.prechkdat"
              style="width: 100%"
              placeholder="请选择PRECHKDAT"
              :disabled="model.cpdgrp.rec.ischktyp == ''"
            ></c-date-picker>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="汇款人账户性质" prop="attp.acctyp">
            <c-select
              v-model="model.attp.acctyp"
              style="width: 100%"
              placeholder="请选择汇款人账户性质"
            >
              <el-option
                v-for="item in codes.acctyp1"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="所属行" prop="cpdgrp.rec.othbch">
            <c-input
              v-model="model.cpdgrp.rec.othbch"
              maxlength="8"
              placeholder="请输入所属行"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="汇款语种" prop="attp.payuil">
            <c-select
              v-model="model.attp.payuil"
              style="width: 100%"
              placeholder="请选择Uil Payment"
            >
              <el-option
                v-for="item in codes.payuil"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="业务种类" prop="attp.bustyp">
            <c-select
              v-model="model.attp.bustyp"
              style="width: 100%"
              placeholder="请选择业务种类"
            >
170
            <!-- 使用busflg,bustyp不符 -->
171
              <el-option
172
                v-for="item in codes.busflg"
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
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="10">
          <el-form-item label="清算编号" prop="attp.sysno">
            <c-input
              v-model="model.attp.sysno"
              maxlength="21"
              placeholder="请输入清算编号"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item
            label="收款人常驻国家/地区代码"
            prop="attp.paycountcode"
          >
            <c-input
              v-model="model.attp.paycountcode"
              filterable
              style="width: 100%"
              placeholder="收款人常驻国家/地区代码"
              @keyup.enter.native="
                showGridPromptDialog('attp.paycountcode')
               "
            >
            </c-input>
          </el-form-item>
        </c-col>
        <!-- 还有一个按钮 -->
        <c-col :span="2">
            <c-button
                size="small"
                type="primary"
                icon="el-icon-search"
                @click="onCptpGetinf"
            >
            </c-button>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="汇款人名称" prop="attp.orcnam">
            <c-input
              type="textarea"
              v-model="model.attp.orcnam"
              maxlength="65"
              show-word-limit
              placeholder="请输入汇款人名称"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="汇款人地址" prop="attp.orcadr">
            <c-input
              type="textarea"
              v-model="model.attp.orcadr"
245
              maxlength="265"
246 247
              show-word-limit
              placeholder="请输入汇款人地址"
248
              
249 250 251 252 253 254 255 256 257 258 259
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="收款人名称" prop="attp.pyenam">
            <c-input
              type="textarea"
              v-model="model.attp.pyenam"
260
              maxlength="265"
261 262 263 264 265 266 267 268 269 270 271 272 273 274
              show-word-limit
              placeholder="请输入收款人名称"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="收款人地址" prop="attp.pyeadr">
            <c-input
              type="textarea"
              v-model="model.attp.pyeadr"
275
              maxlength="265"
276 277 278 279 280 281 282 283 284 285 286 287 288
              show-word-limit
              placeholder="请输入收款人地址"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="汇款人帐号" prop="cpdgrp.rec.orcact">
            <c-input
              v-model="model.cpdgrp.rec.orcact"
289
              maxlength="235"
290 291 292 293 294 295 296 297 298 299 300 301 302
              placeholder="请输入汇款人帐号"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="20">
          <el-form-item label="汇款人" prop="cpdgrp.orc.pts.extkey">
            <c-input
              :disabled="model.attp.swftyp == ''"
              v-model="model.cpdgrp.orc.pts.extkey"
303
              maxlength="216"
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
              placeholder="请输入External Key of Address"
              style="width: 95%"
              @keyup.enter.native="
                showGridPromptDialog('cpdgrp.orc.pts.extkey')
              "
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="1">
          <c-button
            style="margin: 0 10px 0 0; padding: 0 12px"
            size="small"
            type="primary"
            @click="onSeainf"
          >
            <span
              style="font-size: 15px; font-family: '宋体'; font-weight: bold"
              >i</span
            >
          </c-button>
        </c-col>

        <c-col :span="2" :offset="1" style="text-align: right">
          <c-button
            style="margin: 0 0"
            size="small"
            type="primary"
            :disabled="this.flag"
            @click="onDetpButgetref"
          >
            获取
          </c-button>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="Address Block" prop="cpdgrp.orc.pts.adrblk">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.orc.pts.adrblk"
346
              maxlength="235"
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
              show-word-limit
              placeholder="请输入Address Block"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
    </c-col>
    <!-- ===============================右边============================= -->
    <c-col :span="11" :offset="1">
      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="Name" prop="cpdgrp.rec.nam">
            <c-input
              v-model="model.cpdgrp.rec.nam"
362
              maxlength="240"
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
              placeholder="请输入Externally Displayed Name to Identify the Contract"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="汇款性质" prop="cpdgrp.rec.trntyp">
            <c-select
              v-model="model.cpdgrp.rec.trntyp"
              style="width: 100%"
              placeholder="请选择汇款性质"
            >
              <el-option
                v-for="item in codes.trntyp1"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="汇款方式" prop="cpdgrp.rec.paytype">
            <c-select
              v-model="model.cpdgrp.rec.paytype"
              style="width: 100%"
              placeholder="请选择汇款方式"
            >
              <el-option
                v-for="item in codes.paytype"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="收款对象" prop="cpdgrp.rec.gors">
            <c-select
              v-model="model.cpdgrp.rec.gors"
              style="width: 100%"
              placeholder="请选择收款对象"
            >
              <el-option
                v-for="item in codes.gors"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="费用类型" prop="attp.feetyp">
            <c-select
              v-model="model.attp.feetyp"
              style="width: 100%"
              placeholder="请选择费用类型"
              disabled
            >
              <el-option
                v-for="item in codes.feetyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="起息日期" prop="attp.opndat">
            <c-date-picker
              type="date"
              v-model="model.attp.opndat"
              style="width: 100%"
              placeholder="请选择起息日期"
            ></c-date-picker>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="委托日期" prop="cpdgrp.rec.valdat">
            <c-date-picker
              type="date"
              v-model="model.cpdgrp.rec.valdat"
              style="width: 100%"
              placeholder="请选择Value Date"
            ></c-date-picker>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="客户类型" prop="cpdgrp.rec.clityp">
            <c-select
              v-model="model.cpdgrp.rec.clityp"
              style="width: 100%"
              placeholder="请选择客户类型"
            >
              <el-option
                v-for="item in codes.clityp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="报文类型" prop="attp.swftyp">
            <c-select
              v-model="model.attp.swftyp"
              style="width: 100%"
              placeholder="请选择报文类型"
            >
              <el-option
                v-for="item in codes.swftyp2"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
510
        <c-row type="flex" justify="end">
511 512 513 514 515
        <c-col :span="12">
          <el-form-item label="相关参考号" prop="" v-show="flag1">
            <c-input></c-input>
          </el-form-item>
        </c-col>
516
        <c-col :span="10" offset="2" style="text-align: right">
517 518 519 520
            <c-checkbox 
                v-model="model.cpdgrp.rec.tsnflg"
            >同名划转标志</c-checkbox>
        </c-col>
521
        </c-row>
522 523 524 525 526 527 528
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="接收行名称" prop="attp.resbchnam">
            <c-input
              v-model="model.attp.resbchnam"
529
              maxlength="242"
530
              placeholder="请输入接收行名称"
531 532 533
              @keyup.enter.native="
                showGridPromptDialog('attp.resbchnam')
               "
534 535 536 537 538 539 540 541 542 543
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="接收行BIC" prop="attp.resbch">
            <c-input
              v-model="model.attp.resbch"
544
              maxlength="211"
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
              placeholder="请输入接收行BIC"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="发报行名称" prop="attp.sndbchnam">
            <c-input
              v-model="model.attp.sndbchnam"
              maxlength="42"
              placeholder="请输入发报行名称"
              disabled
              @keyup.enter.native="showGridPromptDialog('attp.sndbchnam')"
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="11">
          <el-form-item label="发报行BIC" prop="attp.sndbch">
            <c-input
              v-model="model.attp.sndbch"
              maxlength="11"
              placeholder="请输入发报行BIC"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="收款人帐号" prop="cpdgrp.rec.pyeact">
            <c-input
              v-model="model.cpdgrp.rec.pyeact"
              maxlength="35"
              placeholder="请输入收款人帐号"
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="20">
          <el-form-item label="收款人" prop="cpdgrp.pye.pts.extkey">
            <c-input
              v-model="model.cpdgrp.pye.pts.extkey"
              maxlength="16"
              style="width: 95%"
              placeholder="请输入External Key of Address"
              @keyup.enter.native="
                showGridPromptDialog('cpdgrp.pye.pts.extkey')
              "
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="1">
          <c-button
            style="margin: 0 10px 0 0; padding: 0 12px"
            size="small"
            type="primary"
            @click="onSeainf"
          >
            <span
              style="font-size: 15px; font-family: '宋体'; font-weight: bold"
              >i</span
            >
          </c-button>
        </c-col>

        <c-col :span="2" :offset="1" style="text-align: right">
          <c-button
            size="small"
            type="primary"
            style="margin: 0 0"
            @click="onPyepDet"
          >
            详情
          </c-button>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="Address Block" prop="cpdgrp.pye.pts.adrblk">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.pye.pts.adrblk"
              maxlength="35"
              show-word-limit
              placeholder="请输入Address Block"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
    </c-col>

    <!-- =============================================原码====================================================== -->
    <!-- <c-col :span="11">
chenzhaole committed
650 651 652 653 654
        <el-form-item label="Drag  Drop Sender" prop="attp.recget.sdamod.dadsnd">
            <c-input  v-model="model.attp.recget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
       </c-col>
                                   
655
       <c-col :span="11">
chenzhaole committed
656 657 658 659
        <el-form-item label="业务编号" prop="cpdgrp.rec.ownref">
            <c-input  v-model="model.cpdgrp.rec.ownref" maxlength="16"  placeholder="请输入业务编号"></c-input>
        </el-form-item>
       </c-col>
660 661 662 663

        
         seainf为i按钮 
       <c-col :span="11">
chenzhaole committed
664 665 666 667 668
        <el-form-item label="" prop="attp.recget.sdamod.seainf">
            <c-input  v-model="model.attp.recget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col>
                  
669
       <c-col :span="11">
chenzhaole committed
670 671 672 673 674
        <c-button size="small" type="primary"  @click="onAttpGetref">
            GetRef
        </c-button>
       </c-col>
                                   
675
       <c-col :span="11">
chenzhaole committed
676 677 678 679 680
        <el-form-item label="Externally Displayed Name to Identify the Contract" prop="cpdgrp.rec.nam">
            <c-input  v-model="model.cpdgrp.rec.nam" maxlength="40"  placeholder="请输入Externally Displayed Name to Identify the Contract"></c-input>
        </el-form-item>
       </c-col>
                                   
681
       <c-col :span="11">
chenzhaole committed
682 683 684 685 686 687
        <el-form-item label="汇款金额" prop="cpdgrp.cbs.nom1.cur">
            <c-select v-model="model.cpdgrp.cbs.nom1.cur" style="width:100%" placeholder="请选择汇款金额">
              </c-select>
        </el-form-item>
       </c-col>
                  
688
       <c-col :span="11">
chenzhaole committed
689 690 691 692 693 694
        <el-form-item label="汇款金额" prop="cpdgrp.cbs.max.cur">
            <c-select v-model="model.cpdgrp.cbs.max.cur" style="width:100%" placeholder="请选择汇款金额">
              </c-select>
        </el-form-item>
       </c-col>
                  
695
       <c-col :span="11">
chenzhaole committed
696 697 698 699 700
        <el-form-item label="汇款金额" prop="cpdgrp.cbs.nom1.amt">
            <c-input  v-model="model.cpdgrp.cbs.nom1.amt"  placeholder="请输入汇款金额"></c-input>
        </el-form-item>
       </c-col>
                  
701
       <c-col :span="11">
chenzhaole committed
702 703 704 705 706
        <el-form-item label="汇款金额" prop="cpdgrp.cbs.max.amt">
            <c-input  v-model="model.cpdgrp.cbs.max.amt"  placeholder="请输入汇款金额"></c-input>
        </el-form-item>
       </c-col>
                                   
707 708 709
       <c-col :span="11">
        <el-form-item label="汇款性质" prop="cpdgrp.rec.trntyp">
            <c-select v-model="model.cpdgrp.rec.trntyp" style="width:100%" placeholder="请选择汇款性质">
chenzhaole committed
710 711 712 713
              </c-select>
        </el-form-item>
       </c-col>
                                   
714
       <c-col :span="11">
chenzhaole committed
715 716 717 718 719 720
        <el-form-item label="汇款方式" prop="cpdgrp.rec.paytype">
            <c-select v-model="model.cpdgrp.rec.paytype" style="width:100%" placeholder="请选择汇款方式">
              </c-select>
        </el-form-item>
       </c-col>
                                   
721
       <c-col :span="11">
chenzhaole committed
722 723 724 725 726 727
        <el-form-item label="是否需要核验" prop="cpdgrp.rec.ischktyp">
            <c-select v-model="model.cpdgrp.rec.ischktyp" style="width:100%" placeholder="请选择是否需要核验">
              </c-select>
        </el-form-item>
       </c-col>
                                   
728
       <c-col :span="11">
chenzhaole committed
729 730 731 732 733
        <el-form-item label="PRECHKDAT" prop="cpdgrp.rec.prechkdat">
            <c-date-picker type="date"  v-model="model.cpdgrp.rec.prechkdat" style="width:100%"  placeholder="请选择PRECHKDAT"></c-date-picker>
        </el-form-item>
       </c-col>
                                   
734
       <c-col :span="11">
chenzhaole committed
735 736 737 738 739
        <el-form-item label="付款人常驻国家/地区编码" prop="attp.country">
            <c-input  v-model="model.attp.country" maxlength="3"  placeholder="请输入付款人常驻国家/地区编码"></c-input>
        </el-form-item>
       </c-col>
                  
740
       <c-col :span="11">
chenzhaole committed
741 742 743 744 745
        <c-button size="small" type="primary" icon="el-icon-search" @click="onAttpSelbut1">
            ?
        </c-button>
       </c-col>
                  
746 747 748
        <c-col :span="11">
            <span  v-text="model.attp.shktyp"   data-path=".attp.shktyp" > </span>
        </c-col>
chenzhaole committed
749
                  
750
       <c-col :span="11">
chenzhaole committed
751 752 753 754 755 756
        <el-form-item label="收款对象" prop="cpdgrp.rec.gors">
            <c-select v-model="model.cpdgrp.rec.gors" style="width:100%" placeholder="请选择收款对象">
              </c-select>
        </el-form-item>
       </c-col>
                                   
757
       <c-col :span="11">
chenzhaole committed
758 759 760 761 762 763
        <el-form-item label="�'�用类型" prop="attp.feetyp">
            <c-select v-model="model.attp.feetyp" style="width:100%" placeholder="请选择�'�用类型">
              </c-select>
        </el-form-item>
       </c-col>
                                   
764
       <c-col :span="11">
chenzhaole committed
765 766 767 768 769 770
        <el-form-item label="汇款人账户性质" prop="attp.acctyp">
            <c-select v-model="model.attp.acctyp" style="width:100%" placeholder="请选择汇款人账户性质">
              </c-select>
        </el-form-item>
       </c-col>
                  
771
       <c-col :span="11">
chenzhaole committed
772 773 774 775 776
        <el-form-item label="起息日期" prop="attp.opndat">
            <c-date-picker type="date"  v-model="model.attp.opndat" style="width:100%"  placeholder="请选择起息日期"></c-date-picker>
        </el-form-item>
       </c-col>
                  
777
       <c-col :span="11">
chenzhaole committed
778 779 780 781
        <el-form-item label="Value Date" prop="cpdgrp.rec.valdat">
            <c-date-picker type="date"  v-model="model.cpdgrp.rec.valdat" style="width:100%"  placeholder="请选择Value Date"></c-date-picker>
        </el-form-item>
       </c-col>
782 783 784
        
        
	<c-col :span="11">
chenzhaole committed
785 786 787
	    <span  v-text="model.attp.opndatlab"   data-path=".attp.opndatlab" > </span>
	</c-col>
                                                    
788
       <c-col :span="11">
chenzhaole committed
789 790 791 792 793
        <el-form-item label="所属行" prop="cpdgrp.rec.othbch">
            <c-input  v-model="model.cpdgrp.rec.othbch" maxlength="8"  placeholder="请输入所属行"></c-input>
        </el-form-item>
       </c-col>
                                   
794 795
       <c-col :span="11">
        <el-form-item label="汇款语种" prop="attp.payuil">
chenzhaole committed
796 797 798 799 800
            <c-select v-model="model.attp.payuil" style="width:100%" placeholder="请选择Uil Payment">
              </c-select>
        </el-form-item>
       </c-col>
                                   
801
       <c-col :span="11">
chenzhaole committed
802 803 804 805 806 807
        <el-form-item label="客户类型" prop="cpdgrp.rec.clityp">
            <c-select v-model="model.cpdgrp.rec.clityp" style="width:100%" placeholder="请选择客户类型">
              </c-select>
        </el-form-item>
       </c-col>
                                   
808
       <c-col :span="11">
chenzhaole committed
809 810 811 812 813 814
        <el-form-item label="报文类型" prop="attp.swftyp">
            <c-select v-model="model.attp.swftyp" style="width:100%" placeholder="请选择报文类型">
              </c-select>
        </el-form-item>
       </c-col>
                                   
815
       <c-col :span="11">
chenzhaole committed
816 817 818 819 820 821
        <el-form-item label="业务种类" prop="attp.bustyp">
            <c-select v-model="model.attp.bustyp" style="width:100%" placeholder="请选择业务种类">
              </c-select>
        </el-form-item>
       </c-col>
                  
822
       <c-col :span="11">
chenzhaole committed
823 824 825
	    <c-checkbox v-model="model.cpdgrp.rec.tsnflg">同名划转标志</c-checkbox>
       </c-col>
                  
826
       <c-col :span="11">
chenzhaole committed
827 828 829 830 831
        <el-form-item label="相关参考号" prop="attp.xnggbh">
            <c-input  v-model="model.attp.xnggbh" maxlength="16"  placeholder="请输入相关参考号"></c-input>
        </el-form-item>
       </c-col>
                                   
832
       <c-col :span="11">
chenzhaole committed
833 834 835 836 837
        <el-form-item label="清算编号" prop="attp.sysno">
            <c-input  v-model="model.attp.sysno" maxlength="21"  placeholder="请输入清算编号"></c-input>
        </el-form-item>
       </c-col>
                  
838 839 840
        <c-col :span="11">
            <span  v-text="model.attp.xnglab"   data-path=".attp.xnglab" > </span>
        </c-col>
chenzhaole committed
841
                  
842
       <c-col :span="11">
chenzhaole committed
843 844 845 846 847
        <el-form-item label="收款人常驻国家/地区代码" prop="attp.paycountcode">
            <c-input  v-model="model.attp.paycountcode" maxlength="3"  placeholder="请输入收款人常驻国家/地区代码"></c-input>
        </el-form-item>
       </c-col>
                  
848
       <c-col :span="11">
chenzhaole committed
849 850 851 852 853
        <c-button size="small" type="primary" icon="el-icon-search" @click="onAttpSelbut">
            ?
        </c-button>
       </c-col>
                                                                     
854
       <c-col :span="11">
chenzhaole committed
855 856 857 858 859
        <el-form-item label="汇款人名称" prop="attp.orcnam">
            <c-input type="textarea" v-model="model.attp.orcnam" maxlength="65" show-word-limit placeholder="请输入汇款人名称" ></c-input>
        </el-form-item>
        </c-col>
                  
860
       <c-col :span="11">
chenzhaole committed
861 862 863 864 865
        <el-form-item label="接收行名称" prop="attp.resbchnam">
            <c-input  v-model="model.attp.resbchnam" maxlength="42"  placeholder="请输入接收行名称"></c-input>
        </el-form-item>
       </c-col>
                                                    
866
       <c-col :span="11">
chenzhaole committed
867 868 869 870 871
        <el-form-item label="接收行BIC" prop="attp.resbch">
            <c-input  v-model="model.attp.resbch" maxlength="11"  placeholder="请输入接收行BIC"></c-input>
        </el-form-item>
       </c-col>
                  
872
       <c-col :span="11">
chenzhaole committed
873 874 875 876 877
        <el-form-item label="汇款人地址" prop="attp.orcadr">
            <c-input type="textarea" v-model="model.attp.orcadr" maxlength="65" show-word-limit placeholder="请输入汇款人地址" ></c-input>
        </el-form-item>
        </c-col>
                                   
878 879 880
        <c-col :span="11">
            <span  v-text="model.attp.sndlab"   data-path=".attp.sndlab" > </span>
        </c-col>
chenzhaole committed
881
                  
882
       <c-col :span="11">
chenzhaole committed
883 884 885 886 887
        <el-form-item label="收款人名称" prop="attp.pyenam">
            <c-input type="textarea" v-model="model.attp.pyenam" maxlength="65" show-word-limit placeholder="请输入收款人名称" ></c-input>
        </el-form-item>
        </c-col>
                  
888
       <c-col :span="11">
chenzhaole committed
889 890 891 892 893
        <el-form-item label="发报行名称" prop="attp.sndbchnam">
            <c-input  v-model="model.attp.sndbchnam" maxlength="42"  placeholder="请输入发报行名称"></c-input>
        </el-form-item>
       </c-col>
                                                    
894
       <c-col :span="11">
chenzhaole committed
895 896 897 898 899
        <el-form-item label="发报行BIC" prop="attp.sndbch">
            <c-input  v-model="model.attp.sndbch" maxlength="11"  placeholder="请输入发报行BIC"></c-input>
        </el-form-item>
       </c-col>
                  
900
       <c-col :span="11">
chenzhaole committed
901 902 903 904 905
        <c-button size="small" type="primary"  @click="onAttpSerpty">
            查询客户号
        </c-button>
       </c-col>
                  
906
       <c-col :span="11">
chenzhaole committed
907 908 909 910 911
        <el-form-item label="收款人地址" prop="attp.pyeadr">
            <c-input type="textarea" v-model="model.attp.pyeadr" maxlength="65" show-word-limit placeholder="请输入收款人地址" ></c-input>
        </el-form-item>
        </c-col>
                  
912
       <c-col :span="11">
chenzhaole committed
913 914 915 916 917
        <el-form-item label="汇款人帐号" prop="cpdgrp.rec.orcact">
            <c-input  v-model="model.cpdgrp.rec.orcact" maxlength="35"  placeholder="请输入汇款人帐号"></c-input>
        </el-form-item>
       </c-col>
                                   
918
       <c-col :span="11">
chenzhaole committed
919 920 921 922 923
        <el-form-item label="收款人帐号" prop="cpdgrp.rec.pyeact">
            <c-input  v-model="model.cpdgrp.rec.pyeact" maxlength="35"  placeholder="请输入收款人帐号"></c-input>
        </el-form-item>
       </c-col>
                                   
924
       <c-col :span="11">
chenzhaole committed
925 926 927 928 929
        <el-form-item label="Drag  Drop Sender" prop="attp.orcp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.attp.orcp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
       </c-col>
                  
930
       <c-col :span="11">
chenzhaole committed
931 932 933 934 935
        <el-form-item label="Drag  Drop Sender" prop="attp.pyep.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.attp.pyep.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
       </c-col>
                                   
936
       <c-col :span="11">
chenzhaole committed
937 938 939 940 941
        <el-form-item label="External Key of Address" prop="cpdgrp.orc.pts.extkey">
            <c-input  v-model="model.cpdgrp.orc.pts.extkey" maxlength="16"  placeholder="请输入External Key of Address"></c-input>
        </el-form-item>
       </c-col>
                  
942
       <c-col :span="11">
chenzhaole committed
943 944 945 946 947
        <el-form-item label="" prop="attp.orcp.ptsget.sdamod.seainf">
            <c-input  v-model="model.attp.orcp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col>
                  
948
       <c-col :span="11">
chenzhaole committed
949 950 951 952 953
        <c-button size="small" type="primary"  @click="onOrcpDet">
            Details
        </c-button>
       </c-col>
                                   
954
       <c-col :span="11">
chenzhaole committed
955 956 957 958 959
        <el-form-item label="External Key of Address" prop="cpdgrp.pye.pts.extkey">
            <c-input  v-model="model.cpdgrp.pye.pts.extkey" maxlength="16"  placeholder="请输入External Key of Address"></c-input>
        </el-form-item>
       </c-col>
                  
960
       <c-col :span="11">
chenzhaole committed
961 962 963 964 965
        <el-form-item label="" prop="attp.pyep.ptsget.sdamod.seainf">
            <c-input  v-model="model.attp.pyep.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col>
                  
966
       <c-col :span="11">
chenzhaole committed
967 968 969 970 971
        <c-button size="small" type="primary"  @click="onPyepDet">
            Details
        </c-button>
       </c-col>
                  
972
       <c-col :span="11">
chenzhaole committed
973 974 975 976 977
        <el-form-item label="名称" prop="cpdgrp.orc.namelc">
            <c-input type="textarea" v-model="model.cpdgrp.orc.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
                  
978
       <c-col :span="11">
chenzhaole committed
979 980 981 982 983
        <el-form-item label="名称" prop="cpdgrp.pye.namelc">
            <c-input type="textarea" v-model="model.cpdgrp.pye.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
                  
984
       <c-col :span="11">
chenzhaole committed
985 986 987 988 989
        <el-form-item label="Address Block" prop="cpdgrp.orc.pts.adrblk">
            <c-input type="textarea" v-model="model.cpdgrp.orc.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
                  
990
       <c-col :span="11">
chenzhaole committed
991 992 993 994 995
        <el-form-item label="Chinese address" prop="cpdgrp.orc.dbfadrblkcn">
            <c-input type="textarea" v-model="model.cpdgrp.orc.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
                  
996
       <c-col :span="11">
chenzhaole committed
997 998 999 1000 1001
        <el-form-item label="Address Block" prop="cpdgrp.pye.pts.adrblk">
            <c-input type="textarea" v-model="model.cpdgrp.pye.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
                  
1002
       <c-col :span="11">
chenzhaole committed
1003 1004 1005 1006 1007
        <el-form-item label="Chinese address" prop="cpdgrp.pye.dbfadrblkcn">
            <c-input type="textarea" v-model="model.cpdgrp.pye.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
                  
1008
       <c-col :span="11">
chenzhaole committed
1009 1010 1011 1012 1013
        <el-form-item label="地址" prop="cpdgrp.orc.adrelc">
            <c-input type="textarea" v-model="model.cpdgrp.orc.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col>
                  
1014
       <c-col :span="11">
chenzhaole committed
1015 1016 1017
        <el-form-item label="地址" prop="cpdgrp.pye.adrelc">
            <c-input type="textarea" v-model="model.cpdgrp.pye.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
1018
        </c-col> -->
chenzhaole committed
1019 1020 1021
  </div>
</template>
<script>
1022
import Api from "~/service/Api";
wangren committed
1023
import commonProcess from "~/mixin/commonProcess";
1024 1025
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptato/Event";
chenzhaole committed
1026 1027

export default {
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
  computed: {
    flag() {
      return this.model.cpdgrp.orc.pts.extkey == "";
chenzhaole committed
1039
    },
1040 1041 1042 1043 1044 1045 1046
    flag1(){
        if(this.model.attp.swftyp == "200"){
            return true;
        }
        else{
            return false;
        }
chenzhaole committed
1047
    }
1048 1049
  },
};
chenzhaole committed
1050 1051 1052
</script>
<style>
</style>