Pardet.vue 24 KB
Newer Older
1
<template>
2 3 4 5 6 7 8 9 10 11 12 13
  <div class="eibs-tab">
    <!-- ===============左边================ -->
    <c-col :span="11">
      <c-col :span="24">
        <el-form-item label="汇款人开户行" prop="cpdgrp.ori.pts.ref">
          <c-input
            v-model="model.cpdgrp.ori.pts.ref"
            maxlength="16"
            placeholder="请输入汇款人开户行"
          ></c-input>
        </el-form-item>
      </c-col>
14

15 16 17 18 19 20 21 22 23
      <c-col :span="24">
        <el-form-item label="账号" prop="attp.atd.sbkact">
          <c-input
            v-model="model.attp.atd.sbkact"
            maxlength="35"
            placeholder="请输入收款人开户行帐号"
          ></c-input>
        </el-form-item>
      </c-col>
24

25 26 27 28 29 30 31 32 33 34
      <c-col :span="24">
        <c-fullbox>
          <el-form-item
            label="External Key of Address"
            prop="cpdgrp.ori.pts.extkey"
          >
            <c-input
              v-model="model.cpdgrp.ori.pts.extkey"
              maxlength="16"
              placeholder="请输入External Key of Address"
35 36 37
              @keyup.enter.native="
                showGridPromptDialog('attp.atd.sbkact')
               "
38 39 40 41 42 43 44 45 46 47
            ></c-input>
          </el-form-item>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
              icon="el-icon-search"
            >
            </c-button>
48

49 50 51 52 53 54 55 56 57 58 59 60
            <c-button
              style="margin: 0 0"
              size="small"
              type="primary"
              @click="onSndpDet"
              disabled
            >
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>
61

62 63 64 65 66 67 68 69 70 71 72 73 74 75
      <c-col :span="24">
        <el-form-item label="Address Block" prop="cpdgrp.ori.pts.adrblk">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.ori.pts.adrblk"
            maxlength="35"
            show-word-limit
            placeholder="请输入Address Block"
            rows="4"
          ></c-input>
        </el-form-item>
      </c-col>

      <!-- <c-col :span="24">
76
                <el-form-item label="名称" prop="cpdgrp.ori.namelc">
77 78 79 80 81 82 83
                    <c-input
                    type="textarea"
                    v-model="model.cpdgrp.ori.namelc"
                    maxlength="35"
                    show-word-limit
                    placeholder="请输入名称"
                    ></c-input>
84
                </el-form-item>
85
            </c-col> -->
86

87
      <!-- <c-col :span="24">
88
                <el-form-item label="Address Block" prop="cpdgrp.pyb.pts.adrblk">
89 90 91 92 93 94 95
                    <c-input
                    type="textarea"
                    v-model="model.cpdgrp.pyb.pts.adrblk"
                    maxlength="35"
                    show-word-limit
                    placeholder="请输入Address Block"
                    ></c-input>
96 97 98 99 100
                </el-form-item>
            </c-col>

            <c-col :span="24">
                <el-form-item label="地址" prop="cpdgrp.ori.adrelc">
101 102 103 104 105 106 107
                    <c-input
                    type="textarea"
                    v-model="model.cpdgrp.ori.adrelc"
                    maxlength="35"
                    show-word-limit
                    placeholder="请输入地址"
                    ></c-input>
108
                </el-form-item>
109
            </c-col> -->
110

111 112 113 114 115 116 117 118 119 120
      <c-col :span="24">
        <c-fullbox>
          <el-form-item
            label="External Key of Address"
            prop="cpdgrp.med.pts.extkey"
          >
            <c-input
              v-model="model.cpdgrp.med.pts.extkey"
              maxlength="16"
              placeholder="请输入External Key of Address"
121 122 123
              @keyup.enter.native="
                showGridPromptDialog('cpdgrp.med.pts.extkey')
               "
124 125 126 127 128 129 130 131 132 133
            ></c-input>
          </el-form-item>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
              icon="el-icon-search"
            >
            </c-button>
134

135 136 137 138 139 140 141 142 143 144 145 146
            <c-button
              style="margin: 0 0"
              size="small"
              type="primary"
              @click="onSndpDet"
              disabled
            >
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>
147

