Opnp1.vue 70 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
liushikai committed
3
    <!--=================顶部=================  -->
潘际乾 committed
4 5
    <c-col :span="24">
      <c-col :span="8">
wangguangchao committed
6
        <el-form-item label="业务编号" prop="cptp.recget.sdamod.dadsnd">
liushikai committed
7 8 9
          <c-input
            v-model="model.cptp.recget.sdamod.dadsnd"
            placeholder=""
liushikai committed
10
            disabled
liushikai committed
11 12
          ></c-input>
        </el-form-item>
潘际乾 committed
13 14
      </c-col>
      <c-col :span="4">
liushikai committed
15
        <el-form-item label="" label-width="15px">
liushikai committed
16 17 18
          <c-button
            size="small"
            type="primary"
19
            @click="onSeainf"
liushikai committed
20 21
            icon="el-icon-search"
          >
liushikai committed
22
          </c-button>
23 24 25 26 27 28 29
          <c-button
            style="margin:0 0"
            size="small"
            type="primary"          
            :disabled="this.flag"
            @click="onCptpGetref">
            获取
liushikai committed
30 31
          </c-button>
        </el-form-item>
潘际乾 committed
32 33
      </c-col>
      <c-col :span="11">
34
        <el-form-item label="Name" prop="cpdgrp.rec.nam">
liushikai committed
35
          <c-input
潘际乾 committed
36
            v-model="model.cpdgrp.rec.nam"
liushikai committed
37 38
            maxlength="16"
            placeholder=""
liushikai committed
39
            disabled
liushikai committed
40 41
          ></c-input>
        </el-form-item>
潘际乾 committed
42 43 44
      </c-col>
    </c-col>
    <!-- <c-col :span="11" :offset="1">
liushikai committed
45 46 47 48 49 50 51
      <el-form-item label="Our Reference">
        <c-input
          v-model="model.cpdgrp.rec.ownref"
          maxlength="16"
          placeholder="请输入Our Reference"
        ></c-input>
      </el-form-item>
潘际乾 committed
52
    </c-col> -->
liushikai committed
53

潘际乾 committed
54
    <!-- <c-col :span="9">
liushikai committed
55 56 57 58 59 60
      <el-form-item label="">
        <c-input
          v-model="model.cptp.recget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
潘际乾 committed
61
    </c-col>
liushikai committed
62

潘际乾 committed
63
    <c-col :span="11">
liushikai committed
64 65 66 67 68 69 70
      <el-form-item label="Externally Displayed Name to Identify the Contract">
        <c-input
          v-model="model.cpdgrp.rec.nam"
          maxlength="40"
          placeholder="请输入Externally Displayed Name to Identify the Contract"
        ></c-input>
      </el-form-item>
潘际乾 committed
71
    </c-col> -->
liushikai committed
72

潘际乾 committed
73
    <c-col>
liushikai committed
74
      <!-- ===================中部--左==================== -->
75
      <c-col :span="11" style="margin-top: 10px">
潘际乾 committed
76
        <c-col :span="24">
wangguangchao committed
77
          <el-form-item label="清算编号" prop="cpdgrp.rec.sysno">
liushikai committed
78 79 80 81 82 83 84
            <c-input
              v-model="model.cpdgrp.rec.sysno"
              style="width: 80%"
              maxlength="21"
              placeholder="请输入清算编号"
            ></c-input>
          </el-form-item>
潘际乾 committed
85
        </c-col>
liushikai committed
86

潘际乾 committed
87 88
        <c-col :span="24">
          <c-col :span="14">
89
            <el-form-item label="汇款金额" prop="cpdgrp.cbs.nom1.cur">
liushikai committed
90
              <c-select
91
                v-model="model.cpdgrp.cbs.nom1.cur"
liushikai committed
92 93
                style="width: 100%"
                placeholder=""
liushikai committed
94
                @change="onNom1CurChange"
liushikai committed
95 96
              >
                <el-option
liushikai committed
97
                  v-for="item in codes.cur"
liushikai committed
98 99 100 101
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
102
              </c-select>
liushikai committed
103
            </el-form-item>
潘际乾 committed
104 105
          </c-col>
          <c-col :span="10">
106 107 108 109 110
            <el-form-item
              label=""
              label-width="15px"
              prop="cpdgrp.cbs.nom1.amt"
            >
liushikai committed
111
              <c-input
112
                v-model="model.cpdgrp.cbs.nom1.amt"
liushikai committed
113 114 115
                placeholder="请输入汇款金额"
              ></c-input>
            </el-form-item>
潘际乾 committed
116 117
          </c-col>
        </c-col>
liushikai committed
118

潘际乾 committed
119 120
        <c-col :span="24">
          <c-col :span="12">
wangguangchao committed
121
            <el-form-item label="所属行" prop="cpdgrp.rec.othbch">
liushikai committed
122 123 124 125 126 127
              <c-input
                v-model="model.cpdgrp.rec.othbch"
                maxlength="8"
                placeholder=""
              ></c-input>
            </el-form-item>
潘际乾 committed
128 129
          </c-col>
          <c-col :span="10">
130
            <el-form-item label="汇款语种" label-width="100px">
131 132
              <c-select
                v-model="model.cptp.payuil"
133
                style="width: 95%"
134
                placeholder="请选择汇款语种"
liushikai committed
135
                @change="onPayuilChange"
136
              >
liushikai committed
137
                <el-option
liushikai committed
138
                  v-for="item in codes.payuil"
liushikai committed
139 140 141 142
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
143
              </c-select>
liushikai committed
144
            </el-form-item>
潘际乾 committed
145 146
          </c-col>
        </c-col>
liushikai committed
147

潘际乾 committed
148 149
        <c-col :span="24">
          <c-col :span="12">
150
            <el-form-item label="是否需要核验" prop="cpdgrp.rec.ischktyp">
liushikai committed
151 152 153 154 155
              <c-select
                v-model="model.cpdgrp.rec.ischktyp"
                style="width: 100%"
                placeholder=""
              >
156
                <el-option
liushikai committed
157
                  v-for="item in codes.ischktyp"
liushikai committed
158 159 160 161
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
162
              </c-select>
liushikai committed
163
            </el-form-item>
潘际乾 committed
164
          </c-col>
liushikai committed
165

潘际乾 committed
166
          <c-col :span="11" :offset="1">
167 168 169 170 171
            <el-form-item
              label="预计核验日期"
              label-width="120px"
              prop="cpdgrp.rec.paydat"
            >
liushikai committed
172 173 174
              <c-date-picker
                type="date"
                v-model="model.cpdgrp.rec.paydat"
175
                value-format="yyyy-MM-dd"
liushikai committed
176 177
                style="width: 100%"
                placeholder=""
liushikai committed
178
                disabled
liushikai committed
179 180
              ></c-date-picker>
            </el-form-item>
潘际乾 committed
181 182
          </c-col>
        </c-col>
liushikai committed
183

潘际乾 committed
184
        <c-col :span="19">
185 186 187 188 189 190
          <el-form-item label="我行费用负担">
            <c-select
              v-model="model.cpdgrp.rec.detchgcod"
              style="width: 100%"
              placeholder=""
            >
liushikai committed
191
              <el-option
192 193 194 195 196
                v-for="item in codes.detchgcod"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
liushikai committed
197 198
            </c-select>
          </el-form-item>
潘际乾 committed
199
        </c-col>
liushikai committed
200

潘际乾 committed
201
        <c-col :span="24">
liushikai committed
202
          <el-form-item label="货物类型">
203 204 205 206 207
            <c-select
              v-model="model.cpdgrp.rec.stagod"
              style="width: 100%"
              placeholder="请选择货物类型"
            >
liushikai committed
208
              <el-option
209 210 211 212 213
                v-for="item in codes.godcod"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
liushikai committed
214 215
            </c-select>
          </el-form-item>
潘际乾 committed
216 217
        </c-col>
      </c-col>
liushikai committed
218 219

      <!-- ===================中部--右==================== -->
220
      <c-col :span="11" :offset="1" style="margin-top: 10px">
潘际乾 committed
221 222
        <c-col :span="24">
          <c-col :span="13">
wangguangchao committed
223
            <el-form-item label="汇款性质" prop="cpdgrp.rec.trntyp">
liushikai committed
224 225 226 227 228
              <c-select
                v-model="model.cpdgrp.rec.trntyp"
                style="width: 100%"
                placeholder="请选择汇款性质"
              >
liushikai committed
229
                <el-option
230
                  v-for="item in trntyp"
liushikai committed
231 232 233 234
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
235
              </c-select>
liushikai committed
236
            </el-form-item>
潘际乾 committed
237
          </c-col>
liushikai committed
238

潘际乾 committed
239
          <c-col :span="10">
240 241 242 243 244
            <el-form-item
              label="汇款方式"
              label-width="120px"
              prop="cpdgrp.rec.paytype"
            >
liushikai committed
245 246 247 248 249
              <c-select
                v-model="model.cpdgrp.rec.paytype"
                style="width: 100%"
                placeholder="请选择汇款方式"
              >
250
                <el-option
liushikai committed
251
                  v-for="item in codes.paytype"
liushikai committed
252 253 254 255 256 257
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
            </el-form-item>
潘际乾 committed
258 259
          </c-col>
        </c-col>
liushikai committed
260

潘际乾 committed
261 262
        <c-col :span="24">
          <c-col :span="13">
wangguangchao committed
263
            <el-form-item label="收款对象" prop="cpdgrp.rec.gors">
liushikai committed
264 265 266 267 268
              <c-select
                v-model="model.cpdgrp.rec.gors"
                style="width: 100%"
                placeholder="请选择收款对象"
              >
269
                <el-option
liushikai committed
270
                  v-for="item in codes.gors"
liushikai committed
271 272 273 274
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
275
              </c-select>
liushikai committed
276
            </el-form-item>
潘际乾 committed
277
          </c-col>
liushikai committed
278

潘际乾 committed
279
          <c-col :span="10">
280 281 282 283 284
            <el-form-item
              label="收支类型"
              label-width="120px"
              prop="cpdgrp.rec.sztyp"
            >
