Opnp1.vue 30.6 KB
Newer Older
taojinrui committed
1
<template>
wangna committed
2 3 4 5 6
  <div class="eibs">
    <!-- ===========================左侧================================== -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
        <el-form-item label="业务编号" prop="cpdgrp.rec.ownref">
taojinrui committed
7
          <c-fullbox>
taojinrui committed
8
            <c-input v-model="model.cpdgrp.rec.ownref" disabled></c-input>
taojinrui committed
9
            <template slot="footer">
wangna committed
10 11 12 13 14 15 16 17 18
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                size="small"
                type="primary"
                ><i class="el-icon-info"></i
              ></c-button>
              <c-button style="margin: 0 0" size="small" type="primary" disabled
                >获取</c-button
              >
taojinrui committed
19 20 21 22 23
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

wangna committed
24 25 26
      <c-col :span="24">
        <el-form-item label="清算编号" prop="cpdgrp.rec.sysno">
          <c-input v-model="model.cpdgrp.rec.sysno"></c-input>
taojinrui committed
27 28
        </el-form-item>
      </c-col>
29

wangna committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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
      <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="请选择币种"
              disabled
            >
              <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>

        <c-col :span="11">
          <el-form-item
            style="text-align: left"
            label-width="5px"
            prop="cpdgrp.cbs.max.amt"
          >
            <c-input-currency
              v-model="model.cpdgrp.cbs.max.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.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="cptp.payuil">
            <c-select v-model="model.cptp.payuil" disabled>
              <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">
        <el-form-item label="我行费用负担" prop="cpdgrp.rec.detchgcod">
          <c-select style="width: 100%" v-model="model.cpdgrp.rec.detchgcod">
            <el-option
              v-for="item in codes.detchgcod"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="货物类型" prop="cpdgrp.rec.stagod">
          <c-select style="width: 100%" v-model="model.cpdgrp.rec.stagod">
            <el-option
              v-for="item in stagod"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            ></el-option>
          </c-select>
        </el-form-item>
      </c-col>

      <c-col
        v-show="
          model.cpdgrp.rec.swftyp == '103' ||
          model.cpdgrp.rec.swftyp == '200' ||
          model.cpdgrp.rec.swftyp == '202' ||
          model.cpdgrp.rec.swftyp == '910' ||
          model.cpdgrp.rec.swftyp == 'OTH'
        "
      >
134
        <c-col :span="24">
wangna committed
135 136
          <el-form-item label="汇款行" prop="cpdgrp.ori.pts.ref">
            <c-input v-model="model.cpdgrp.ori.pts.ref" disabled></c-input>
taojinrui committed
137 138
          </el-form-item>
        </c-col>
wangna committed
139

140
        <c-col :span="24">
wangna committed
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
          <el-form-item label="" prop="">
            <c-fullbox>
              <c-input v-model="model.cpdgrp.ori.pts.extkey" disabled></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                  size="small"
                  type="primary"
                  ><i class="el-icon-info"></i
                ></c-button>
                <c-button
                  style="margin: 0 0"
                  size="small"
                  type="primary"
                  disabled
                  >详情</c-button
                >
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>
162

wangna committed
163 164 165 166 167 168 169 170
        <c-col :span="24">
          <el-form-item label="" prop="cpdgrp.ori.pts.adrblk">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.ori.pts.adrblk"
              disabled
            ></c-input>
          </el-form-item>
171 172 173
        </c-col>

        <c-col :span="24">
wangna committed
174 175 176 177 178
          <el-form-item label="汇款人" prop="cpdgrp.orc.pts.ref">
            <c-input v-model="model.cpdgrp.orc.pts.ref" disabled></c-input>
          </el-form-item>
        </c-col>
      </c-col>
179

