Opnp1.vue 36.2 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
    <!-- ==============左边=========== -->
    <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"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
              <c-button
                style="margin: 0 0"
                size="small"
                type="primary"
                :disabled="this.flag"
              >
                获取
              </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>

58
        <c-col :span="11">
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
          <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"
103
              :disabled="model.cpdgrp.rec.ischktyp == ''||model.cpdgrp.rec.ischktyp=='N'"
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
            ></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="请选择业务种类"
            >
              <el-option
169
                v-for="item in bustyp1"
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
                :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>
209
      
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
        <c-col :span="2">
            <c-button
                size="small"
                type="primary"
                icon="el-icon-search"
            >
            </c-button>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="汇款人名称" prop="attp.orcnam">
            <c-input
              v-model="model.attp.orcnam"
              maxlength="65"
              show-word-limit
              placeholder="请输入汇款人名称"
228
              :disabled="model.attp.swftyp==''"
229 230 231 232 233 234 235 236 237 238
            ></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
              v-model="model.attp.orcadr"
239
              maxlength="265"
240 241
              show-word-limit
              placeholder="请输入汇款人地址"
242
              :disabled="model.attp.swftyp==''"
243 244 245 246 247 248 249 250 251 252
            ></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
              v-model="model.attp.pyenam"
253
              maxlength="265"
254 255
              show-word-limit
              placeholder="请输入收款人名称"
256
              :disabled="model.attp.swftyp==''"
257 258 259 260 261 262 263 264 265 266
            ></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
              v-model="model.attp.pyeadr"
267
              maxlength="265"
268 269
              show-word-limit
              placeholder="请输入收款人地址"
270
              :disabled="model.attp.swftyp==''"
271 272 273 274 275 276 277 278 279 280
            ></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"
281
              maxlength="235"
282
              placeholder="请输入汇款人帐号"
283
              :disabled="model.attp.swftyp==''"
284 285 286 287 288 289 290 291 292 293
            ></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
              v-model="model.cpdgrp.orc.pts.extkey"
294
              maxlength="216"
295 296
              placeholder="请输入External Key of Address"
              style="width: 95%"
297
              :disabled="model.attp.swftyp == ''"
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
              @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"
          >
            <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"
          >
            获取
          </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"
336
              maxlength="235"
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
              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"
352
              maxlength="240"
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
              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
488
                v-for="item in swftyp"
489 490 491 492 493 494 495 496 497 498 499
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
500
        <c-row type="flex" justify="end">
501 502
        <c-col :span="12">
          <el-form-item label="相关参考号" prop="" v-show="flag1">
503
            <c-input v-model="model.attp.xnggbh"></c-input>
504 505
          </el-form-item>
        </c-col>
506
        <c-col :span="10" :offset="2" style="text-align: right">
507 508 509 510
            <c-checkbox 
                v-model="model.cpdgrp.rec.tsnflg"
            >同名划转标志</c-checkbox>
        </c-col>
511
        </c-row>
512 513 514 515 516 517 518
      </c-col>

      <c-col :span="24">
        <c-col :span="24">
          <el-form-item label="接收行名称" prop="attp.resbchnam">
            <c-input
              v-model="model.attp.resbchnam"
519
              maxlength="242"
520
              placeholder="请输入接收行名称"
521 522
              @keyup.enter.native="
                showGridPromptDialog('attp.resbchnam')
taojinrui committed
523
              "
524 525 526 527 528 529 530 531 532 533
            ></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"
534
              maxlength="211"
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
              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
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
556
        <c-col :span="24">
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
          <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"
          >
            <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"
          >
            详情
          </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"
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
    </c-col>

    <!-- =============================================原码====================================================== -->
    <!-- <c-col :span="11">
chenzhaole committed
636 637 638 639 640
        <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>
                                   
641
       <c-col :span="11">
chenzhaole committed
642 643 644 645
        <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>
646 647 648 649

        
         seainf为i按钮 
       <c-col :span="11">
chenzhaole committed
650 651 652 653 654
        <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>
                  
655
       <c-col :span="11">
chenzhaole committed
656 657 658 659 660
        <c-button size="small" type="primary"  @click="onAttpGetref">
            GetRef
        </c-button>
       </c-col>
                                   
661
       <c-col :span="11">
chenzhaole committed
662 663 664 665 666
        <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>
                                   
667
       <c-col :span="11">
chenzhaole committed
668 669 670 671 672 673
        <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>
                  
674
       <c-col :span="11">
chenzhaole committed
675 676 677 678 679 680
        <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>
                  
681
       <c-col :span="11">
chenzhaole committed
682 683 684 685 686
        <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>
                  
687
       <c-col :span="11">
chenzhaole committed
688 689 690 691 692
        <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>
                                   