liushikai committed
285 286 287 288 289
              <c-select
                v-model="model.cpdgrp.rec.sztyp"
                style="width: 100%"
                placeholder="请选择收支类型"
              >
290
                <el-option
liushikai committed
291
                  v-for="item in codes.sztyp"
liushikai committed
292 293 294 295 296 297
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
            </el-form-item>
潘际乾 committed
298 299
          </c-col>
        </c-col>
liushikai committed
300

潘际乾 committed
301
        <c-col :span="24">
302
          <el-form-item label="" v-if="true"></el-form-item>
潘际乾 committed
303 304
        </c-col>
        <c-col :span="24">
305
          <el-form-item label="" v-if="true"></el-form-item>
潘际乾 committed
306
        </c-col>
307

潘际乾 committed
308 309
        <c-col :span="24">
          <c-col :span="13">
wangguangchao committed
310
            <el-form-item label="客户类型" prop="cpdgrp.rec.clityp">
liushikai committed
311 312 313 314 315
              <c-select
                v-model="model.cpdgrp.rec.clityp"
                style="width: 100%"
                placeholder="请选择客户类型"
              >
316
                <el-option
liushikai committed
317
                  v-for="item in codes.clityp"
liushikai committed
318 319 320 321
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
322
              </c-select>
liushikai committed
323
            </el-form-item>
潘际乾 committed
324
          </c-col>
liushikai committed
325

潘际乾 committed
326
          <c-col :span="10">
327 328 329 330 331 332 333 334 335
            <el-form-item
              label="报文类型"
              label-width="120px"
              prop="cpdgrp.rec.swftyp"
            >
              <c-select
                style="width: 100%"
                placeholder=""
                v-model="model.cpdgrp.rec.swftyp"
336
                :disabled="model.cptp.liqtyp != 'C' && model.cptp.liqtyp != 'S' && model.cptp.liqtyp != ''"
337 338 339 340 341 342 343
              >
                <el-option
                  v-for="item in codes.swftyp"
                  :label="item.label"
                  :value="item.value"
                  :key="item.value"
                ></el-option>
潘际乾 committed
344
              </c-select>
liushikai committed
345
            </el-form-item>
潘际乾 committed
346 347
          </c-col>
        </c-col>
liushikai committed
348

潘际乾 committed
349 350
        <c-col :span="24">
          <c-col :span="13">
351 352 353 354
            <el-form-item
              label="收款人常驻国家/地区代码"
              prop="cptp.payeecountcode"
            >
liushikai committed
355 356 357 358
              <c-input
                v-model="model.cptp.payeecountcode"
                maxlength="3"
                placeholder="请输入收款人常驻国家/地区代码"
liushikai committed
359 360 361
                @keyup.enter.native="
                  showGridPromptDialog('cptp.payeecountcode')
                "
liushikai committed
362 363
              ></c-input>
            </el-form-item>
潘际乾 committed
364 365
          </c-col>
          <c-col :span="2" :offset="1">
liushikai committed
366 367 368
            <c-button size="small" type="primary" @click="onCptpGetinf">
              ?
            </c-button>
潘际乾 committed
369 370
          </c-col>
        </c-col>
371

潘际乾 committed
372 373
        <c-col :span="24">
          <c-col :span="14">
374 375 376 377 378 379 380 381
            <el-form-item
              label="清算模式"
              v-if="model.cpdgrp.cbs.nom1.cur === 'CNY'"
            >
              <c-select
                v-model="model.cptp.liqtyp"
                style="width: 100%"
                placeholder="请选择清算模式"
liushikai committed
382
                :disabled="model.cpdgrp.cbs.nom1.amt === '0.000'"
383 384
              >
                <el-option
wangguangchao committed
385 386 387 388 389
                  v-for="item in liqtypOptions"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
390 391 392 393 394 395
              </c-select>
            </el-form-item>
            <el-form-item
              label=""
              v-if="!(model.cpdgrp.cbs.nom1.cur === 'CNY')"
            ></el-form-item>
潘际乾 committed
396
          </c-col>
397

潘际乾 committed
398
          <c-col :span="4" :offset="4">
399
            <c-checkbox v-model="model.cpdgrp.rec.tsnflg">同名划转</c-checkbox>
潘际乾 committed
400 401 402 403
          </c-col>
        </c-col>
      </c-col>
    </c-col>
liushikai committed
404

潘际乾 committed
405
    <c-col
406 407 408 409
      :span="24"
      v-if="model.cptp.liqtyp === '' || model.cpdgrp.cbs.nom1.amt === '0.000'"
    >
      <!-- ================底部--左================= -->
410
      <c-col :span="11" style="margin-top: 10px">
潘际乾 committed
411
        <c-col :span="24">
412 413 414 415 416 417 418 419 420 421 422
          <el-form-item
            label="Ordering institution (52a)"
            prop="cpdgrp.ori.pts.ref"
          >
            <c-input
              v-model="model.cpdgrp.ori.pts.ref"
              style="width: 90%"
              maxlength="16"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
423
        </c-col>
424

潘际乾 committed
425 426
        <c-col :span="24">
          <c-col :span="17">
427
            <el-form-item label="">
428
              <c-input placeholder="" ></c-input>
429
            </el-form-item>
潘际乾 committed
430 431
          </c-col>
          <c-col :span="7">
432
            <el-form-item label="" label-width="15px">
liushikai committed
433 434 435 436 437 438
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
439 440
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
441
                详情
442 443
              </c-button>
            </el-form-item>
潘际乾 committed
444 445
          </c-col>
        </c-col>
liushikai committed
446

447
        <c-col :span="18">
liushikai committed
448
          <el-form-item label="">
449 450
            <c-input
              type="textarea"
451 452 453 454 455
              :rows="4"
              maxlength="140"
              v-model="model.cpdgrp.ori.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
456
            ></c-input>
liushikai committed
457
          </el-form-item>
潘际乾 committed
458
        </c-col>
459

潘际乾 committed
460
        <c-col :span="24">
461 462 463 464 465 466 467
          <el-form-item label="汇款人" prop="cpdgrp.orc.pts.ref">
            <c-input
              v-model="model.cpdgrp.orc.pts.ref"
              style="width: 90%"
              maxlength="16"
              placeholder=""
            ></c-input>
liushikai committed
468
          </el-form-item>
潘际乾 committed
469
        </c-col>
liushikai committed
470

潘际乾 committed
471
        <c-col :span="24">
hulei committed
472
          <el-form-item label="账号" prop="cpdgrp.rec.orcact">
473 474 475 476
            <c-input
              v-model="model.cpdgrp.rec.orcact"
              style="width: 90%"
              maxlength="35"
477
              placeholder="汇款人账号"
478 479
            ></c-input>
          </el-form-item>
潘际乾 committed
480
        </c-col>
liushikai committed
481

潘际乾 committed
482 483
        <c-col :span="24">
          <c-col :span="17">
484
            <el-form-item label="">
485 486 487 488
              <c-input 
                v-model="model.cpdgrp.orc.pts.extkey"
                placeholder="请输入汇款人客户号" >
              </c-input>
489
            </el-form-item>
潘际乾 committed
490 491
          </c-col>
          <c-col :span="7">
492
            <el-form-item label="" label-width="15px">
liushikai committed
493 494 495 496 497 498
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
499 500
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
501
                详情
502 503
              </c-button>
            </el-form-item>
潘际乾 committed
504 505
          </c-col>
        </c-col>
liushikai committed
506

507
        <c-col :span="18">
liushikai committed
508
          <el-form-item label="">
509 510
            <c-input
              type="textarea"
511 512 513 514 515
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.orc.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
516
            ></c-input>
liushikai committed
517
          </el-form-item>
潘际乾 committed
518
        </c-col>
519

潘际乾 committed
520
      </c-col>
liushikai committed
521

522
      <!-- ================底部--右================= -->
523
      <c-col :span="11" :offset="1" style="margin-top: 10px">
潘际乾 committed
524 525
        <c-col :span="24">
          <c-col :span="17">
526
            <el-form-item label="发报行">
liushikai committed
527
              <c-input placeholder="" disabled></c-input>
528
            </el-form-item>
潘际乾 committed
529 530
          </c-col>
          <c-col :span="7">
531
            <el-form-item label="" label-width="15px">
liushikai committed
532 533 534 535 536 537
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
538 539
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
540
                详情
541 542
              </c-button>
            </el-form-item>
潘际乾 committed
543 544 545
          </c-col>
        </c-col>
        <c-col :span="24">
546
          <el-form-item label="">
liushikai committed
547
            <c-input placeholder="" disabled style="width: 90%"></c-input>
liushikai committed
548
          </el-form-item>
潘际乾 committed
549 550
        </c-col>
        <c-col :span="24">
551 552 553 554 555 556 557
          <el-form-item label="指令代码" prop="cpdgrp.rec.f23e">
            <c-input
              v-model="model.cpdgrp.rec.f23e"
              style="width: 90%"
              maxlength="35"
              placeholder="请输入指令代码"
            ></c-input>
liushikai committed
558
          </el-form-item>
潘际乾 committed
559 560 561
        </c-col>
        <c-col :span="24">
          <c-col :span="14">
562 563 564 565 566 567 568
            <el-form-item label="原始金额" prop="cpdgrp.rec.curf33b">
              <c-select
                v-model="model.cpdgrp.rec.curf33b"
                style="width: 100%"
                placeholder=""
              >
                <el-option
liushikai committed
569
                  v-for="item in codes.cur"
liushikai committed
570 571 572 573
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
574 575
              </c-select>
            </el-form-item>
潘际乾 committed
576
          </c-col>
liushikai committed
577

潘际乾 committed
578
          <c-col :span="10">
579 580 581 582 583 584
            <el-form-item label="" label-width="15px" prop="cpdgrp.rec.amtf33b">
              <c-input
                v-model="model.cpdgrp.rec.amtf33b"
                placeholder="请输入原始金额"
              ></c-input>
            </el-form-item>
潘际乾 committed
585 586
          </c-col>
        </c-col>
liushikai committed
587

潘际乾 committed
588
        <c-col :span="24">