wangna committed
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
      <c-col
        v-show="
          model.cpdgrp.rec.swftyp == 'BEP' ||
          model.cpdgrp.rec.swftyp == 'BEQ' ||
          model.cpdgrp.rec.swftyp == 'BES' ||
          model.cpdgrp.rec.swftyp == 'CIU' ||
          model.cpdgrp.rec.swftyp == 'CIV' ||
          model.cpdgrp.rec.swftyp == 'CIW' ||
          model.cpdgrp.rec.swftyp == 'CMT' ||
          model.cpdgrp.rec.swftyp == 'CMY' ||
          model.cpdgrp.rec.swftyp == 'CMX' ||
          model.cpdgrp.rec.swftyp == 'FMS' ||
          model.cpdgrp.rec.swftyp == 'HVP' ||
          model.cpdgrp.rec.swftyp == 'HVR' ||
          model.cpdgrp.rec.swftyp == 'HVQ'
        "
      >
        <c-col :span="24">
          <el-form-item label="汇款人名称" prop="cptgrp.cptp.orcnam">
            <c-input v-model="model.cptp.orcnam" type="textarea"></c-input>
          </el-form-item>
201
        </c-col>
wangna committed
202

203
        <c-col :span="24">
wangna committed
204 205 206 207 208 209 210 211 212
          <el-form-item label="汇款人地址" prop="cptp.orcadr">
            <c-input type="textarea" v-model="model.cptp.orcadr"></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="收款人名称" prop="cptp.pyenam">
            <c-input type="textarea" v-model="model.cptp.pyenam"></c-input>
          </el-form-item>
213
        </c-col>
wangna committed
214

215
        <c-col :span="24">
wangna committed
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
          <el-form-item label="收款人地址" prop="cptp.pyeadr">
            <c-input type="textarea" v-model="model.cptp.pyeadr"></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <el-form-item label="账号" prop="">
          <c-input v-model="model.cpdgrp.rec.orcact"></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="" prop="">
          <c-fullbox>
            <c-input v-model="model.cpdgrp.orc.pts.extkey"></c-input>
            <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                size="small"
                type="primary"
                ><i class="el-icon-info"></i
              ></c-button>
              <c-button style="margin: 0 0" size="small" type="primary"
                >Temp.</c-button
              >
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="" prop="cpdgrp.orc.pts.adrblk">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.orc.pts.adrblk"
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>

    <!-- ===========================右侧================================== -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
        <el-form-item label="简略信息" prop="cpdgrp.rec.nam">
          <c-input
            v-model="model.cpdgrp.rec.nam"
            maxlength="40"
            placeholder="请输入简略信息"
            disabled
          ></c-input>
        </el-form-item>
      </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>
taojinrui committed
304 305 306 307
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>
taojinrui committed
308

wangna committed
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
      <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>
327

wangna committed
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
        <c-col :span="12">
          <el-form-item label="收支类型" prop="cpdgrp.rec.sztyp">
            <c-select
              v-model="model.cpdgrp.rec.sztyp"
              style="width: 100%"
              placeholder="请选择"
            >
              <el-option
                v-for="item in codes.sztyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
taojinrui committed
344
        </c-col>
wangna committed
345
      </c-col>
taojinrui committed
346

wangna committed
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
      <c-col :span="24">
        <el-form-item label="Uetr" prop="cptp.uetr">
          <c-fullbox>
            <c-input v-model="model.cptp.uetr" disabled></c-input>
            <template slot="footer">
              <c-button type="primary">获取</c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="解付日期" prop="cpdgrp.rec.paydat">
            <c-date-picker
              type="date"
              v-model="model.cpdgrp.rec.paydat"
              style="width: 100%"
              placeholder="请选择起息日期"
            >
            </c-date-picker>
          </el-form-item>
369
        </c-col>
wangna committed
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

        <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="请选择"
            ></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="cpdgrp.rec.swftyp">
            <c-select
              v-model="model.cpdgrp.rec.swftyp"
              style="width: 100%"
              placeholder="请选择报文类型"
            >
              <el-option
                v-for="item in swftyp1"
                :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="cpdgrp.rec.feecur">
            <c-select
              v-model="model.cpdgrp.rec.feecur"
              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>

        <c-col :span="10">
          <el-form-item
            style="text-align: left"
            label-width="5px"
            prop="cpdgrp.rec.feeamt"
          >
            <c-input-currency
              v-model="model.cpdgrp.rec.feeamt"
              style="text-align: left; width: 100%"
              placeholder="请输入"
              @keyup.enter.native="
                defaultFunction('cpdgrp.rec.feeamt', model.cpdgrp.rec.feeamt)
              "
            ></c-input-currency>
          </el-form-item>
        </c-col>

        <c-col :span="4">
          <c-checkbox v-model="model.cpdgrp.rec.tsnflg">同名划转</c-checkbox>
        </c-col>
      </c-col>

      <c-col v-show="model.cpdgrp.rec.swftyp == '103'">