693 694 695
       <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
696 697 698 699
              </c-select>
        </el-form-item>
       </c-col>
                                   
700
       <c-col :span="11">
chenzhaole committed
701 702 703 704 705 706
        <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>
                                   
707
       <c-col :span="11">
chenzhaole committed
708 709 710 711 712 713
        <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>
                                   
714
       <c-col :span="11">
chenzhaole committed
715 716 717 718 719
        <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>
                                   
720
       <c-col :span="11">
chenzhaole committed
721 722 723 724 725
        <el-form-item label="付款人常驻国家/地区编码" prop="attp.country">
            <c-input  v-model="model.attp.country" maxlength="3"  placeholder="请输入付款人常驻国家/地区编码"></c-input>
        </el-form-item>
       </c-col>
                  
726
       <c-col :span="11">
chenzhaole committed
727 728 729 730 731
        <c-button size="small" type="primary" icon="el-icon-search" @click="onAttpSelbut1">
            ?
        </c-button>
       </c-col>
                  
732 733 734
        <c-col :span="11">
            <span  v-text="model.attp.shktyp"   data-path=".attp.shktyp" > </span>
        </c-col>
chenzhaole committed
735
                  
736
       <c-col :span="11">
chenzhaole committed
737 738 739 740 741 742
        <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>
                                   
743
       <c-col :span="11">
chenzhaole committed
744 745 746 747 748 749
        <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>
                                   
750
       <c-col :span="11">
chenzhaole committed
751 752 753 754 755 756
        <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>
                  
757
       <c-col :span="11">
chenzhaole committed
758 759 760 761 762
        <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>
                  
763
       <c-col :span="11">
chenzhaole committed
764 765 766 767
        <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>
768 769 770
        
        
	<c-col :span="11">
chenzhaole committed
771 772 773
	    <span  v-text="model.attp.opndatlab"   data-path=".attp.opndatlab" > </span>
	</c-col>
                                                    
774
       <c-col :span="11">
chenzhaole committed
775 776 777 778 779
        <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>
                                   
780 781
       <c-col :span="11">
        <el-form-item label="汇款语种" prop="attp.payuil">
chenzhaole committed
782 783 784 785 786
            <c-select v-model="model.attp.payuil" style="width:100%" placeholder="请选择Uil Payment">
              </c-select>
        </el-form-item>
       </c-col>
                                   
787
       <c-col :span="11">
chenzhaole committed
788 789 790 791 792 793
        <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>
                                   
794
       <c-col :span="11">
chenzhaole committed
795 796 797 798 799 800
        <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>
                                   
801
       <c-col :span="11">
chenzhaole committed
802 803 804 805 806 807
        <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>
                  
808
       <c-col :span="11">
chenzhaole committed
809 810 811
	    <c-checkbox v-model="model.cpdgrp.rec.tsnflg">同名划转标志</c-checkbox>
       </c-col>
                  
812
       <c-col :span="11">
chenzhaole committed
813 814 815 816 817
        <el-form-item label="相关参考号" prop="attp.xnggbh">
            <c-input  v-model="model.attp.xnggbh" maxlength="16"  placeholder="请输入相关参考号"></c-input>
        </el-form-item>
       </c-col>
                                   
818
       <c-col :span="11">
chenzhaole committed
819 820 821 822 823
        <el-form-item label="清算编号" prop="attp.sysno">
            <c-input  v-model="model.attp.sysno" maxlength="21"  placeholder="请输入清算编号"></c-input>
        </el-form-item>
       </c-col>
                  
824 825 826
        <c-col :span="11">
            <span  v-text="model.attp.xnglab"   data-path=".attp.xnglab" > </span>
        </c-col>
chenzhaole committed
827
                  
828
       <c-col :span="11">
chenzhaole committed
829 830 831 832 833
        <el-form-item label="收款人常驻国家/地区代码" prop="attp.paycountcode">
            <c-input  v-model="model.attp.paycountcode" maxlength="3"  placeholder="请输入收款人常驻国家/地区代码"></c-input>
        </el-form-item>
       </c-col>
                  
834
       <c-col :span="11">
chenzhaole committed
835 836 837 838 839
        <c-button size="small" type="primary" icon="el-icon-search" @click="onAttpSelbut">
            ?
        </c-button>
       </c-col>
                                                                     
840
       <c-col :span="11">
chenzhaole committed
841 842 843 844 845
        <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>
                  
846
       <c-col :span="11">
chenzhaole committed
847 848 849 850 851
        <el-form-item label="接收行名称" prop="attp.resbchnam">
            <c-input  v-model="model.attp.resbchnam" maxlength="42"  placeholder="请输入接收行名称"></c-input>
        </el-form-item>
       </c-col>
                                                    
852
       <c-col :span="11">