589 590 591 592 593 594 595
          <el-form-item label="汇率" prop="cpdgrp.rec.f36">
            <c-input
              v-model="model.cpdgrp.rec.f36"
              style="width: 30%"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
596
        </c-col>
liushikai committed
597

潘际乾 committed
598 599
        <c-col :span="24">
          <c-col :span="14">
600 601 602
            <el-form-item label="发报行扣费金额" prop="cpdgrp.rec.cur71f">
              <c-select v-model="model.cpdgrp.rec.cur71f" placeholder="">
                <el-option
liushikai committed
603
                  v-for="item in codes.cur"
liushikai committed
604 605 606 607
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
608 609
              </c-select>
            </el-form-item>
潘际乾 committed
610
          </c-col>
liushikai committed
611

潘际乾 committed
612
          <c-col :span="10">
613 614 615 616 617 618
            <el-form-item label="" label-width="15px" prop="cpdgrp.rec.amt71f">
              <c-input
                v-model="model.cpdgrp.rec.amt71f"
                placeholder="请输入发报行扣费金额"
              ></c-input>
            </el-form-item>
潘际乾 committed
619 620
          </c-col>
        </c-col>
liushikai committed
621

潘际乾 committed
622
        <c-col :span="24">
623 624 625 626 627 628 629 630
          <el-form-item label="银行操作码" prop="cpdgrp.rec.f23b">
            <c-input
              v-model="model.cpdgrp.rec.f23b"
              style="width: 20%"
              maxlength="4"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
631
        </c-col>
liushikai committed
632

潘际乾 committed
633
        <c-col :span="24">
hulei committed
634
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
635 636 637 638 639 640 641
            <c-input
              v-model="model.cpdgrp.rec.pyeact"
              style="width: 90%"
              maxlength="35"
              placeholder="请输入账号"
            ></c-input>
          </el-form-item>
潘际乾 committed
642
        </c-col>
liushikai committed
643

潘际乾 committed
644 645
        <c-col :span="24">
          <c-col :span="17">
646
            <el-form-item label="收款人" prop="cpdgrp.orc.pts.extkey">
liushikai committed
647
              <c-input
648
                v-model="model.cpdgrp.orc.pts.extkey"
liushikai committed
649 650
                maxlength="14"
                placeholder="请输入收款人"
liushikai committed
651 652 653
                @keyup.enter.native="
                  showGridPromptDialog('cpdgrp.orc.pts.extkey')
                "
liushikai committed
654 655
              ></c-input>
            </el-form-item>
潘际乾 committed
656
          </c-col>
liushikai committed
657

潘际乾 committed
658
          <c-col :span="7">
659
            <el-form-item label="" label-width="15px">
liushikai committed
660 661 662 663 664 665
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
666 667
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
668
                详情
669 670
              </c-button>
            </el-form-item>
潘际乾 committed
671 672
          </c-col>
        </c-col>
673

674
        <c-col :span="18">
675 676 677
          <el-form-item label="">
            <c-input
              type="textarea"
678 679 680 681 682
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.pye.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
683
            ></c-input>
liushikai committed
684
          </el-form-item>
潘际乾 committed
685 686 687
        </c-col>
      </c-col>
    </c-col>
liushikai committed
688

689
    <!-- ====================清算模式-人行支付系统===================== -->
690
    <c-col :span="24" v-if="model.cptp.liqtyp === 'B'" style="margin-top: 10px">
691
      <!-- =========左========== -->
潘际乾 committed
692 693
      <c-col :span="11">
        <c-col :span="24">
694 695 696 697 698 699 700 701 702
          <el-form-item label="付款人名称">
            <c-input
              type="textarea"
              v-model="model.cptp.orcnam"
              maxlength="40"
              show-word-limit
              placeholder="请输入付款人名称"
            ></c-input>
          </el-form-item>
潘际乾 committed
703 704
        </c-col>
        <c-col :span="24">
705 706 707 708 709 710 711 712 713
          <el-form-item label="付款人地址">
            <c-input
              type="textarea"
              v-model="model.cptp.orcadr"
              maxlength="40"
              show-word-limit
              placeholder="请输入付款人地址"
            ></c-input>
          </el-form-item>
潘际乾 committed
714 715
        </c-col>
        <c-col :span="24">
716 717 718 719 720 721 722 723 724
          <el-form-item label="收款人名称">
            <c-input
              type="textarea"
              v-model="model.cptp.pyenam"
              maxlength="40"
              show-word-limit
              placeholder="请输入收款人名称"
            ></c-input>
          </el-form-item>
潘际乾 committed
725 726
        </c-col>
        <c-col :span="24">
727 728 729 730 731 732 733 734 735
          <el-form-item label="收款人地址">
            <c-input
              type="textarea"
              v-model="model.cptp.pyeadr"
              maxlength="40"
              show-word-limit
              placeholder="请输入收款人地址"
            ></c-input>
          </el-form-item>
潘际乾 committed
736 737
        </c-col>
        <c-col :span="24">
hulei committed
738
          <el-form-item label="账号" prop="cpdgrp.rec.orcact">
739 740 741 742 743 744 745
            <c-input
              v-model="model.cpdgrp.rec.orcact"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
746 747 748
        </c-col>
        <c-col :span="24">
          <c-col :span="17">
749 750 751 752 753 754 755
            <el-form-item label="汇款人">
              <c-input
                v-model="model.cpdgrp.snd.pts.extkey"
                maxlength="16"
                placeholder="请输入汇款人"
              ></c-input>
            </el-form-item>
潘际乾 committed
756 757
          </c-col>
          <c-col :span="7">
758
            <el-form-item label="" label-width="15px">
liushikai committed
759 760 761 762 763 764
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              ></c-button>
liushikai committed
765
              <c-button size="small" type="primary" disabled>详情</c-button>
766
            </el-form-item>
潘际乾 committed
767 768 769
          </c-col>
        </c-col>
        <c-col :span="24">
770 771 772 773 774 775 776 777 778 779 780
          <el-form-item label="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.orc.namelc"
              maxlength="35"
              show-word-limit
              placeholder="请输入名称"
              style="width: 90%"
              readonly
            ></c-input>
          </el-form-item>
潘际乾 committed
781 782
        </c-col>
      </c-col>
liushikai committed
783

784
      <!-- =========右========== -->
潘际乾 committed
785 786
      <c-col :span="11" :offset="1">
        <c-col :span="24">
787 788 789 790 791 792 793
          <el-form-item label="接收行名称">
            <c-input
              maxlength="12"
              placeholder="请输入接收行名称"
              style="width: 90%"
            ></c-input>
          </el-form-item>
潘际乾 committed
794 795 796
        </c-col>
        <c-col :span="24">
          <c-col :span="18">
797 798 799 800 801 802 803 804
            <el-form-item label="接收行行号">
              <c-input
                v-model="model.cptp.resbch"
                maxlength="12"
                placeholder="请输入接收行行号"
                readonly
              ></c-input>
            </el-form-item>
潘际乾 committed
805 806
          </c-col>
          <c-col :span="2" :offset="1">
807
            <c-checkbox v-model="model.cptp.flg">电汇凭证</c-checkbox>
潘际乾 committed
808 809
          </c-col>
        </c-col>
810

潘际乾 committed
811
        <c-col :span="24"
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
          ><el-form-item label="业务种类">
            <c-select
              v-model="model.cptp.bustyp"
              style="width: 60%"
              placeholder="请选择业务种类"
              disabled
            >
              <el-option
                v-for="item in codes.bustyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
潘际乾 committed
828
        </c-col>
829

潘际乾 committed
830 831
        <c-col :span="24">
          <c-col :span="12">
832 833 834 835 836 837 838 839
            <el-form-item label="收款人开户行名称">
              <c-input
                v-model="model.cptp.pyebchnam"
                maxlength="38"
                placeholder="请输入收款人开户行名称"
                readonly
              ></c-input>
            </el-form-item>
潘际乾 committed
840 841
          </c-col>
          <c-col :span="10">
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857
            <el-form-item label="二代模式" label-width="120px">
              <c-select
                v-model="model.cptp.secmod"
                style="width: 90%"
                placeholder="请选择二代模式"
                disabled
              >
                <el-option
                  v-for="item in codes.secmod"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
潘际乾 committed
858 859
          </c-col>
          <c-col :span="2"
860 861
            ><c-button size="small" type="primary" @click="onCptpGetmod">
              获取
潘际乾 committed
862
            </c-button></c-col
863
          >
潘际乾 committed
864 865
        </c-col>
        <c-col :span="24">
866 867 868 869 870 871 872 873 874
          <el-form-item label="附言">
            <c-input
              type="textarea"
              v-model="model.cptp.commet"
              maxlength="35"
              show-word-limit
              placeholder="请输入附言"
            ></c-input>
          </el-form-item>
潘际乾 committed
875 876
        </c-col>
        <c-col :span="24">
hulei committed
877
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
878 879 880 881 882 883 884
            <c-input
              v-model="model.cpdgrp.rec.act"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
885 886 887
        </c-col>
        <c-col :span="24">
          <c-col :span="17">
888 889 890 891 892 893 894
            <el-form-item label="收款人">
              <c-input
                v-model="model.cpdgrp.snd.pts.extkey"
                maxlength="16"
                placeholder="请输入收款人"
              ></c-input>
            </el-form-item>
潘际乾 committed
895 896
          </c-col>
          <c-col :span="7">
897
            <el-form-item label="" label-width="15px">
liushikai committed
898 899 900 901 902 903
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              ></c-button>
liushikai committed
904
              <c-button size="small" type="primary">详情</c-button>
905
            </el-form-item>
潘际乾 committed
906 907 908
          </c-col>
        </c-col>
        <c-col :span="24">
909 910 911 912 913 914 915 916 917 918
          <el-form-item label="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.orc.namelc"
              maxlength="35"
              show-word-limit
              placeholder="请输入名称"
              style="width: 90%"
            ></c-input>
          </el-form-item>
潘际乾 committed
919 920 921
        </c-col>
      </c-col>
    </c-col>
wangguangchao committed
922

liushikai committed
923
    <!-- ====================清算模式-CIPS系统===================== -->