463
        <c-col :span="24">
wangna committed
464
          <el-form-item label="发报行" prop="">
465
            <c-fullbox>
wangna committed
466
              <c-input v-model="model.cpdgrp.snd.pts.extkey"></c-input>
467
              <template slot="footer">
wangna committed
468 469 470 471 472 473 474 475 476
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                  size="small"
                  type="primary"
                  ><i class="el-icon-info"></i
                ></c-button>
                <c-button style="margin: 0 0" size="small" type="primary"
                  >详情</c-button
                >
477 478
              </template>
            </c-fullbox>
taojinrui committed
479 480
          </el-form-item>
        </c-col>
wangna committed
481

482
        <c-col :span="24">
wangna committed
483 484 485 486
          <el-form-item label="" prop="cpdgrp.snd.pts.nam">
            <c-input v-model="model.cpdgrp.snd.pts.nam" disabled></c-input>
          </el-form-item>
        </c-col>
487

wangna committed
488 489 490 491
        <c-col :span="24">
          <el-form-item label="指令代码" prop="">
            <c-input v-model="model.cpdgrp.rec.f23e"></c-input>
          </el-form-item>
taojinrui committed
492
        </c-col>
wangna committed
493

494
        <c-col :span="24">
wangna committed
495 496 497 498 499 500 501 502 503 504 505 506 507
          <c-col :span="13">
            <el-form-item label="原始金额" prop="cpdgrp.cbs.curf33b">
              <c-select
                v-model="model.cpdgrp.cbs.curf33b"
                style="width: 100%"
                placeholder="请选择"
              >
                <el-option
                  v-for="item in codes.curtxt1"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
508 509 510 511
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
taojinrui committed
512

wangna committed
513 514 515 516 517 518 519 520 521 522 523 524 525 526
          <c-col :span="11">
            <el-form-item
              style="text-align: left"
              label-width="5px"
              prop="cpdgrp.cbs.atmf33b"
            >
              <c-input-currency
                v-model="model.cpdgrp.cbs.amtf33b"
                style="text-align: left; width: 100%"
                placeholder="请输入"
                @keyup.enter.native="
                  defaultFunction('cpdgrp.cbs.feeamt', model.cpdgrp.cbs.feeamt)
                "
              ></c-input-currency>
527 528
            </el-form-item>
          </c-col>
taojinrui committed
529
        </c-col>
wangna committed
530

531
        <c-col :span="24">
wangna committed
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
          <el-form-item label="汇率" prop="">
            <c-input
              v-model="model.cpdgrp.rec.f36"
              placeholder="请输入汇率"
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <c-col :span="13">
            <el-form-item label="发报行付费金额" prop="cpdgrp.cbs.curf33b">
              <c-select
                v-model="model.cpdgrp.cbs.curf33b"
                style="width: 100%"
                placeholder="请选择"
              >
                <el-option
                  v-for="item in codes.curtxt1"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
554 555 556 557
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
taojinrui committed
558

wangna committed
559 560 561 562 563 564 565 566 567 568 569
          <c-col :span="11">
            <el-form-item
              style="text-align: left"
              label-width="5px"
              prop="cpdgrp.cbs.atmf33b"
            >
              <c-input-currency
                v-model="model.cpdgrp.cbs.amtf33b"
                style="text-align: left; width: 100%"
                placeholder="请输入"
                @keyup.enter.native="
570
                  defaultFunction('cpdgrp.cbs.feeamt', model.cpdgrp.cbs.feeamt)
wangna committed
571 572
                "
              ></c-input-currency>
573 574
            </el-form-item>
          </c-col>
wangna committed
575
        </c-col>
576

wangna committed
577 578 579 580
        <c-col :span="24">
          <el-form-item label="银行操作码" prop="cpdgrp.rec.f23b">
            <c-input v-model="model.cpdgrp.rec.f23b"></c-input>
          </el-form-item>
taojinrui committed
581
        </c-col>