chenzhaole committed
853 854 855 856 857
        <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>
                  
858
       <c-col :span="11">
chenzhaole committed
859 860 861 862 863
        <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>
                                   
864 865 866
        <c-col :span="11">
            <span  v-text="model.attp.sndlab"   data-path=".attp.sndlab" > </span>
        </c-col>
chenzhaole committed
867
                  
868
       <c-col :span="11">
chenzhaole committed
869 870 871 872 873
        <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>
                  
874
       <c-col :span="11">
chenzhaole committed
875 876 877 878 879
        <el-form-item label="发报行名称" prop="attp.sndbchnam">
            <c-input  v-model="model.attp.sndbchnam" maxlength="42"  placeholder="请输入发报行名称"></c-input>
        </el-form-item>
       </c-col>
                                                    
880
       <c-col :span="11">
chenzhaole committed
881 882 883 884 885
        <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>
                  
886
       <c-col :span="11">
chenzhaole committed
887 888 889 890 891
        <c-button size="small" type="primary"  @click="onAttpSerpty">
            查询客户号
        </c-button>
       </c-col>
                  
892
       <c-col :span="11">
chenzhaole committed
893 894 895 896 897
        <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>
                  
898
       <c-col :span="11">
chenzhaole committed
899 900 901 902 903
        <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>
                                   
904
       <c-col :span="11">
chenzhaole committed
905 906 907 908 909
        <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>
                                   
910
       <c-col :span="11">
chenzhaole committed
911 912 913 914 915
        <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>
                  
916
       <c-col :span="11">
chenzhaole committed
917 918 919 920 921
        <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>
                                   
922
       <c-col :span="11">
chenzhaole committed
923 924 925 926 927
        <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>
                  
928
       <c-col :span="11">
chenzhaole committed
929 930 931 932 933
        <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>
                  
934
       <c-col :span="11">
chenzhaole committed
935 936 937 938 939
        <c-button size="small" type="primary"  @click="onOrcpDet">
            Details
        </c-button>
       </c-col>
                                   
940
       <c-col :span="11">
chenzhaole committed
941 942 943 944 945
        <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>
                  
946
       <c-col :span="11">
chenzhaole committed
947 948 949 950 951
        <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>
                  
952
       <c-col :span="11">
chenzhaole committed
953 954 955 956 957
        <c-button size="small" type="primary"  @click="onPyepDet">
            Details
        </c-button>
       </c-col>
                  
958
       <c-col :span="11">
chenzhaole committed
959 960 961 962 963
        <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>
                  
964
       <c-col :span="11">
chenzhaole committed
965 966 967 968 969
        <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>
                  
970
       <c-col :span="11">
chenzhaole committed
971 972 973 974 975
        <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>
                  
976
       <c-col :span="11">
chenzhaole committed
977 978 979 980 981
        <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>
                  
982
       <c-col :span="11">
chenzhaole committed
983 984 985 986 987
        <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>
                  
988
       <c-col :span="11">
chenzhaole committed
989 990 991 992 993
        <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>
                  
994
       <c-col :span="11">
chenzhaole committed
995 996 997 998 999
        <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>
                  
1000
       <c-col :span="11">
chenzhaole committed
1001 1002 1003
        <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>
1004
        </c-col> -->
chenzhaole committed
1005 1006 1007
  </div>
</template>
<script>
1008
import Api from "~/service/Api";
wangren committed
1009
import commonProcess from "~/mixin/commonProcess";
1010 1011
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptato/Event";
chenzhaole committed
1012 1013

export default {
1014 1015 1016 1017
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
    return {
      bustyp1: [
        { label: "01-支付运保费", value: "01" },
        { label: "02-代理进出口", value: "02" },
        { label: "03-与特殊经济区企业资金往来", value: "03" },
        { label: "04-同一企业不同账户资金划转", value: "04" },
        { label: "05-归还国内贷款或转贷款", value: "05" },
        { label: "06-贸易深加工结转业务", value: "06" },
        { label: "07-贸易融资业务", value: "07" },
        { label: "08-其他", value: "08" },
      ],
      swftyp:[
        {label:"FMT100",value:"100"},
        {label:"FMT200",value:"200"}
      ]
    };
1034 1035 1036 1037 1038 1039
  },
  methods: { ...Event },
  created: function () {},
  computed: {
    flag() {
      return this.model.cpdgrp.orc.pts.extkey == "";
chenzhaole committed
1040
    },
1041 1042 1043 1044 1045 1046 1047
    flag1(){
        if(this.model.attp.swftyp == "200"){
            return true;
        }
        else{
            return false;
        }
chenzhaole committed
1048
    }
1049 1050
  },
};
chenzhaole committed
1051 1052 1053
</script>
<style>
</style>