924
    <c-col :span="24" v-if="model.cptp.liqtyp === 'S'" style="margin-top: 10px">
liushikai committed
925
      <!-- =========左========== -->
潘际乾 committed
926 927
      <c-col :span="11">
        <c-col :span="24">
liushikai committed
928 929 930 931 932 933 934 935 936
          <el-form-item label="付款人名称">
            <c-input
              type="textarea"
              v-model="model.cptp.orcnam"
              maxlength="40"
              show-word-limit
              placeholder="请输入付款人名称"
            ></c-input>
          </el-form-item>
潘际乾 committed
937 938
        </c-col>
        <c-col :span="24">
liushikai committed
939 940 941 942 943 944 945 946 947
          <el-form-item label="付款人地址">
            <c-input
              type="textarea"
              v-model="model.cptp.orcadr"
              maxlength="40"
              show-word-limit
              placeholder="请输入付款人地址"
            ></c-input>
          </el-form-item>
潘际乾 committed
948 949
        </c-col>
        <c-col :span="24">
liushikai committed
950 951 952 953 954 955 956 957 958
          <el-form-item label="收款人名称">
            <c-input
              type="textarea"
              v-model="model.cptp.pyenam"
              maxlength="40"
              show-word-limit
              placeholder="请输入收款人名称"
            ></c-input>
          </el-form-item>
潘际乾 committed
959 960
        </c-col>
        <c-col :span="24">
liushikai committed
961 962 963 964 965 966 967 968 969
          <el-form-item label="收款人地址">
            <c-input
              type="textarea"
              v-model="model.cptp.pyeadr"
              maxlength="40"
              show-word-limit
              placeholder="请输入收款人地址"
            ></c-input>
          </el-form-item>
潘际乾 committed
970 971
        </c-col>
        <c-col :span="24">
hulei committed
972
          <el-form-item label="账号" prop="cpdgrp.rec.orcact">
liushikai committed
973 974 975 976 977 978 979
            <c-input
              v-model="model.cpdgrp.rec.orcact"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
980 981 982
        </c-col>
        <c-col :span="24">
          <c-col :span="17">
liushikai committed
983 984 985 986 987 988 989
            <el-form-item label="汇款人">
              <c-input
                v-model="model.cpdgrp.snd.pts.extkey"
                maxlength="16"
                placeholder="请输入汇款人"
              ></c-input>
            </el-form-item>
潘际乾 committed
990 991
          </c-col>
          <c-col :span="7">
liushikai committed
992
            <el-form-item label="" label-width="15px">
liushikai committed
993 994 995 996 997 998
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              ></c-button>
liushikai committed
999
              <c-button size="small" type="primary" disabled>详情</c-button>
liushikai committed
1000
            </el-form-item>
潘际乾 committed
1001 1002 1003
          </c-col>
        </c-col>
        <c-col :span="24">
liushikai committed
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
          <el-form-item label="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.orc.namelc"
              maxlength="35"
              show-word-limit
              placeholder="请输入名称"
              style="width: 90%"
              readonly
            ></c-input>
          </el-form-item>
潘际乾 committed
1015 1016
        </c-col>
      </c-col>
liushikai committed
1017 1018

      <!-- =========右========== -->
潘际乾 committed
1019 1020
      <c-col :span="11" :offset="1">
        <c-col :span="4" :offset="18">
liushikai committed
1021
          <c-checkbox v-model="model.cptp.flg">电汇凭证</c-checkbox>
潘际乾 committed
1022
        </c-col>
liushikai committed
1023

潘际乾 committed
1024
        <c-col :span="24" style="margin-top: 15px">
liushikai committed
1025 1026 1027 1028 1029 1030 1031 1032
          <el-form-item label="收款直参行号">
            <c-input
              v-model="model.cptp.reconebch"
              maxlength="35"
              style="width: 80%"
              placeholder="请输入收款直参行号"
            ></c-input>
          </el-form-item>
潘际乾 committed
1033 1034
        </c-col>
        <c-col :span="24">
liushikai committed
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
          <el-form-item label="收款直参名称">
            <c-input
              type="textarea"
              v-model="model.cptp.reconebchnam"
              maxlength="35"
              style="width: 80%"
              show-word-limit
              placeholder="请输入收款直参名称"
            ></c-input>
          </el-form-item>
潘际乾 committed
1045
        </c-col>
liushikai committed
1046

潘际乾 committed
1047
        <c-col :span="24"
liushikai committed
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
          ><el-form-item label="业务种类">
            <c-select
              v-model="model.cptp.bustyp"
              style="width: 60%"
              placeholder="请选择业务种类"
              disabled
            >
              <el-option
                v-for="item in codes.bustyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
潘际乾 committed
1064
        </c-col>
liushikai committed
1065

潘际乾 committed
1066
        <c-col :span="24">
liushikai committed
1067 1068 1069 1070 1071 1072 1073 1074 1075
          <el-form-item label="附言">
            <c-input
              type="textarea"
              v-model="model.cptp.commet"
              maxlength="35"
              show-word-limit
              placeholder="请输入附言"
            ></c-input>
          </el-form-item>
潘际乾 committed
1076 1077
        </c-col>
        <c-col :span="24">
hulei committed
1078
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
liushikai committed
1079 1080 1081 1082 1083 1084 1085
            <c-input
              v-model="model.cpdgrp.rec.act"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1086 1087 1088
        </c-col>
        <c-col :span="24">
          <c-col :span="17">
liushikai committed
1089 1090 1091 1092 1093 1094 1095
            <el-form-item label="收款人">
              <c-input
                v-model="model.cpdgrp.snd.pts.extkey"
                maxlength="16"
                placeholder="请输入收款人"
              ></c-input>
            </el-form-item>
潘际乾 committed
1096 1097
          </c-col>
          <c-col :span="7">
liushikai committed
1098
            <el-form-item label="" label-width="15px">
liushikai committed
1099 1100 1101 1102 1103 1104
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              ></c-button>
liushikai committed
1105
              <c-button size="small" type="primary">详情</c-button>
liushikai committed
1106
            </el-form-item>
潘际乾 committed
1107 1108 1109
          </c-col>
        </c-col>
        <c-col :span="24">
liushikai committed
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
          <el-form-item label="">
            <c-input
              type="textarea"
              v-model="model.cpdgrp.orc.namelc"
              maxlength="35"
              show-word-limit
              placeholder="请输入名称"
              style="width: 90%"
            ></c-input>
          </el-form-item>
潘际乾 committed
1120 1121 1122
        </c-col>
      </c-col>
    </c-col>
liushikai committed
1123

liushikai committed
1124
    <!-- ======================清算模式-Other================ -->
1125
    <c-col :span="24" v-if="model.cptp.liqtyp === 'O'" style="margin-top: 10px">
liushikai committed
1126
      <!-- ================左================= -->
1127
      <c-col :span="11">
潘际乾 committed
1128
        <c-col :span="24">
liushikai committed
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
          <el-form-item
            label="Ordering institution (52a)"
            prop="cpdgrp.ori.pts.ref"
          >
            <c-input
              v-model="model.cpdgrp.ori.pts.ref"
              style="width: 90%"
              maxlength="16"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1140
        </c-col>
liushikai committed
1141

潘际乾 committed
1142 1143
        <c-col :span="24">
          <c-col :span="17">
liushikai committed
1144 1145 1146
            <el-form-item label="">
              <c-input placeholder=""></c-input>
            </el-form-item>
潘际乾 committed
1147 1148
          </c-col>
          <c-col :span="7">
liushikai committed
1149
            <el-form-item label="" label-width="15px">
liushikai committed
1150 1151 1152 1153 1154 1155
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
liushikai committed
1156 1157
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet">
liushikai committed
1158
                详情
liushikai committed
1159 1160
              </c-button>
            </el-form-item>
潘际乾 committed
1161 1162
          </c-col>
        </c-col>
liushikai committed
1163

1164
        <c-col :span="18">
liushikai committed
1165 1166 1167
          <el-form-item label="">
            <c-input
              type="textarea"
1168 1169 1170 1171 1172
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.ori.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
liushikai committed
1173 1174
            ></c-input>
          </el-form-item>
潘际乾 committed
1175
        </c-col>
liushikai committed
1176

潘际乾 committed
1177
        <c-col :span="24">
liushikai committed
1178 1179 1180 1181 1182 1183 1184 1185
          <el-form-item label="汇款人" prop="cpdgrp.orc.pts.ref">
            <c-input
              v-model="model.cpdgrp.orc.pts.ref"
              style="width: 90%"
              maxlength="16"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1186
        </c-col>
liushikai committed
1187

潘际乾 committed
1188
        <c-col :span="24">
hulei committed
1189
          <el-form-item label="账号" prop="cpdgrp.rec.orcact">
liushikai committed
1190 1191 1192 1193 1194 1195 1196
            <c-input
              v-model="model.cpdgrp.rec.orcact"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1197
        </c-col>
liushikai committed
1198

潘际乾 committed
1199 1200
        <c-col :span="24">
          <c-col :span="17">
liushikai committed
1201 1202 1203
            <el-form-item label="">
              <c-input placeholder=""></c-input>
            </el-form-item>
潘际乾 committed
1204 1205
          </c-col>
          <c-col :span="7">
liushikai committed
1206
            <el-form-item label="" label-width="15px">
liushikai committed
1207 1208 1209 1210 1211 1212
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
liushikai committed
1213 1214
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
1215
                详情
liushikai committed
1216 1217
              </c-button>
            </el-form-item>
潘际乾 committed
1218 1219
          </c-col>
        </c-col>
liushikai committed
1220

1221
        <c-col :span="18">
liushikai committed
1222 1223 1224
          <el-form-item label="">
            <c-input
              type="textarea"
1225 1226 1227 1228 1229
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.orc.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
liushikai committed
1230 1231
            ></c-input>
          </el-form-item>
潘际乾 committed
1232 1233
        </c-col>
      </c-col>
liushikai committed
1234 1235

      <!-- ==============右================== -->
潘际乾 committed
1236 1237 1238
      <c-col :span="11" :offset="1">
        <c-col :span="24">
          <c-col :span="17">