148 149 150 151 152 153 154 155 156 157 158 159
      <c-col :span="24">
        <el-form-item label="Address Block" prop="cpdgrp.med.pts.adrblk">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.med.pts.adrblk"
            maxlength="35"
            show-word-limit
            placeholder="请输入Address Block"
            rows="4"
          ></c-input>
        </el-form-item>
      </c-col>
160

161 162 163 164 165 166 167 168 169 170
      <c-col :span="24">
        <c-fullbox>
          <el-form-item
            label="External Key of Address"
            prop="cpdgrp.rmt.pts.extkey"
          >
            <c-input
              v-model="model.cpdgrp.rmt.pts.extkey"
              maxlength="16"
              placeholder="请输入External Key of Address"
171 172 173
              @keyup.enter.native="
                showGridPromptDialog('cpdgrp.rmt.pts.extkey')
               "
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
            ></c-input>
          </el-form-item>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
              icon="el-icon-search"
            >
            </c-button>
            <c-button
              style="margin: 0 0"
              size="small"
              type="primary"
              @click="onSndpDet"
              disabled
            >
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>
196

197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
      <c-col :span="24">
        <el-form-item label="Address Block" prop="cpdgrp.rmt.pts.adrblk">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.rmt.pts.adrblk"
            maxlength="35"
            show-word-limit
            placeholder="请输入Address Block"
            rows="4"
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
    <!-- =================右边=============== -->
    <c-col :span="11" :offset="1">
      <c-col :span="24">
        <el-form-item label="收款人开户行" prop="cpdgrp.pyb.pts.ref">
          <c-input
            v-model="model.cpdgrp.pyb.pts.ref"
            maxlength="16"
            placeholder="请输入收款人开户行"
          ></c-input>
        </el-form-item>
      </c-col>
221

222 223 224 225 226 227 228 229 230
      <c-col :span="24">
        <el-form-item label="帐号" prop="attp.atd.rbkact">
          <c-input
            v-model="model.attp.atd.rbkact"
            maxlength="35"
            placeholder="请输入汇款人开户行帐号"
          ></c-input>
        </el-form-item>
      </c-col>
231

232 233 234 235 236 237 238 239 240 241 242
      <!-- <c-col :span="24">
            <el-form-item
                label="Drag  Drop Sender"
                prop="attp.pybp.ptsget.sdamod.dadsnd"
            >
                <c-input
                v-model="model.attp.pybp.ptsget.sdamod.dadsnd"
                placeholder="请输入Drag  Drop Sender"
                ></c-input>
            </el-form-item>
            </c-col> -->
243

244 245 246 247 248 249 250 251 252 253
      <c-col :span="24">
        <c-fullbox>
          <el-form-item
            label="External Key of Address"
            prop="cpdgrp.pyb.pts.extkey"
          >
            <c-input
              v-model="model.cpdgrp.pyb.pts.extkey"
              maxlength="16"
              placeholder="请输入External Key of Address"
254 255 256
              @keyup.enter.native="
                showGridPromptDialog('cpdgrp.pyd.pts.extkey')
               "
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
            ></c-input>
          </el-form-item>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
              icon="el-icon-search"
            >
            </c-button>
            <!-- </c-col> -->
            <!-- <c-col :span="12"> -->
            <c-button
              style="margin: 0 0"
              size="small"
              type="primary"
              @click="onSndpDet"
              disabled
            >
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>
281

282 283 284 285 286 287 288 289 290 291 292
      <c-col :span="24">
        <el-form-item label="Address Block" prop="cpdgrp.pyb.pts.adrblk">
            <c-input type="textarea" 
                v-model="model.cpdgrp.pyb.pts.adrblk" 
                maxlength="35" 
                show-word-limit 
                placeholder="请输入Address Block"
                rows="4"
             ></c-input>
        </el-form-item>
      </c-col>
293

294 295 296 297 298 299 300 301 302 303 304
      <!-- <c-col :span="24">
        <el-form-item label="名称" prop="cpdgrp.pyb.namelc">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.pyb.namelc"
            maxlength="35"
            show-word-limit
            placeholder="请输入名称"
          ></c-input>
        </el-form-item>
      </c-col>
305

306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
      <c-col :span="24">
        <el-form-item label="Chinese address" prop="cpdgrp.ori.dbfadrblkcn">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.ori.dbfadrblkcn"
            maxlength="35"
            show-word-limit
            placeholder="请输入Chinese address"
          ></c-input>
        </el-form-item>
      </c-col> -->
        <c-col :span="24">
                <el-form-item label="附言" prop="attp.commet">
                <c-input
                    type="textarea"
                    v-model="model.attp.commet"
                    maxlength="35"
                    show-word-limit
                    placeholder="请输入附言"
                    rows="4"