582

wangna committed
583 584 585 586 587
        <c-col :span="24">
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
            <c-input v-model="model.cpdgrp.rec.pyeact"></c-input>
          </el-form-item>
        </c-col>
588

wangna committed
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
        <c-col :span="24">
          <el-form-item label="收款人" prop="">
            <c-fullbox>
              <c-input v-model="model.cpdgrp.pye.pts.extkey" disabled></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                  size="small"
                  type="primary"
                  ><i class="el-icon-info"></i
                ></c-button>
                <c-button style="margin: 0 0" size="small" type="primary"
                  >详情</c-button
                >
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="" prop="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.pye.pts.adrblk"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col
        v-show="
621 622 623 624
          model.cpdgrp.rec.swftyp == '200' ||
          model.cpdgrp.rec.swftyp == '202' ||
          model.cpdgrp.rec.swftyp == '910' ||
          model.cpdgrp.rec.swftyp == 'OTH'
wangna committed
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
        "
      >
        <c-col :span="24">
          <el-form-item label="发报行" prop="cpdgrp.snd.pts.extkey">
            <c-fullbox>
              <c-input v-model="model.cpdgrp.snd.pts.extkey"></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                  size="small"
                  type="primary"
                  ><i class="el-icon-info"></i
                ></c-button>
                <c-button style="margin: 0 0" size="small" type="primary"
                  >详情</c-button
                >
              </template>
            </c-fullbox>
          </el-form-item>
taojinrui committed
644 645
        </c-col>

wangna committed
646 647 648 649
        <c-col :span="24">
          <el-form-item label="" prop="cpdgrp.snd.pts.adrblk">
            <c-input v-model="model.cpdgrp.snd.pts.adrblk" disabled></c-input>
          </el-form-item>
taojinrui committed
650 651
        </c-col>

652
        <c-col :span="24">
wangna committed
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
          <el-form-item
            label="付款详情"
            prop="cpdgrp.blk.contag70"
            v-show="
              !(
                model.cpdgrp.rec.swftyp == '200' ||
                model.cpdgrp.rec.swftyp == '202'
              )
            "
          >
            <c-input
              type="textarea"
              v-model="model.cpdgrp.blk.contag70"
              placeholder="请输入付款详情"
            ></c-input>
668
          </el-form-item>
taojinrui committed
669
        </c-col>
wangna committed
670 671 672 673 674 675 676 677 678 679 680 681 682

        <c-col :span="24">
          <el-form-item label="收款人" prop="cpdgrp.pye.pts.ref">
            <c-input v-model="model.cpdgrp.pye.pts.ref"></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
            <c-input v-model="model.cpdgrp.rec.pyeact"></c-input>
          </el-form-item>
        </c-col>

683 684 685
        <c-col :span="24">
          <el-form-item label="" prop="">
            <c-fullbox>
wangna committed
686
              <c-input v-model="model.cpdgrp.pye.pts.extkey" disabled></c-input>
687
              <template slot="footer">
wangna committed
688 689 690 691 692 693 694 695 696
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                  size="small"
                  type="primary"
                  ><i class="el-icon-info"></i
                ></c-button>
                <c-button style="margin: 0 0" size="small" type="primary"
                  >详情</c-button
                >
697 698
              </template>
            </c-fullbox>
taojinrui committed
699 700
          </el-form-item>
        </c-col>
wangna committed
701

702
        <c-col :span="24">
wangna committed
703 704 705 706 707 708
          <el-form-item label="" prop="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.pye.pts.adrblk"
              disabled
            ></c-input>
taojinrui committed
709 710 711
          </el-form-item>
        </c-col>
      </c-col>
wangna committed
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730

      <c-col
        v-show="
          model.cpdgrp.rec.swftyp == 'BEP' ||
          model.cpdgrp.rec.swftyp == 'BEQ' ||
          model.cpdgrp.rec.swftyp == 'BES' ||
          model.cpdgrp.rec.swftyp == 'CMT' ||
          model.cpdgrp.rec.swftyp == 'CMY' ||
          model.cpdgrp.rec.swftyp == 'CMX' ||
          model.cpdgrp.rec.swftyp == 'FMS' ||
          model.cpdgrp.rec.swftyp == 'HVP' ||
          model.cpdgrp.rec.swftyp == 'HVR' ||
          model.cpdgrp.rec.swftyp == 'HVQ'
        "
      >
        <c-col :span="24">
          <el-form-item label="接收行名称" prop="">
            <c-input v-model="model.cptp.resbchnam"></c-input>
          </el-form-item>