liushikai committed
1239 1240 1241
            <el-form-item label="发报行">
              <c-input placeholder="" readonly></c-input>
            </el-form-item>
潘际乾 committed
1242 1243
          </c-col>
          <c-col :span="7">
liushikai committed
1244
            <el-form-item label="" label-width="15px">
liushikai committed
1245 1246 1247 1248 1249 1250
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
liushikai committed
1251 1252
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
1253
                详情
liushikai committed
1254 1255
              </c-button>
            </el-form-item>
潘际乾 committed
1256 1257
          </c-col>
        </c-col>
1258
        <c-col :span="18">
liushikai committed
1259
          <el-form-item label="">
1260 1261
            <c-input
              type="textarea"
1262 1263 1264 1265 1266
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.snd.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
1267
            ></c-input>
liushikai committed
1268
          </el-form-item>
潘际乾 committed
1269 1270
        </c-col>
        <c-col :span="24">
liushikai committed
1271
          <el-form-item label="付款详情">
1272 1273 1274 1275 1276
            <c-input
              type="textarea"
              placeholder=""
              readonly
              style="width: 90%"
1277
              rows="3"
1278
            ></c-input>
liushikai committed
1279
          </el-form-item>
潘际乾 committed
1280 1281
        </c-col>
        <c-col :span="24">
1282
          <el-form-item label="收款人Ref." prop="cpdgrp.orc.pts.ref">
liushikai committed
1283 1284 1285 1286 1287 1288 1289
            <c-input
              v-model="model.cpdgrp.orc.pts.ref"
              style="width: 90%"
              maxlength="16"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1290
        </c-col>
liushikai committed
1291

潘际乾 committed
1292
        <c-col :span="24">
hulei committed
1293
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
liushikai committed
1294 1295 1296 1297 1298 1299 1300
            <c-input
              v-model="model.cpdgrp.rec.orcact"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1301 1302 1303
        </c-col>
        <c-col :span="24">
          <c-col :span="17">
liushikai committed
1304 1305 1306
            <el-form-item label="">
              <c-input placeholder=""></c-input>
            </el-form-item>
潘际乾 committed
1307 1308
          </c-col>
          <c-col :span="7">
liushikai committed
1309
            <el-form-item label="" label-width="15px">
liushikai committed
1310 1311 1312 1313 1314 1315
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
liushikai committed
1316 1317
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
1318
                详情
liushikai committed
1319 1320
              </c-button>
            </el-form-item>
潘际乾 committed
1321 1322
          </c-col>
        </c-col>
liushikai committed
1323

1324
        <c-col :span="18">
liushikai committed
1325 1326 1327
          <el-form-item label="">
            <c-input
              type="textarea"
1328
              :rows="4"
1329
              maxlength="140"
1330
              v-model="model.cpdgrp.pye.pts.adrblk"
1331 1332
              show-word-limit
              placeholder="请输入Address Block"
liushikai committed
1333 1334
            ></c-input>
          </el-form-item>
潘际乾 committed
1335 1336 1337
        </c-col>
      </c-col>
    </c-col>
liushikai committed
1338

1339
    <!-- ====================清算模式-代理行模式=================== -->
1340
    <c-col :span="24" v-if="model.cptp.liqtyp === 'C'" style="margin-top: 10px">
1341
      <!-- ==============左============== -->
潘际乾 committed
1342 1343
      <c-col :span="11">
        <c-col :span="24">
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
          <el-form-item
            label="Ordering institution (52a)"
            prop="cpdgrp.ori.pts.ref"
          >
            <c-input
              v-model="model.cpdgrp.ori.pts.ref"
              style="width: 90%"
              maxlength="16"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1355
        </c-col>
1356

潘际乾 committed
1357 1358
        <c-col :span="24">
          <c-col :span="17">
1359 1360 1361
            <el-form-item label="">
              <c-input placeholder=""></c-input>
            </el-form-item>
潘际乾 committed
1362 1363
          </c-col>
          <c-col :span="7">
1364
            <el-form-item label="" label-width="15px">
liushikai committed
1365 1366 1367 1368 1369 1370
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
1371 1372
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet">
liushikai committed
1373
                详情
1374 1375
              </c-button>
            </el-form-item>
潘际乾 committed
1376 1377
          </c-col>
        </c-col>
liushikai committed
1378

1379
        <c-col :span="18">
1380 1381 1382
          <el-form-item label="">
            <c-input
              type="textarea"
1383 1384 1385 1386 1387
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.ori.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
1388 1389
            ></c-input>
          </el-form-item>
潘际乾 committed
1390
        </c-col>
liushikai committed
1391

潘际乾 committed
1392
        <c-col :span="24">
1393 1394 1395 1396 1397 1398 1399 1400
          <el-form-item label="汇款人" prop="cpdgrp.orc.pts.ref">
            <c-input
              v-model="model.cpdgrp.orc.pts.ref"
              style="width: 90%"
              maxlength="16"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1401
        </c-col>
1402

潘际乾 committed
1403
        <c-col :span="24">
hulei committed
1404
          <el-form-item label="账号" prop="cpdgrp.rec.orcact">
1405 1406 1407 1408 1409 1410 1411
            <c-input
              v-model="model.cpdgrp.rec.orcact"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1412
        </c-col>
1413

潘际乾 committed
1414 1415
        <c-col :span="24">
          <c-col :span="17">
1416 1417 1418
            <el-form-item label="">
              <c-input placeholder=""></c-input>
            </el-form-item>
潘际乾 committed
1419 1420
          </c-col>
          <c-col :span="7">
1421
            <el-form-item label="" label-width="15px">
liushikai committed
1422 1423 1424 1425 1426 1427
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
1428 1429
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
1430
                详情
1431 1432
              </c-button>
            </el-form-item>
潘际乾 committed
1433 1434
          </c-col>
        </c-col>
1435

1436
        <c-col :span="18">
1437 1438 1439
          <el-form-item label="">
            <c-input
              type="textarea"
1440 1441 1442 1443 1444
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.orc.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
1445 1446
            ></c-input>
          </el-form-item>
潘际乾 committed
1447 1448
        </c-col>
      </c-col>
1449
      <!-- ==============右============== -->
潘际乾 committed
1450 1451
      <c-col :span="11" :offset="1">
        <c-col :span="24">
liushikai committed
1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
          <el-form-item label="清算代理行">
            <c-select
              v-model="model.cptp.cleage"
              style="width: 70%"
              placeholder="请选择清算代理行"
            >
              <el-option
                v-for="item in cleageOptions"
                :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="光大开户行">
            <c-select
              v-model="model.cptp.evebch"
              style="width: 70%"
              placeholder="请选择光大开户行"
            >
            </c-select>
          </el-form-item>
        </c-col>
        <c-col :span="24">
          <el-form-item label="清算代理行账号">
            <c-input
              v-model="model.cptp.coract"
              maxlength="32"
              style="width: 90%"
              placeholder="请输入清算代理行账号"
              readonly
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="24">
1489 1490 1491 1492 1493 1494 1495 1496
          <el-form-item label="指令代码" prop="cpdgrp.rec.f23e">
            <c-input
              v-model="model.cpdgrp.rec.f23e"
              style="width: 90%"
              maxlength="35"
              placeholder="请输入指令代码"
            ></c-input>
          </el-form-item>
潘际乾 committed
1497 1498 1499
        </c-col>
        <c-col :span="24">
          <c-col :span="14">
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
            <el-form-item label="原始金额" prop="cpdgrp.rec.curf33b">
              <c-select
                v-model="model.cpdgrp.rec.curf33b"
                style="width: 100%"
                placeholder=""
              >
                <el-option
                  v-for="item in codes.cur"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
            </el-form-item>
潘际乾 committed
1514
          </c-col>
1515

潘际乾 committed
1516
          <c-col :span="10">
1517 1518 1519 1520 1521 1522
            <el-form-item label="" label-width="15px" prop="cpdgrp.rec.amtf33b">
              <c-input
                v-model="model.cpdgrp.rec.amtf33b"
                placeholder="请输入原始金额"
              ></c-input>
            </el-form-item>
潘际乾 committed
1523 1524
          </c-col>
        </c-col>
1525

潘际乾 committed
1526 1527
        <c-col :span="24">
          <c-col :span="14">
1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
            <el-form-item label="发报行扣费金额" prop="cpdgrp.rec.cur71f">
              <c-select v-model="model.cpdgrp.rec.cur71f" placeholder="">
                <el-option
                  v-for="item in codes.cur"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
            </el-form-item>
潘际乾 committed
1538
          </c-col>
1539

潘际乾 committed
1540
          <c-col :span="10">
1541 1542 1543 1544 1545 1546
            <el-form-item label="" label-width="15px" prop="cpdgrp.rec.amt71f">
              <c-input
                v-model="model.cpdgrp.rec.amt71f"
                placeholder="请输入发报行扣费金额"
              ></c-input>
            </el-form-item>
潘际乾 committed
1547 1548 1549 1550
          </c-col>
        </c-col>
        <c-col :span="24">
          <c-col :span="12">
liushikai committed
1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
            <el-form-item label="银行操作码" prop="cpdgrp.rec.f23b">
              <c-input
                v-model="model.cpdgrp.rec.f23b"
                style="width: 100%"
                maxlength="4"
                placeholder=""
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="12">
            <el-form-item
              label="汇率"
              prop="cpdgrp.rec.f36"
              label-width="100px"
            >
              <c-input
                v-model="model.cpdgrp.rec.f36"
                style="width: 100%"
                placeholder=""
              ></c-input>
            </el-form-item>
          </c-col>
潘际乾 committed
1573 1574
        </c-col>
        <c-col :span="24">
hulei committed
1575
          <el-form-item label="账号" prop="cpdgrp.rec.pyeact">
1576 1577 1578 1579 1580 1581 1582
            <c-input
              v-model="model.cpdgrp.rec.pyeact"
              style="width: 90%"
              maxlength="35"
              placeholder=""
            ></c-input>
          </el-form-item>
潘际乾 committed
1583
        </c-col>