326
                    disabled
327
                ></c-input>
328
                </el-form-item>
329
        </c-col>
330

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
        <c-col :span="24">
        <el-form-item
          label="Account with Institution / Account (Tag 57a)"
          prop="attp.com102"
        >
          <c-input
            type="textarea"
            v-model="model.attp.com102"
            maxlength="35"
            show-word-limit
            placeholder="请输入Account with Institution / Account (Tag 57a)"
            rows="4"
          ></c-input>
        </el-form-item>
      </c-col>
346

347 348 349 350 351 352 353 354 355
      <c-col :span="24">
        <el-form-item label="受益行" prop="attp.shouyh">
          <c-input
            type="textarea"
            v-model="model.attp.shouyh"
            maxlength="30"
            show-word-limit
            placeholder="请输入受益行"
            rows="4"
356
            disabled
357 358 359 360
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
361

362 363 364 365 366 367 368 369 370 371 372
      <!-- <c-col :span="24">
        <el-form-item label="Chinese address" prop="cpdgrp.pyb.dbfadrblkcn">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.pyb.dbfadrblkcn"
            maxlength="35"
            show-word-limit
            placeholder="请输入Chinese address"
          ></c-input>
        </el-form-item>
      </c-col>
373

374 375 376 377 378 379 380 381 382 383 384
      <c-col :span="24">
        <el-form-item label="地址" prop="cpdgrp.pyb.adrelc">
          <c-input
            type="textarea"
            v-model="model.cpdgrp.pyb.adrelc"
            maxlength="35"
            show-word-limit
            placeholder="请输入地址"
          ></c-input>
        </el-form-item>
      </c-col>
385

386 387 388 389
      <c-col :span="24">
        <c-col :span="12">
          <span v-text="model.attp.commetlab" data-path=".attp.commetlab">
          </span>
390
        </c-col>
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411

        <c-col :span="12">
          <el-form-item label="自�'�区备注" prop="attp.comsystbl">
            <c-select
              v-model="model.attp.comsystbl"
              style="width: 100%"
              placeholder="请选择自�'�区备注"
            >
            </c-select>
          </el-form-item>
        </c-col>
      </c-col> -->

      

      

      

    <!--   ==========================原码================================  -->
    <!-- <c-col :span="11">
412 413 414
        <el-form-item label="汇款人开户行" prop="cpdgrp.ori.pts.ref">
            <c-input  v-model="model.cpdgrp.ori.pts.ref" maxlength="16"  placeholder="请输入汇款人开户行"></c-input>
        </el-form-item>
415 416 417
        </c-col>
                                    
        <c-col :span="11">
418 419 420
        <el-form-item label="收款人开户行" prop="cpdgrp.pyb.pts.ref">
            <c-input  v-model="model.cpdgrp.pyb.pts.ref" maxlength="16"  placeholder="请输入收款人开户行"></c-input>
        </el-form-item>
421 422 423
        </c-col>
                    
        <c-col :span="12">
424 425 426
        <el-form-item label="收款人开户行帐号" prop="attp.atd.rbkact">
            <c-input  v-model="model.attp.atd.rbkact" maxlength="35"  placeholder="请输入收款人开户行�'�号"></c-input>
        </el-form-item>
427 428 429
        </c-col>
                    
        <c-col :span="12">
430 431 432
        <el-form-item label="汇款人开户行帐号" prop="attp.atd.sbkact">
            <c-input  v-model="model.attp.atd.sbkact" maxlength="35"  placeholder="请输入汇款人开户行�'�号"></c-input>
        </el-form-item>
433
        </c-col>
434
                                                    
435
        <c-col :span="12">
436 437 438
        <el-form-item label="Drag  Drop Sender" prop="attp.orip.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.attp.orip.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
439 440 441
        </c-col>
                    
        <c-col :span="12">
442 443 444
        <el-form-item label="Drag  Drop Sender" prop="attp.pybp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.attp.pybp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
445 446 447
        </c-col>
                    
        <c-col :span="12">