taojinrui committed
731 732
        </c-col>

wangna committed
733 734 735 736
        <c-col :span="24">
          <c-col :span="20">
            <el-form-item label="接收行名称" prop="cptp.resbch">
              <c-input v-model="model.cptp.resbch"></c-input>
737 738
            </el-form-item>
          </c-col>
wangna committed
739 740
          <c-col :span="4">
            <c-checkbox v-model="model.cptp.flg">电汇凭证</c-checkbox>
741
          </c-col>
wangna committed
742
        </c-col>
743

wangna committed
744 745 746 747 748 749 750 751 752
        <c-col :span="24">
          <el-form-item label="业务种类" prop="cptp.bustyp">
            <c-select
              v-model="model.cptp.bustyp"
              style="width: 100%"
              disabled
            ></c-select>
          </el-form-item>
        </c-col>
753

wangna committed
754 755 756 757
        <c-col :span="24">
          <c-col :span="17">
            <el-form-item label="收款人开户行行号" prop="cptp.pyebchkey">
              <c-input v-model="model.cptp.pyebchkey"></c-input>
758 759
            </el-form-item>
          </c-col>
wangna committed
760 761 762 763 764 765

          <c-col :span="7">
            <el-form-item label="二代模式">
              <c-button style="margin: 0 0" size="small" type="primary"
                >获取</c-button
              >
766 767
            </el-form-item>
          </c-col>
taojinrui committed
768
        </c-col>
769

wangna committed
770 771 772 773
        <c-col :span="24">
          <c-col :span="12">
            <el-form-item label="" prop="cptp.pyebchnam">
              <c-input v-model="model.cptp.pyebchnam"></c-input>
774 775
            </el-form-item>
          </c-col>
wangna committed
776 777 778
          <c-col :span="12">
            <el-form-item style="text-align: left" label-width="5px">
              <c-input v-model="model.cptp.secmod"></c-input>
779 780
            </el-form-item>
          </c-col>
wangna committed
781
        </c-col>
782

wangna committed
783 784 785 786 787
        <c-col :span="24">
          <el-form-item label="附言" prop="">
            <c-input v-model="model.cptp.commet"></c-input>
          </el-form-item>
        </c-col>
788

wangna committed
789 790 791 792 793
        <c-col :span="24">
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
            <c-input v-model="model.cpdgrp.rec.pyeact"></c-input>
          </el-form-item>
        </c-col>
794

wangna committed
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
        <c-col :span="24">
          <el-form-item label="收款人" prop="">
            <c-fullbox>
              <c-input v-model="model.cpdgrp.pye.pts.extkey"></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                  size="small"
                  type="primary"
                  ><i class="el-icon-info"></i
                ></c-button>
                <c-button style="margin: 0 0" size="small" type="primary"
                  >详情</c-button
                >
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>
813

wangna committed
814 815 816 817 818 819 820 821 822
        <c-col :span="24">
          <el-form-item label="" prop="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.pye.pts.adrblk"
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
823

wangna committed
824 825 826 827 828 829 830 831 832 833 834 835
      <c-col
        v-show="
          model.cpdgrp.rec.swftyp == 'CIU' ||
          model.cpdgrp.rec.swftyp == 'CIV' ||
          model.cpdgrp.rec.swftyp == 'CIW'
        "
      >
        <c-col :span="24">
          <el-form-item class="checkbox-left">
            <c-checkbox v-model="model.cptp.flg">电汇凭证</c-checkbox>
          </el-form-item>
        </c-col>
836

wangna committed
837 838 839 840
        <c-col :span="24">
          <el-form-item label="收款直参行号" prop="cptp.reconebch">
            <c-input v-model="model.cptp.reconebch"></c-input>
          </el-form-item>
841 842
        </c-col>