liushikai committed
1584

潘际乾 committed
1585 1586
        <c-col :span="24">
          <c-col :span="17">
1587
            <el-form-item label="收款人" prop="cpdgrp.orc.pts.extkey">
liushikai committed
1588 1589
              <c-input
                placeholder=""
1590
                v-model="model.cpdgrp.orc.pts.extkey"
liushikai committed
1591 1592 1593 1594
                @keyup.enter.native="
                  showGridPromptDialog('cpdgrp.orc.pts.extkey')
                "
              ></c-input>
1595
            </el-form-item>
潘际乾 committed
1596 1597
          </c-col>
          <c-col :span="7">
1598
            <el-form-item label="" label-width="15px">
liushikai committed
1599 1600 1601 1602 1603 1604
              <c-button
                size="small"
                type="primary"
                @click="onCptpGetInfpta"
                icon="el-icon-search"
              >
1605 1606
              </c-button>
              <c-button size="small" type="primary" @click="onSndpDet" disabled>
liushikai committed
1607
                详情
1608 1609
              </c-button>
            </el-form-item>
潘际乾 committed
1610 1611
          </c-col>
        </c-col>
1612

1613
        <c-col :span="18">
1614 1615 1616
          <el-form-item label="">
            <c-input
              type="textarea"
1617 1618 1619 1620 1621
              :rows="4"
              maxlength="140"              
              v-model="model.cpdgrp.pye.pts.adrblk"
              show-word-limit
              placeholder="请输入Address Block"
1622 1623
            ></c-input>
          </el-form-item>
潘际乾 committed
1624 1625 1626
        </c-col>
      </c-col>
    </c-col>
liushikai committed
1627

潘际乾 committed
1628
    <!-- <c-col><div style="height: 100px"></div></c-col>
liushikai committed
1629

潘际乾 committed
1630
    <c-col :span="12">
liushikai committed
1631
      <span v-text="model.cptp.shktyp" data-path=".cptp.shktyp"> </span>
潘际乾 committed
1632
    </c-col>
liushikai committed
1633

潘际乾 committed
1634
    <c-col :span="11" :offset="1">
liushikai committed
1635 1636 1637 1638 1639 1640 1641 1642
      <el-form-item label="Currency">
        <c-select
          v-model="model.cpdgrp.cbs.nom1.cur"
          style="width: 100%"
          placeholder="请选择Currency"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1643
    </c-col>
liushikai committed
1644

潘际乾 committed
1645
    <c-col :span="11">
liushikai committed
1646 1647 1648 1649 1650 1651 1652 1653
      <el-form-item label="Currency">
        <c-select
          v-model="model.cpdgrp.cbs.max.cur"
          style="width: 100%"
          placeholder="请选择Currency"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1654
    </c-col>
liushikai committed
1655

潘际乾 committed
1656
    <c-col :span="11">
liushikai committed
1657 1658 1659 1660 1661 1662
      <el-form-item label="汇款金额">
        <c-input
          v-model="model.cpdgrp.cbs.max.amt"
          placeholder="请输入汇款金额"
        ></c-input>
      </el-form-item>
潘际乾 committed
1663
    </c-col>
liushikai committed
1664

潘际乾 committed
1665
    <c-col :span="9" :offset="1">
liushikai committed
1666 1667 1668 1669 1670 1671 1672
      <el-form-item label="Uetr">
        <c-input
          v-model="model.cptp.uetr"
          maxlength="40"
          placeholder="请输入Uetr"
        ></c-input>
      </el-form-item>
潘际乾 committed
1673
    </c-col>
liushikai committed
1674

潘际乾 committed
1675
    <c-col :span="2" :offset="1">
liushikai committed
1676 1677 1678
      <c-button size="small" type="primary" @click="onCptpGetuetr">
        Get
      </c-button>
潘际乾 committed
1679
    </c-col>
liushikai committed
1680

潘际乾 committed
1681
    <c-col :span="12">
liushikai committed
1682
      <span v-text="model.cptp.paydatsta" data-path=".cptp.paydatsta"> </span>
潘际乾 committed
1683
    </c-col>
liushikai committed
1684

潘际乾 committed
1685
    <c-col :span="12">
liushikai committed
1686
      <span v-text="model.cptp.commetlab" data-path=".cptp.commetlab"> </span>
潘际乾 committed
1687
    </c-col>
liushikai committed
1688

潘际乾 committed
1689
    <c-col :span="11" :offset="1">
liushikai committed
1690 1691 1692 1693 1694 1695 1696 1697
      <el-form-item label="自�'�区备注">
        <c-select
          v-model="model.cptp.comsystbl"
          style="width: 100%"
          placeholder="请选择自�'�区备注"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1698
    </c-col>
liushikai committed
1699

潘际乾 committed
1700
    <c-col :span="12">
liushikai committed
1701
      <span v-text="model.cptp.valdat" data-path=".cptp.valdat"> </span>
潘际乾 committed
1702
    </c-col>
liushikai committed
1703

潘际乾 committed
1704
    <c-col :span="11">
liushikai committed
1705 1706 1707 1708 1709 1710 1711 1712
      <el-form-item label="Value Date">
        <c-date-picker
          type="date"
          v-model="model.cpdgrp.rec.valdat"
          style="width: 100%"
          placeholder="请选择Value Date"
        ></c-date-picker>
      </el-form-item>
潘际乾 committed
1713
    </c-col>
liushikai committed
1714

潘际乾 committed
1715
    <c-col :span="11" :offset="1">
liushikai committed
1716 1717 1718 1719 1720 1721 1722 1723
      <el-form-item label="Uil Payment">
        <c-select
          v-model="model.cptp.payuil"
          style="width: 100%"
          placeholder="请选择Uil Payment"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1724
    </c-col>
liushikai committed
1725

潘际乾 committed
1726
    <c-col :span="11" :offset="1">
liushikai committed
1727 1728 1729 1730 1731 1732 1733 1734
      <el-form-item label="PRECHKDAT">
        <c-date-picker
          type="date"
          v-model="model.cpdgrp.rec.prechkdat"
          style="width: 100%"
          placeholder="请选择PRECHKDAT"
        ></c-date-picker>
      </el-form-item>
潘际乾 committed
1735
    </c-col>
liushikai committed
1736

潘际乾 committed
1737
    <c-col :span="11">
liushikai committed
1738 1739 1740 1741 1742 1743 1744
      <el-form-item label="付款人常驻国家/地区代码">
        <c-input
          v-model="model.cptp.draweecountcode"
          maxlength="3"
          placeholder="请输入付款人常驻国家/地区代码"
        ></c-input>
      </el-form-item>
潘际乾 committed
1745
    </c-col>
liushikai committed
1746

潘际乾 committed
1747
    <c-col :span="9">
liushikai committed
1748 1749 1750 1751 1752 1753 1754 1755
      <el-form-item label="swift type">
        <c-select
          v-model="model.cpdgrp.rec.swftyp"
          style="width: 100%"
          placeholder="请选择swift type"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1756
    </c-col>
liushikai committed
1757

潘际乾 committed
1758
    <c-col :span="2" :offset="1">
liushikai committed
1759 1760 1761 1762 1763 1764 1765 1766
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onCptpSelbut"
      >
        ?
      </c-button>
潘际乾 committed
1767
    </c-col>
liushikai committed
1768

潘际乾 committed
1769
    <c-col :span="9">
liushikai committed
1770 1771 1772 1773 1774 1775 1776 1777
      <el-form-item label="Details of Charges">
        <c-select
          v-model="model.cpdgrp.rec.detchgcod"
          style="width: 100%"
          placeholder="请选择Details of Charges"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1778
    </c-col>
liushikai committed
1779

潘际乾 committed
1780
    <c-col :span="2" :offset="1">
liushikai committed
1781 1782 1783 1784 1785 1786 1787 1788
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onCptpSelbut1"
      >
        ?
      </c-button>
潘际乾 committed
1789
    </c-col>
liushikai committed
1790

潘际乾 committed
1791
    <c-col :span="11">
liushikai committed
1792 1793 1794 1795 1796 1797 1798 1799
      <el-form-item label="清算模式">
        <c-select
          v-model="model.cptp.liqtyp"
          style="width: 100%"
          placeholder="请选择清算模式"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1800
    </c-col>
liushikai committed
1801

潘际乾 committed
1802
    <c-col :span="11">
liushikai committed
1803 1804 1805 1806 1807 1808 1809 1810
      <el-form-item label="国外�'�用币种">
        <c-select
          v-model="model.cpdgrp.rec.feecur"
          style="width: 100%"
          placeholder="请选择国外�'�用币种"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1811
    </c-col>
liushikai committed
1812

潘际乾 committed
1813
    <c-col :span="11" :offset="1">
liushikai committed
1814 1815 1816 1817 1818 1819
      <el-form-item label="国外�'�用金额">
        <c-input
          v-model="model.cpdgrp.rec.feeamt"
          placeholder="请输入国外�'�用金额"
        ></c-input>
      </el-form-item>
潘际乾 committed
1820
    </c-col>
liushikai committed
1821

潘际乾 committed
1822
    <c-col :span="11">
liushikai committed
1823 1824 1825 1826 1827 1828 1829 1830
      <el-form-item label="Good's Code for Statistics">
        <c-select
          v-model="model.cpdgrp.rec.stagod"
          style="width: 100%"
          placeholder="请选择Good's Code for Statistics"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1831
    </c-col>
liushikai committed
1832

潘际乾 committed
1833
    <c-col :span="12">
liushikai committed
1834
      <span v-text="model.cptp.feesta" data-path=".cptp.feesta"> </span>
潘际乾 committed
1835
    </c-col>
liushikai committed
1836

潘际乾 committed
1837
    <c-col :span="12">
liushikai committed
1838
      <span v-text="model.cptp.clmlab" data-path=".cptp.clmlab"> </span>
潘际乾 committed
1839
    </c-col>
liushikai committed
1840

潘际乾 committed
1841
    <c-col :span="11">