448 449 450
        <el-form-item label="External Key of Address" prop="cpdgrp.ori.pts.extkey">
            <c-input  v-model="model.cpdgrp.ori.pts.extkey" maxlength="16"  placeholder="请输入External Key of Address"></c-input>
        </el-form-item>
451 452 453
        </c-col>
                    
        <c-col :span="12">
454 455 456
        <el-form-item label="" prop="attp.orip.ptsget.sdamod.seainf">
            <c-input  v-model="model.attp.orip.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
457 458 459
        </c-col>
                    
        <c-col :span="12">
460 461 462
        <c-button size="small" type="primary"  @click="onOripDet">
            Details
        </c-button>
463 464 465
        </c-col>
                    
        <c-col :span="12">
466 467 468
        <el-form-item label="External Key of Address" prop="cpdgrp.pyb.pts.extkey">
            <c-input  v-model="model.cpdgrp.pyb.pts.extkey" maxlength="16"  placeholder="请输入External Key of Address"></c-input>
        </el-form-item>
469 470 471
        </c-col>
                    
        <c-col :span="12">
472 473 474
        <el-form-item label="" prop="attp.pybp.ptsget.sdamod.seainf">
            <c-input  v-model="model.attp.pybp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
475 476 477
        </c-col>
                    
        <c-col :span="12">
478 479 480
        <c-button size="small" type="primary"  @click="onPybpDet">
            Details
        </c-button>
481 482 483
        </c-col>
                    
        <c-col :span="12">
484 485 486 487
        <el-form-item label="名称" prop="cpdgrp.ori.namelc">
            <c-input type="textarea" v-model="model.cpdgrp.ori.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
488 489
                    
        <c-col :span="12">
490 491 492 493
        <el-form-item label="名称" prop="cpdgrp.pyb.namelc">
            <c-input type="textarea" v-model="model.cpdgrp.pyb.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
494 495
                    
        <c-col :span="12">
496 497 498 499
        <el-form-item label="Address Block" prop="cpdgrp.ori.pts.adrblk">
            <c-input type="textarea" v-model="model.cpdgrp.ori.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
500 501
                    
        <c-col :span="12">
502 503 504 505
        <el-form-item label="Chinese address" prop="cpdgrp.ori.dbfadrblkcn">
            <c-input type="textarea" v-model="model.cpdgrp.ori.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
506 507
                    
        <c-col :span="12">
508 509 510 511
        <el-form-item label="Address Block" prop="cpdgrp.pyb.pts.adrblk">
            <c-input type="textarea" v-model="model.cpdgrp.pyb.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
512 513
                    
        <c-col :span="12">
514 515 516 517
        <el-form-item label="Chinese address" prop="cpdgrp.pyb.dbfadrblkcn">
            <c-input type="textarea" v-model="model.cpdgrp.pyb.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
518 519
                    
        <c-col :span="12">
520 521 522 523
        <el-form-item label="地址" prop="cpdgrp.ori.adrelc">
            <c-input type="textarea" v-model="model.cpdgrp.ori.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col>
524 525
                    
        <c-col :span="12">
526 527 528 529
        <el-form-item label="地址" prop="cpdgrp.pyb.adrelc">
            <c-input type="textarea" v-model="model.cpdgrp.pyb.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col>
530
                    
531 532 533
        <c-col :span="12">
            <span  v-text="model.attp.commetlab"   data-path=".attp.commetlab" > </span>
        </c-col>
534 535
                    
        <c-col :span="12">
536 537
        <el-form-item label="自�'�区备注" prop="attp.comsystbl">
            <c-select v-model="model.attp.comsystbl" style="width:100%" placeholder="请选择自�'�区备注">
538
                </c-select>
539
        </el-form-item>
540 541
        </c-col>
                                    
542 543 544
        <c-col :span="12">
            <span  v-text="model.attp.comlab"   data-path=".attp.comlab" > </span>
        </c-col>
545 546
                                    
        <c-col :span="12">
547 548 549
        <el-form-item label="Drag  Drop Sender" prop="attp.medp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.attp.medp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
550 551 552
        </c-col>
                    
        <c-col :span="12">
553 554 555
        <el-form-item label="External Key of Address" prop="cpdgrp.med.pts.extkey">
            <c-input  v-model="model.cpdgrp.med.pts.extkey" maxlength="16"  placeholder="请输入External Key of Address"></c-input>
        </el-form-item>
556 557 558
        </c-col>
                    
        <c-col :span="12">