wangna committed
843 844 845 846 847 848 849 850
        <c-col :span="24">
          <el-form-item label="收款直参名称" prop="cptp.reconebchnam">
            <c-input
              type="textarea"
              v-model="model.cptp.reconebchnam"
            ></c-input>
          </el-form-item>
        </c-col>
851

wangna committed
852 853 854 855 856 857 858 859 860 861
        <c-col :span="24">
          <el-form-item label="业务种类" prop="cptp.bustyp">
            <c-select
              v-model="model.cptp.bustyp"
              style="width: 100%"
              :code="bustyp1"
            >
            </c-select>
          </el-form-item>
        </c-col>
862

wangna committed
863 864 865 866 867
        <c-col :span="24">
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
            <c-input v-model="model.cpdgrp.rec.pyeact"></c-input>
          </el-form-item>
        </c-col>
868

wangna committed
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
        <c-col :span="24">
          <el-form-item label="收款人" prop="">
            <c-fullbox>
              <c-input v-model="model.cpdgrp.pye.pts.extkey"></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px; height: 32px"
                  size="small"
                  type="primary"
                  ><i class="el-icon-info"></i
                ></c-button>
                <c-button style="margin: 0 0" size="small" type="primary"
                  >详情</c-button
                >
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="" prop="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.pye.pts.adrblk"
            ></c-input>
          </el-form-item>
895
        </c-col>
taojinrui committed
896
      </c-col>
taojinrui committed
897 898 899 900 901 902 903 904 905 906 907 908 909 910
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptrep/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
911 912
    return {
      stagod: [
taojinrui committed
913 914 915 916 917 918
        { label: "金(含金首饰)", value: "001" },
        { label: "银(含银首饰)", value: "002" },
        { label: "铜(含电解铜、铜制品以及铜金矿)", value: "003" },
        { label: "铝(含电解铝、铝矾土以及铝制品)", value: "004" },
        { label: "锌(含电解锌、锌精矿)", value: "005" },
        { label: "铁砂矿(含精矿)", value: "006" },
919 920 921 922 923 924 925 926
        { label: "其他金属", value: "007" },
        { label: "大豆", value: "008" },
        { label: "玉米", value: "009" },
        { label: "原油", value: "010" },
        { label: "食用油", value: "011" },
        { label: "煤", value: "012" },
        { label: "其他", value: "099" },
      ],
927

928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
      swftyp1: [
        { label: "MT103", value: "103" },
        { label: "MT202", value: "200" },
        { label: "MT202 COV", value: "202" },
        { label: "MT910", value: "910" },
        { label: "beps121", value: "BEP" },
        { label: "beps122", value: "BEQ" },
        { label: "beps125", value: "BES" },
        { label: "cips111", value: "CIU" },
        { label: "cips112", value: "CIV" },
        { label: "cips113", value: "CIW" },
        { label: "CMT100", value: "CMT" },
        { label: "PKG005", value: "CMY" },
        { label: "PKG001", value: "CMX" },
        { label: "FMT100", value: "FMS" },
        { label: "hvps111", value: "HVP" },
        { label: "hvps115", value: "HVR" },
        { label: "hvps112", value: "HVQ" },
        { label: "Other", value: "OTH" },
      ],
taojinrui committed
948

wangna committed
949
      bustyp1: [
950 951 952 953 954 955 956 957 958 959 960
        { label: "GODX-货物贸易", value: "GODX" },
        { label: "STRX-服务贸易", value: "STRX" },
        { label: "CTFX-资本项下", value: "CTFX" },
        { label: "FTFX-金融机构头寸调拨", value: "FTFX" },
        { label: "BDES-债券还本付息", value: "BDES" },
        { label: "BPRR-债券还本金", value: "BPRR" },
        { label: "BINP-债券付息", value: "BINP" },
        { label: "BISF-债券发行手续费", value: "BISF" },
        { label: "BCAF-债券兑付手续费", value: "BCAF" },
        { label: "CBCF-付息式债券兑付手续费", value: "CBCF" },
        { label: "OTFX-其他", value: "OTFX" },
wangna committed
961
      ],
962
    };
taojinrui committed
963 964
  },
  methods: { ...Event },
wangna committed
965
  created: function () {},
taojinrui committed
966 967 968 969
};
</script>
<style>
</style>