liushikai committed
1842 1843 1844 1845 1846 1847 1848 1849 1850
      <el-form-item label="付款人名称">
        <c-input
          type="textarea"
          v-model="model.cptp.orcnam"
          maxlength="40"
          show-word-limit
          placeholder="请输入付款人名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
1851
    </c-col>
liushikai committed
1852

潘际乾 committed
1853
    <c-col :span="11" :offset="1">
liushikai committed
1854 1855 1856 1857 1858 1859
      <el-form-item label="Drag  Drop Sender">
        <c-input
          v-model="model.cptp.sndp.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
潘际乾 committed
1860
    </c-col>
liushikai committed
1861

潘际乾 committed
1862
    <c-col :span="11" :offset="1">
liushikai committed
1863 1864 1865 1866 1867 1868 1869 1870
      <el-form-item label="清算代理行">
        <c-select
          v-model="model.cptp.cleage"
          style="width: 100%"
          placeholder="请选择清算代理行"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1871
    </c-col>
liushikai committed
1872

潘际乾 committed
1873
    <c-col :span="11">
liushikai committed
1874 1875 1876 1877 1878 1879 1880
      <el-form-item label="External Key of Address">
        <c-input
          v-model="model.cpdgrp.snd.pts.extkey"
          maxlength="16"
          placeholder="请输入External Key of Address"
        ></c-input>
      </el-form-item>
潘际乾 committed
1881
    </c-col>
liushikai committed
1882

潘际乾 committed
1883
    <c-col :span="11" :offset="12">
liushikai committed
1884 1885 1886 1887 1888 1889 1890
      <el-form-item label="汇款人名称">
        <c-input
          v-model="model.cptp.resbchnam"
          maxlength="42"
          placeholder="请输入汇款人名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
1891
    </c-col>
liushikai committed
1892

潘际乾 committed
1893
    <c-col :span="11" :offset="1">
liushikai committed
1894 1895 1896 1897 1898 1899 1900
      <el-form-item label="收款�'接参与者行号">
        <c-input
          v-model="model.cptp.reconebch"
          maxlength="35"
          placeholder="请输入收款�'接参与者行号"
        ></c-input>
      </el-form-item>
潘际乾 committed
1901
    </c-col>
liushikai committed
1902

潘际乾 committed
1903
    <c-col :span="11">
liushikai committed
1904 1905 1906 1907 1908 1909 1910 1911 1912
      <el-form-item label="名称">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.snd.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
1913
    </c-col>
liushikai committed
1914

潘际乾 committed
1915
    <c-col :span="11" :offset="1">
liushikai committed
1916 1917 1918 1919 1920 1921 1922 1923
      <el-form-item label="光大开户分行">
        <c-select
          v-model="model.cptp.evebch"
          style="width: 100%"
          placeholder="请选择光大开户分行"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
1924
    </c-col>
liushikai committed
1925

潘际乾 committed
1926
    <c-col :span="11" :offset="1">
liushikai committed
1927 1928 1929 1930 1931 1932 1933 1934 1935
      <el-form-item label="Address Block">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.snd.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入Address Block"
        ></c-input>
      </el-form-item>
潘际乾 committed
1936
    </c-col>
liushikai committed
1937

潘际乾 committed
1938
    <c-col :span="11">
liushikai committed
1939 1940 1941 1942 1943 1944 1945 1946 1947
      <el-form-item label="Chinese address">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.snd.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入Chinese address"
        ></c-input>
      </el-form-item>
潘际乾 committed
1948
    </c-col>
liushikai committed
1949

潘际乾 committed
1950
    <c-col :span="11" :offset="1">
liushikai committed
1951 1952 1953 1954 1955 1956 1957
      <el-form-item label="Name of Party">
        <c-input
          v-model="model.cpdgrp.snd.pts.nam"
          maxlength="40"
          placeholder="请输入Name of Party"
        ></c-input>
      </el-form-item>
潘际乾 committed
1958
    </c-col>
liushikai committed
1959

潘际乾 committed
1960
    <c-col :span="11" :offset="1">
liushikai committed
1961 1962 1963 1964 1965 1966 1967
      <el-form-item label="接收行行号">
        <c-input
          v-model="model.cptp.resbch"
          maxlength="12"
          placeholder="请输入接收行行号"
        ></c-input>
      </el-form-item>
潘际乾 committed
1968
    </c-col>
liushikai committed
1969

潘际乾 committed
1970
    <c-col :span="8" :offset="3">
liushikai committed
1971
      <c-checkbox v-model="model.cptp.flg">电汇凭证</c-checkbox>
潘际乾 committed
1972
    </c-col>
liushikai committed
1973

潘际乾 committed
1974
    <c-col :span="11" :offset="1">
liushikai committed
1975 1976 1977 1978 1979 1980 1981 1982 1983
      <el-form-item label="付款人地址">
        <c-input
          type="textarea"
          v-model="model.cptp.orcadr"
          maxlength="40"
          show-word-limit
          placeholder="请输入付款人地址"
        ></c-input>
      </el-form-item>
潘际乾 committed
1984
    </c-col>
liushikai committed
1985

潘际乾 committed
1986
    <c-col :span="11">
liushikai committed
1987 1988 1989 1990 1991 1992
      <el-form-item label="Drag  Drop Sender">
        <c-input
          v-model="model.cptp.orip.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
潘际乾 committed
1993
    </c-col>
liushikai committed
1994

潘际乾 committed
1995
    <c-col :span="11" :offset="1">
liushikai committed
1996 1997 1998 1999 2000 2001 2002
      <el-form-item label="External Key of Address">
        <c-input
          v-model="model.cpdgrp.ori.pts.extkey"
          maxlength="16"
          placeholder="请输入External Key of Address"
        ></c-input>
      </el-form-item>
潘际乾 committed
2003
    </c-col>
liushikai committed
2004

潘际乾 committed
2005
    <c-col :span="9">
liushikai committed
2006 2007 2008 2009 2010 2011
      <el-form-item label="">
        <c-input
          v-model="model.cptp.orip.ptsget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
潘际乾 committed
2012
    </c-col>
liushikai committed
2013

潘际乾 committed
2014
    <c-col :span="2" :offset="1">
liushikai committed
2015 2016 2017
      <c-button size="small" type="primary" @click="onOripDet">
        Details
      </c-button>
潘际乾 committed
2018
    </c-col>
liushikai committed
2019

潘际乾 committed
2020
    <c-col :span="11">
liushikai committed
2021 2022 2023 2024 2025 2026 2027
      <el-form-item label="清算代理行账号">
        <c-input
          v-model="model.cptp.coract"
          maxlength="32"
          placeholder="请输入清算代理行账号"
        ></c-input>
      </el-form-item>
潘际乾 committed
2028
    </c-col>
liushikai committed
2029

潘际乾 committed
2030
    <c-col :span="11">
liushikai committed
2031 2032 2033 2034 2035 2036 2037 2038 2039
      <el-form-item label="收款�'接参与者名称">
        <c-input
          type="textarea"
          v-model="model.cptp.reconebchnam"
          maxlength="35"
          show-word-limit
          placeholder="请输入收款�'接参与者名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
2040
    </c-col>
liushikai committed
2041

潘际乾 committed
2042
    <c-col :span="11" :offset="1">
liushikai committed
2043 2044 2045 2046 2047 2048 2049 2050
      <el-form-item label="业务种类">
        <c-select
          v-model="model.cptp.bustyp"
          style="width: 100%"
          placeholder="请选择业务种类"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
2051
    </c-col>
liushikai committed
2052

潘际乾 committed
2053
    <c-col :span="11">
liushikai committed
2054 2055 2056 2057 2058 2059 2060 2061 2062
      <el-form-item label="地址">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.snd.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
潘际乾 committed
2063
    </c-col>
liushikai committed
2064

潘际乾 committed
2065
    <c-col :span="11" :offset="1">
liushikai committed
2066 2067 2068 2069 2070 2071 2072 2073 2074
      <el-form-item label="名称">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.ori.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
2075
    </c-col>
liushikai committed
2076

潘际乾 committed
2077
    <c-col :span="11">
liushikai committed
2078 2079 2080 2081 2082 2083 2084 2085 2086
      <el-form-item label="Address Block">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.ori.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入Address Block"
        ></c-input>
      </el-form-item>
潘际乾 committed
2087
    </c-col>
liushikai committed
2088

潘际乾 committed
2089
    <c-col :span="11" :offset="1">
liushikai committed
2090 2091 2092 2093 2094 2095 2096 2097 2098
      <el-form-item label="Chinese address">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.ori.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入Chinese address"
        ></c-input>
      </el-form-item>
潘际乾 committed
2099
    </c-col>
liushikai committed
2100 2101 2102

    

潘际乾 committed
2103
    <c-col :span="11">
liushikai committed
2104 2105 2106 2107 2108 2109 2110 2111 2112
      <el-form-item label="收款人名称">
        <c-input
          type="textarea"
          v-model="model.cptp.pyenam"
          maxlength="40"
          show-word-limit
          placeholder="请输入收款人名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
2113
    </c-col>
liushikai committed
2114 2115 2116

    

潘际乾 committed
2117
    <c-col :span="24">
liushikai committed
2118
      <span v-text="model.cptp.seclab" data-path=".cptp.seclab"> </span>
潘际乾 committed
2119
    </c-col>
liushikai committed
2120

潘际乾 committed
2121
    <c-col :span="11">
liushikai committed
2122 2123 2124 2125 2126 2127 2128 2129 2130
      <el-form-item label="Content of TAG 70">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.blk.contag70"
          maxlength="35"
          show-word-limit
          placeholder="请输入Content of TAG 70"
        ></c-input>
      </el-form-item>
潘际乾 committed
2131
    </c-col>
liushikai committed
2132

潘际乾 committed
2133
    <c-col :span="11" :offset="1">
liushikai committed
2134 2135 2136 2137 2138 2139 2140 2141 2142
      <el-form-item label="地址">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.ori.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
潘际乾 committed
2143
    </c-col>
liushikai committed
2144 2145 2146

    

潘际乾 committed
2147
    <c-col :span="11" :offset="1">