559 560 561
        <el-form-item label="" prop="attp.medp.ptsget.sdamod.seainf">
            <c-input  v-model="model.attp.medp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
562 563 564
        </c-col>
                    
        <c-col :span="12">
565 566 567
        <c-button size="small" type="primary"  @click="onMedpDet">
            Details
        </c-button>
568 569 570
        </c-col>
                    
        <c-col :span="12">
571 572 573 574
        <el-form-item label="附言" prop="attp.commet">
            <c-input type="textarea" v-model="model.attp.commet" maxlength="35" show-word-limit placeholder="请输入附言" ></c-input>
        </el-form-item>
        </c-col>
575 576
                    
        <c-col :span="12">
577 578 579 580
        <el-form-item label="名称" prop="cpdgrp.med.namelc">
            <c-input type="textarea" v-model="model.cpdgrp.med.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
581 582
                    
        <c-col :span="12">
583 584 585 586
        <el-form-item label="Address Block" prop="cpdgrp.med.pts.adrblk">
            <c-input type="textarea" v-model="model.cpdgrp.med.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
587 588
                    
        <c-col :span="12">
589 590 591 592
        <el-form-item label="Chinese address" prop="cpdgrp.med.dbfadrblkcn">
            <c-input type="textarea" v-model="model.cpdgrp.med.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
593 594
                    
        <c-col :span="12">
595 596 597 598
        <el-form-item label="地址" prop="cpdgrp.med.adrelc">
            <c-input type="textarea" v-model="model.cpdgrp.med.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col>
599 600
                                    
        <c-col :span="12">
601 602 603 604
        <el-form-item label="Account with Institution / Account (Tag 57a)" prop="attp.com102">
            <c-input type="textarea" v-model="model.attp.com102" maxlength="35" show-word-limit placeholder="请输入Account with Institution / Account (Tag 57a)" ></c-input>
        </el-form-item>
        </c-col>
605 606
                                    
        <c-col :span="12">
607 608 609
        <el-form-item label="Drag  Drop Sender" prop="attp.rmtp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.attp.rmtp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
610 611 612
        </c-col>
                    
        <c-col :span="12">
613 614 615
        <el-form-item label="External Key of Address" prop="cpdgrp.rmt.pts.extkey">
            <c-input  v-model="model.cpdgrp.rmt.pts.extkey" maxlength="16"  placeholder="请输入External Key of Address"></c-input>
        </el-form-item>
616 617 618
        </c-col>
                    
        <c-col :span="12">
619 620 621
        <el-form-item label="" prop="attp.rmtp.ptsget.sdamod.seainf">
            <c-input  v-model="model.attp.rmtp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
622 623 624
        </c-col>
                    
        <c-col :span="12">
625 626 627
        <c-button size="small" type="primary"  @click="onRmtpDet">
            Details
        </c-button>
628 629 630
        </c-col>
                    
        <c-col :span="12">
631 632 633 634
        <el-form-item label="名称" prop="cpdgrp.rmt.namelc">
            <c-input type="textarea" v-model="model.cpdgrp.rmt.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
635 636
                    
        <c-col :span="12">
637 638 639 640
        <el-form-item label="Address Block" prop="cpdgrp.rmt.pts.adrblk">
            <c-input type="textarea" v-model="model.cpdgrp.rmt.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
641 642
                    
        <c-col :span="12">
643 644 645 646
        <el-form-item label="Chinese address" prop="cpdgrp.rmt.dbfadrblkcn">
            <c-input type="textarea" v-model="model.cpdgrp.rmt.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
647 648
                                    
        <c-col :span="12">
649 650 651 652
        <el-form-item label="地址" prop="cpdgrp.rmt.adrelc">
            <c-input type="textarea" v-model="model.cpdgrp.rmt.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col>
653 654
                    
        <c-col :span="12">
655 656 657 658
        <el-form-item label="受益行" prop="attp.shouyh">
            <c-input type="textarea" v-model="model.attp.shouyh" maxlength="30" show-word-limit placeholder="请输入受益行" ></c-input>
        </el-form-item>
        </c-col> -->
659
  </div>
660 661
</template>
<script>
662
import Api from "~/service/Api";
663
import commonProcess from "~/mixin/commonProcess";
664 665
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptato/Event";
666 667

export default {
668 669 670 671 672 673 674 675 676
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
677 678 679
</script>
<style>
</style>