liushikai committed
2148 2149 2150 2151 2152 2153 2154
      <el-form-item label="收款人开户行名称">
        <c-input
          v-model="model.cptp.pyebchnam"
          maxlength="38"
          placeholder="请输入收款人开户行名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
2155
    </c-col>
liushikai committed
2156

潘际乾 committed
2157
    <c-col :span="11">
liushikai committed
2158 2159 2160 2161 2162 2163 2164 2165
      <el-form-item label="二代模式">
        <c-select
          v-model="model.cptp.secmod"
          style="width: 100%"
          placeholder="请选择二代模式"
        >
        </c-select>
      </el-form-item>
潘际乾 committed
2166
    </c-col>
liushikai committed
2167

潘际乾 committed
2168
    <c-col :span="11" :offset="1">
liushikai committed
2169 2170 2171 2172 2173 2174 2175 2176 2177
      <el-form-item label="收款人地址">
        <c-input
          type="textarea"
          v-model="model.cptp.pyeadr"
          maxlength="40"
          show-word-limit
          placeholder="请输入收款人地址"
        ></c-input>
      </el-form-item>
潘际乾 committed
2178
    </c-col>
liushikai committed
2179 2180 2181

    

潘际乾 committed
2182
    <c-col :span="11">
liushikai committed
2183 2184 2185 2186 2187 2188 2189 2190 2191
      <el-form-item label="附言">
        <c-input
          type="textarea"
          v-model="model.cptp.commet"
          maxlength="35"
          show-word-limit
          placeholder="请输入附言"
        ></c-input>
      </el-form-item>
潘际乾 committed
2192
    </c-col>
liushikai committed
2193

潘际乾 committed
2194
    <c-col :span="11" :offset="1">
liushikai committed
2195 2196 2197 2198 2199 2200 2201
      <el-form-item label="收款人">
        <c-input
          v-model="model.cpdgrp.pye.pts.ref"
          maxlength="16"
          placeholder="请输入收款人"
        ></c-input>
      </el-form-item>
潘际乾 committed
2202
    </c-col>
liushikai committed
2203 2204 2205 2206 2207

    

    

潘际乾 committed
2208
    <c-col :span="11" :offset="1">
liushikai committed
2209 2210 2211 2212 2213 2214
      <el-form-item label="Drag  Drop Sender">
        <c-input
          v-model="model.cptp.orcp.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
潘际乾 committed
2215
    </c-col>
liushikai committed
2216

潘际乾 committed
2217
    <c-col :span="11">
liushikai committed
2218 2219 2220 2221 2222 2223 2224
      <el-form-item label="External Key of Address">
        <c-input
          v-model="model.cpdgrp.orc.pts.extkey"
          maxlength="16"
          placeholder="请输入External Key of Address"
        ></c-input>
      </el-form-item>
潘际乾 committed
2225
    </c-col>
liushikai committed
2226

潘际乾 committed
2227
    <c-col :span="9" :offset="1">
liushikai committed
2228 2229 2230 2231 2232 2233
      <el-form-item label="">
        <c-input
          v-model="model.cptp.orcp.ptsget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
潘际乾 committed
2234
    </c-col>
liushikai committed
2235

潘际乾 committed
2236
    <c-col :span="2" :offset="1">
liushikai committed
2237 2238 2239
      <c-button size="small" type="primary" @click="onOrcpDet">
        Details
      </c-button>
潘际乾 committed
2240
    </c-col>
liushikai committed
2241

潘际乾 committed
2242
    <c-col :span="11" :offset="12">
liushikai committed
2243 2244 2245 2246 2247 2248
      <el-form-item label="Drag  Drop Sender">
        <c-input
          v-model="model.cptp.pyep.ptsget.sdamod.dadsnd"
          placeholder="请输入Drag  Drop Sender"
        ></c-input>
      </el-form-item>
潘际乾 committed
2249
    </c-col>
liushikai committed
2250

潘际乾 committed
2251
    <c-col :span="11">
liushikai committed
2252 2253 2254 2255 2256 2257 2258
      <el-form-item label="External Key of Address">
        <c-input
          v-model="model.cpdgrp.pye.pts.extkey"
          maxlength="16"
          placeholder="请输入External Key of Address"
        ></c-input>
      </el-form-item>
潘际乾 committed
2259
    </c-col>
liushikai committed
2260

潘际乾 committed
2261
    <c-col :span="8" :offset="1">
liushikai committed
2262 2263 2264 2265 2266 2267
      <el-form-item label="">
        <c-input
          v-model="model.cptp.pyep.ptsget.sdamod.seainf"
          placeholder="请输入"
        ></c-input>
      </el-form-item>
潘际乾 committed
2268
    </c-col>
liushikai committed
2269

潘际乾 committed
2270
    <c-col :span="1" style="margin-left: 10px">
liushikai committed
2271 2272 2273
      <c-button size="small" type="primary" @click="onPyepDet">
        Details
      </c-button>
潘际乾 committed
2274
    </c-col>
liushikai committed
2275

潘际乾 committed
2276
    <c-col :span="1" style="margin-left: 20px">
liushikai committed
2277 2278 2279
      <c-button size="small" type="primary" @click="onCptpSerpty">
        查询客户号
      </c-button>
潘际乾 committed
2280
    </c-col>
liushikai committed
2281

潘际乾 committed
2282
    <c-col :span="11">
liushikai committed
2283 2284 2285 2286 2287 2288 2289 2290 2291
      <el-form-item label="名称">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.orc.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
2292
    </c-col>
liushikai committed
2293

潘际乾 committed
2294
    <c-col :span="11" :offset="1">
liushikai committed
2295 2296 2297 2298 2299 2300 2301 2302 2303
      <el-form-item label="Address Block">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.orc.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入Address Block"
        ></c-input>
      </el-form-item>
潘际乾 committed
2304
    </c-col>
liushikai committed
2305

潘际乾 committed
2306
    <c-col :span="11">
liushikai committed
2307 2308 2309 2310 2311 2312 2313 2314 2315
      <el-form-item label="Chinese address">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.orc.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入Chinese address"
        ></c-input>
      </el-form-item>
潘际乾 committed
2316
    </c-col>
liushikai committed
2317

潘际乾 committed
2318
    <c-col :span="11" :offset="1">
liushikai committed
2319 2320 2321 2322 2323 2324 2325 2326 2327
      <el-form-item label="名称">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.pye.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入名称"
        ></c-input>
      </el-form-item>
潘际乾 committed
2328
    </c-col>
liushikai committed
2329

潘际乾 committed
2330
    <c-col :span="11">
liushikai committed
2331 2332 2333 2334 2335 2336 2337 2338 2339
      <el-form-item label="Address Block">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.pye.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入Address Block"
        ></c-input>
      </el-form-item>
潘际乾 committed
2340
    </c-col>
liushikai committed
2341

潘际乾 committed
2342
    <c-col :span="11" :offset="1">
liushikai committed
2343 2344 2345 2346 2347 2348 2349 2350 2351
      <el-form-item label="Chinese address">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.pye.dbfadrblkcn"
          maxlength="35"
          show-word-limit
          placeholder="请输入Chinese address"
        ></c-input>
      </el-form-item>
潘际乾 committed
2352
    </c-col>
liushikai committed
2353

潘际乾 committed
2354
    <c-col :span="11">
liushikai committed
2355 2356 2357 2358 2359 2360 2361 2362 2363
      <el-form-item label="地址">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.orc.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
潘际乾 committed
2364
    </c-col>
liushikai committed
2365

潘际乾 committed
2366
    <c-col :span="11" :offset="1">
liushikai committed
2367 2368 2369 2370 2371 2372 2373 2374 2375
      <el-form-item label="地址">
        <c-input
          type="textarea"
          v-model="model.cpdgrp.pye.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入地址"
        ></c-input>
      </el-form-item>
潘际乾 committed
2376
    </c-col> -->
2377

2378 2379 2380 2381 2382 2383
    <el-dialog
      :fullscreen="true"
      :visible.sync="infptaVisible"
      top="10vh"
      width="80%"
      custom-class="infptaDialog"
liushikai committed
2384 2385
      :before-close="handleClose"
    >
2386 2387
      <Infpta></Infpta>
    </el-dialog>
2388 2389 2390
  </div>
</template>
<script>
liushikai committed
2391 2392
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
2393
import CommonProcess from "~/mixin/CommonProcess";
liushikai committed
2394
import Event from "~/model/Cptopn/Event";
liushikai committed
2395
import Utils from "~/utils";
liushikai committed
2396
import Infpta from "~/views/Business/Infpta";
2397 2398

export default {
2399
  inject: ["root"],
liushikai committed
2400
  props: ["model", "codes"],
liushikai committed
2401
  components: { Infpta },
2402
  mixins: [CommonProcess],
liushikai committed
2403 2404
  data() {
    return {
liushikai committed
2405 2406 2407 2408 2409
      trntyp: [
        { value: "0", label: "贸易" },
        { value: "1", label: "非贸易" },
        { value: "2", label: "资本" },
        { value: "3", label: "其他" },
liushikai committed
2410
      ],
liushikai committed
2411 2412 2413 2414 2415
      liqtypOptions: [
        { value: "B", label: "人行支付系统" },
        { value: "C", label: "代理行模式" },
        { value: "O", label: "Other" },
        { value: "S", label: "CIPS系统" },
2416
      ],
liushikai committed
2417
      infptaVisible: false,
liushikai committed
2418 2419
    };
  },
liushikai committed
2420 2421
  methods: {
    ...Event,
liushikai committed
2422 2423
    onCptpGetInfpta() {
      this.infptaVisible = true;
2424
    },
liushikai committed
2425 2426
    onCptpGetref() {},
    onCptpGetmod() {},
2427 2428
    handleClose(done) {
      done();
liushikai committed
2429
    },
2430
  },
liushikai committed
2431
  created: function () {},
2432 2433 2434 2435 2436
  computed: {
    flag() {
      return this.model.cpdgrp.orc.pts.extkey == "" || this.model.cpdgrp.rec.ownref != "";
    },
  },
liushikai committed
2437
};
2438 2439
</script>
<style>
2440 2441 2442
/* .infptaDialog {
  height: 80%;
} */
2443
</style>