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

liuxin committed
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
            <c-col :span="24">
                <el-form-item label="是否可以转让" prop="dedgrp.rec.lcrtyp">
                    <c-select
                        v-model="model.dedgrp.rec.lcrtyp"
                        style="width: 100%"
                        placeholder="请选择"
                    >
                        <el-option
                            v-for="item in codes.lcrtyp"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
wuziqiang committed
74

liuxin committed
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
            <c-col :span="24">
                <el-form-item
                    label="所属客户经理"
                    prop="detp.usr.extkey"
                    style="width: 100%"
                >
                    <c-fullbox>
                        <c-input
                            v-model="model.detp.usr.extkey"
                            maxlength="8"
                            placeholder="请输入所属客户经理"
                            disabled
                        ></c-input>
                        <template slot="footer">
                            <c-button
                                style="margin-left: 10px; padding: 0 10px"
                                size="small"
                                icon="el-icon-search"
                                type="primary"
                                @click="onExtkey"
                            ></c-button>
                        </template>
                    </c-fullbox>
                </el-form-item>
            </c-col>
wuziqiang committed
100

liuxin committed
101
            <!-- <c-col>
wuziqiang committed
102 103
                &nbsp;
      </c-col> -->
104

liuxin committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
            <c-col :span="13">
                <el-form-item label="信用证金额" prop="dedgrp.cbs.nom1.cur">
                    <c-select
                        disabled
                        v-model="model.dedgrp.cbs.nom1.cur"
                        style="width: 100%"
                        placeholder="请选择Currency"
                        @keyup.enter.native="nom1CurEvent"
                    >
                        <el-option
                            v-for="item in codes.cur"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
wuziqiang committed
124

liuxin committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
            <c-col :span="11">
                <el-form-item
                    style="text-align: left"
                    label-width="5px"
                    prop="dedgrp.cbs.nom1.amt"
                >
                    <c-input-currency
                        v-model="model.dedgrp.cbs.nom1.amt"
                        style="text-align: left; width: 100%"
                        placeholder="请输入信用证金额"
                        @keyup.enter.native="
                            defaultFunction(
                                'dedgrp.cbs.nom1.amt',
                                model.dedgrp.cbs.nom1.amt
                            )
                        "
                    ></c-input-currency>
                </el-form-item>
            </c-col>
144

liuxin committed
145 146 147 148 149 150 151 152 153 154
            <c-col :span="24">
                <el-form-item label="大写金额" prop="detp.upamt">
                    <c-input
                        v-model="model.detp.upamt"
                        maxlength="76"
                        placeholder="请输入大写金额"
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
155

liuxin committed
156
            <!-- <c-col :span="24">
157 158 159 160 161
        <c-col :span="13">
          <el-form-item label="上下浮动限额" prop="dedgrp.rec.nomtop">
            <c-input
              v-model="model.dedgrp.rec.nomtop"
              maxlength="9"
Eivi committed
162
              style="width: 100%"
163 164 165 166 167 168 169 170
              placeholder="请输入Amount Tolerance - Positive"
            ></c-input>
            <label style="display: inline-block; width: 10%; text-align: center"
              >-</label
            >
            <c-input
              v-model="model.dedgrp.rec.nomton"
              maxlength="9"
Eivi committed
171
              style="width: 100%"
172 173 174 175
              placeholder="请输入Amount Tolerance - Negative"
            ></c-input>
          </el-form-item>
        </c-col>
Eivi committed
176 177
      </c-col> -->

liuxin committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
            <c-col :span="24">
                <c-col :span="13">
                    <c-form-item label="上下浮动限额" prop="dedgrp.rec.nomtop">
                        <c-input
                            v-model="model.dedgrp.rec.nomtop"
                            maxlength="9"
                            style="width: 100%"
                            placeholder="请输入Amount Tolerance - Positive"
                        ></c-input>
                    </c-form-item>
                </c-col>
                <c-col :span="1" style="text-align: center">
                    <label
                        style="
                            display: inline-block;
                            width: calc(3% - 4px);
                            text-align: center;
                        "
                        >-</label
                    >
                </c-col>
                <c-col :span="10">
Eivi committed
200
                    <c-input
liuxin committed
201
                        v-model="model.dedgrp.rec.nomton"
Eivi committed
202 203
                        maxlength="9"
                        style="width: 100%"
liuxin committed
204
                        placeholder="请输入Amount Tolerance - Negative"
Eivi committed
205
                    ></c-input>
liuxin committed
206
                </c-col>
Eivi committed
207
            </c-col>
208

liuxin committed
209
            <!-- <c-col :span="12" style="text-align: left">
wuziqiang committed
210 211 212 213 214 215 216 217 218 219 220 221 222 223
        <el-form-item
          label=""
          style="text-align: left; margin-left: 12px"
          label-width="150px"
          prop="dedgrp.rec.nomton"
        >
          <c-input
            v-model="model.dedgrp.rec.nomton"
            maxlength="9"
            placeholder="请输入Amount Tolerance - Negative"
          ></c-input>
        </el-form-item>
        </c-col> -->

liuxin committed
224
            <!-- <c-col> &nbsp; </c-col> -->
wuziqiang committed
225

liuxin committed
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
            <c-col :span="13">
                <el-form-item label="信用证最大金额" prop="dedgrp.cbs.max.cur">
                    <c-select
                        v-model="model.dedgrp.cbs.max.cur"
                        placeholder="请选择Currency"
                        disabled
                    >
                        <el-option
                            v-for="item in codes.cur"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
wuziqiang committed
243

liuxin committed
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
            <c-col :span="11">
                <el-form-item
                    label=""
                    label-width="5px"
                    prop="dedgrp.cbs.max.amt"
                >
                    <c-input
                        v-model="model.dedgrp.cbs.max.amt"
                        placeholder="请输入信用证最大金额"
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>

            <c-col :span="24">
                <el-form-item label="贸易类型" prop="dedgrp.rec.mytype">
                    <c-select
                        v-model="model.dedgrp.rec.mytype"
                        style="width: 100%"
                        placeholder="请选择贸易类型"
                        @change="mytypeChange"
                    >
                        <el-option
                            v-for="item in codes.mytype"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
wuziqiang committed
276

liuxin committed
277
            <!-- <c-col :span="24">
wuziqiang committed
278
        <c-col :span="13">
279 280 281 282 283
          <el-form-item label="开证日期" prop="dedgrp.rec.opndat">
            <c-date-picker
              type="date"
              v-model="model.dedgrp.rec.opndat"
              value-format="yyyy-MM-dd"
Eivi committed
284
              style="width: 100%"
285 286 287
              placeholder="请选择Date"
            ></c-date-picker>
          </el-form-item>
wuziqiang committed
288
        </c-col>
Eivi committed
289
      </c-col> -->
liuxin committed
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
            <c-col :span="24">
                <c-form-item label="开证日期" prop="dedgrp.rec.opndat">
                    <c-date-picker
                        type="date"
                        v-model="model.dedgrp.rec.opndat"
                        value-format="yyyy-MM-dd"
                        placeholder="请选择Date"
                        style="width: 100%"
                    ></c-date-picker>
                </c-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item
                    v-if="model.dedgrp.rec.mytype == 'H'"
                    label="最迟货物装运日"
                    prop="dedgrp.rec.shpdat"
                >
                    <c-date-picker
                        type="date"
                        v-model="model.dedgrp.rec.shpdat"
                        value-format="yyyy-MM-dd"
                        style="width: 100%"
                        placeholder="请选择Date"
                    ></c-date-picker>
                </el-form-item>
                <el-form-item
                    v-if="model.dedgrp.rec.mytype == 'F'"
                    label="最迟服务提供日"
                    prop="dedgrp.rec.shpdat"
                >
                    <c-date-picker
                        type="date"
                        v-model="model.dedgrp.rec.shpdat"
                        value-format="yyyy-MM-dd"
                        style="width: 100%"
                        placeholder="请选择Date"
                    ></c-date-picker>
                </el-form-item>
                <el-form-item
                    label="最迟货物装运日/服务提供日"
                    v-if="model.dedgrp.rec.mytype == '3'"
                    prop="dedgrp.rec.shpdat"
                >
                    <c-date-picker
                        type="date"
                        v-model="model.dedgrp.rec.shpdat"
                        value-format="yyyy-MM-dd"
                        style="width: 100%"
                        placeholder="请选择"
                    ></c-date-picker>
                </el-form-item>
            </c-col>
wuziqiang committed
342

liuxin committed
343
            <!-- <c-col :span="24">
wuziqiang committed
344
        <c-col :span="13">
345 346 347 348 349
          <el-form-item label="有效日期" prop="dedgrp.rec.expdat">
            <c-date-picker
              type="date"
              v-model="model.dedgrp.rec.expdat"
              value-format="yyyy-MM-dd"
Eivi committed
350
              style="width: 100%"
351 352 353
              placeholder="请选择Date"
            ></c-date-picker>
          </el-form-item>
wuziqiang committed
354
        </c-col>
Eivi committed
355
      </c-col> -->
liuxin committed
356 357 358 359 360 361 362 363 364 365 366
            <c-col :span="24">
                <c-form-item label="有效日期" prop="dedgrp.rec.expdat">
                    <c-date-picker
                        type="date"
                        v-model="model.dedgrp.rec.expdat"
                        value-format="yyyy-MM-dd"
                        placeholder="请选择Date"
                        style="width: 100%"
                    ></c-date-picker>
                </c-form-item>
            </c-col>
367

liuxin committed
368 369 370 371 372 373 374 375 376 377 378
            <c-col :span="24">
                <c-form-item label="开证行开证类型" prop="dedgrp.rec.dkflg">
                    <c-select
                        v-model="model.dedgrp.rec.dkflg"
                        style="width: 100%"
                        placeholder="请选择"
                        :code="codes.dkflg"
                        disabled
                    ></c-select>
                </c-form-item>
            </c-col>
liuxin committed
379

liuxin committed
380 381 382 383 384 385 386 387 388
            <c-col :span="24">
                <el-form-item label="有效地点" prop="dedgrp.rec.expplc">
                    <c-input
                        v-model="model.dedgrp.rec.expplc"
                        maxlength="35"
                        placeholder="请输入Place of Expiry"
                    ></c-input>
                </el-form-item>
            </c-col>
wuziqiang committed
389

liuxin committed
390 391 392 393 394 395 396 397 398
            <!-- <c-col :span="24">
                <c-form-item label="货运时间" prop="dedgrp.rec.shpdat">
                    <c-date-picker
                        type="date"
                        v-model="model.dedgrp.rec.shpdat"
                        style="width: 100%"
                        placeholder="请选择Shipment Date"
                    ></c-date-picker>
                </c-form-item>
liuxin committed
399
            </c-col> -->
wuziqiang committed
400

liuxin committed
401 402 403 404 405 406 407 408 409 410 411 412 413
            <c-col :span="24">
                <el-form-item label="转运" prop="dedgrp.rec.shptrs">
                    <c-select
                        v-model="model.dedgrp.rec.shptrs"
                        style="width: 100%"
                        placeholder="请选择"
                        :disabled="model.dedgrp.rec.mytype == 'F'"
                    >
                        <el-option label="不允许" value="禁止"></el-option>
                        <el-option label="允许" value="允许"></el-option>
                    </c-select>
                </el-form-item>
            </c-col>
wuziqiang committed
414

liuxin committed
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
            <c-col :span="24">
                <el-form-item label="是否通过电证系统" prop="dedgrp.rec.elcflg">
                    <c-select
                        v-model="model.dedgrp.rec.elcflg"
                        style="width: 100%"
                        placeholder="请选择是否通过电证系统"
                    >
                        <el-option
                            v-for="item in codes.elcflg"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
wuziqiang committed
432

liuxin committed
433
            <!--
wuziqiang committed
434 435 436 437 438 439 440 441
        <c-col :span="24">
        <el-form-item label="是否代开信用证" prop="dedgrp.rec.dkflg">
            <c-select v-model="model.dedgrp.rec.dkflg" style="width:100%" placeholder="请选择是否代开信用证">
              </c-select>
        </el-form-item>
        </c-col>
        -->

liuxin committed
442 443 444 445 446 447 448 449 450
            <c-col :span="24">
                <el-form-item label="信用证兑付方式" prop="dedgrp.rec.avbby">
                    <c-select
                        v-model="model.dedgrp.rec.avbby"
                        style="width: 100%"
                        @change="avbbykeyEvent"
                        placeholder="请选择"
                    >
                        <el-option
451
                            v-for="item in codes.avbbyDetopn"
liuxin committed
452 453 454 455 456 457 458 459
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
460

liuxin committed
461 462 463
            <c-col :span="24">
                <el-form-item label="天数" prop="dedgrp.rec.tenmaxday">
                    <c-input
464
                        v-model.number="model.dedgrp.rec.tenmaxday"
liuxin committed
465 466 467 468 469
                        placeholder="请输入天数"
                        :disabled="model.dedgrp.rec.avbby == 'P'"
                    ></c-input>
                </el-form-item>
            </c-col>
liuxin committed
470

liuxin committed
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
            <div v-if="model.dedgrp.rec.avbby != 'D'">
                <c-col :span="24">
                    <el-form-item label="远期付款指示" prop="dedgrp.blk.dftat">
                        <c-input
                            type="textarea"
                            v-model="model.dedgrp.blk.dftat"
                            maxlength="35"
                            show-word-limit
                            placeholder="请输入远期付款指示"
                            :disabled="!model.dedgrp.rec.avbby"
                        ></c-input>
                    </el-form-item>
                </c-col>
            </div>
            <div v-else>
                <c-col :span="24">
                    <el-form-item label="远期付款指示" prop="dedgrp.blk.defdet">
                        <c-input
                            type="textarea"
                            v-model="model.dedgrp.blk.defdet"
                            maxlength="35"
                            show-word-limit
                            placeholder="请输入远期付款指示"
                        ></c-input>
                    </el-form-item>
                </c-col>
            </div>
liuxin committed
498
        </c-col>
wuziqiang committed
499

liuxin committed
500 501 502 503 504 505 506 507 508 509 510 511 512
        <!-- ========================右边======================= -->
        <c-col :span="11" :offset="1">
            <c-col :span="24">
                <el-form-item label="摘要" prop="dedgrp.rec.nam">
                    <c-input
                        text-align="middle"
                        v-model="model.dedgrp.rec.nam"
                        maxlength="40"
                        disabled
                        placeholder="请输入Externally Displayed Name to Identify the Contract"
                    ></c-input>
                </el-form-item>
            </c-col>
Eivi committed
513

liuxin committed
514 515 516 517 518 519 520 521 522 523 524 525 526 527
            <c-col :span="24">
                <c-ptap
                    :model="model"
                    :argadr="{
                        title: '受益人',
                        grp: 'dedgrp',
                        rol: 'ben',
                    }"
                    :isAdrblk="false"
                    @onSeainf="onSeainf"
                    @onAplpDet="onBenpDet"
                >
                </c-ptap>
            </c-col>
528

liuxin committed
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
            <c-col :span="24">
                <c-col :span="24">
                    <el-form-item
                        label="受益人账号"
                        prop="dedgrp.ben.pts.extact"
                    >
                        <c-input
                            v-model="model.dedgrp.ben.pts.extact"
                            maxlength="16"
                            placeholder="请输入受益人账号"
                        ></c-input>
                    </el-form-item>
                </c-col>
            </c-col>
            <!--
wuziqiang committed
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
      <c-col :span="24">
       <c-col :span="24">
        <el-form-item label="受益人参考号" prop="dedgrp.ben.pts.ref">
            <c-input  v-model="model.dedgrp.ben.pts.ref" maxlength="16"  placeholder="请输入受益人参考号"></c-input>
        </el-form-item>
       </c-col>
      </c-col>

      <c-col :span="24">
       <c-col :span="18">
        <el-form-item label="受益人ID" prop="dedgrp.ben.pts.extkey">
            <c-input  v-model="model.dedgrp.ben.pts.extkey" maxlength="16"  placeholder="请输入受益人Extkey"
             @keyup.enter.native="
                showGridPromptDialog('dedgrp.apl.pts.extkey')
              "
            ></c-input>        
        </el-form-item>
       </c-col>
         <c-col :span="6" style="text-align: right">
          <c-col :span="12">
            <el-form-item label="" label-width="5px">
              <c-button
                size="small"
                type="primary"
                icon="el-icon-search"
                @click="onSeainf('dedgrp.ben.pts.extkey')"
              ></c-button>
            </el-form-item>
          </c-col>
          <c-col :span="12">
            <el-form-item label="" label-width="5px">
              <c-button size="small" type="primary" @click="onBenpDet">
                详情
              </c-button>
            </el-form-item>
          </c-col>
        </c-col>
      </c-col>
      
      <c-col :span="24">
        <el-form-item label="受益人名称" prop="dedgrp.ben.namelc">
            <c-input type="textarea" v-model="model.dedgrp.ben.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="受益人地址" prop="dedgrp.ben.adrelc">
            <c-input type="textarea" v-model="model.dedgrp.ben.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="受益人账号" prop="dedgrp.ben.pts.extact">
            <c-input  v-model="model.dedgrp.ben.pts.extact" maxlength="34"  placeholder="请输入External Account"></c-input>
        </el-form-item>
       </c-col>
      -->

liuxin committed
602
            <c-col :span="24">
liuxin committed
603 604 605 606
                <el-form-item
                    label="受益人开户行联行行号"
                    prop="dedgrp.beb.pts.bankno"
                >
liuxin committed
607 608 609 610 611 612 613
                    <c-input
                        v-model="model.dedgrp.beb.pts.bankno"
                        maxlength="20"
                        placeholder="请输入Number of bank"
                    ></c-input>
                </el-form-item>
            </c-col>
wuziqiang committed
614

liuxin committed
615 616
            <c-col :span="24">
                <el-form-item
liumin committed
617
                    label="受益人开户行联行名称 电证用"
liuxin committed
618 619 620 621 622 623 624 625 626 627 628
                    prop="dedgrp.beb.pts.jigomc"
                >
                    <c-input
                        type="textarea"
                        v-model="model.dedgrp.beb.pts.jigomc"
                        maxlength="35"
                        show-word-limit
                        placeholder="请输入联行名称  电证用"
                    ></c-input>
                </el-form-item>
            </c-col>
629

liuxin committed
630 631 632 633 634 635 636 637 638 639 640 641 642 643
            <c-col :span="24">
                <c-ptap
                    :model="model"
                    :argadr="{
                        title: '申请人',
                        grp: 'dedgrp',
                        rol: 'apl',
                    }"
                    :isAdrblk="false"
                    @onSeainf="onSeainf"
                    @onAplpDet="onBenpDet"
                >
                </c-ptap>
            </c-col>
644

liuxin committed
645
            <!--
wuziqiang committed
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
      <c-col :span="24">
        <el-form-item label="申请人参考号" prop="dedgrp.apl.pts.ref">
            <c-input  v-model="model.dedgrp.apl.pts.ref" maxlength="16"  placeholder="请输入申请人参考号"></c-input>
        </el-form-item>
      </c-col>

     
       <c-col :span="24">
        <el-form-item label="申请人ID" prop="dedgrp.apl.pts.extkey">
            <c-input  v-model="model.dedgrp.apl.pts.extkey" maxlength="16"  placeholder="请输入申请人Extkey"></c-input>
        </el-form-item>
       </c-col>
     

      <c-col :span="24">
       <c-col :span="18">
        <el-form-item label="申请人ID" prop="dedgrp.apl.pts.extkey">
            <c-input  v-model="model.dedgrp.apl.pts.extkey" maxlength="16"  placeholder="请输入申请人Extkey"
            ></c-input>        
        </el-form-item>
       </c-col>
         <c-col :span="6" style="text-align: right">
          <c-col :span="12">
            <el-form-item label="" label-width="5px">
              <c-button
                size="small"
                type="primary"
                icon="el-icon-search"
                @click="onSeainf('dedgrp.apl.pts.extkey')"
              ></c-button>
            </el-form-item>
          </c-col>
          <c-col :span="12">
            <el-form-item label="" label-width="5px">
              <c-button size="small" type="primary" @click="onAplpDet">
                详情
              </c-button>
            </el-form-item>
          </c-col>
        </c-col>
      </c-col>

       <c-col :span="24">
        <el-form-item label="申请人名称" prop="dedgrp.apl.namelc">
            <c-input type="textarea" v-model="model.dedgrp.apl.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="24">
        <el-form-item label="申请人地址" prop="dedgrp.apl.pts.adrblk">
            <c-input type="textarea" v-model="model.dedgrp.apl.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
      -->

liuxin committed
701 702 703 704 705 706 707 708 709 710
            <c-col :span="24">
                <el-form-item label="是否通知客户" prop="dedgrp.rec.rejflg">
                    <c-select
                        v-model="model.dedgrp.rec.rejflg"
                        style="width: 100%"
                        placeholder="请选择是否通知客户"
                    >
                    </c-select>
                </el-form-item>
            </c-col>
liuxin committed
711

liuxin committed
712 713 714 715 716 717 718 719 720 721 722
            <c-col :span="24">
                <el-form-item label="拒绝通知理由" prop="dedgrp.blk.rejadvrsn">
                    <c-input
                        type="textarea"
                        v-model="model.dedgrp.blk.rejadvrsn"
                        maxlength="35"
                        show-word-limit
                        placeholder="请输入拒绝通知理由"
                    ></c-input>
                </el-form-item>
            </c-col>
liuxin committed
723

liuxin committed
724 725 726 727 728 729 730 731 732 733 734 735
            <c-col :span="24">
                <el-form-item label="交单期限" prop="dedgrp.blk.preper">
                    <c-input
                        type="textarea"
                        v-model="model.dedgrp.blk.preper"
                        maxlength="35"
                        show-word-limit
                        placeholder="请输入交单期限"
                    ></c-input>
                </el-form-item>
            </c-col>
        </c-col>
736

liuxin committed
737
        <!--        
wuziqiang committed
738 739 740 741 742 743 744 745 746 747 748 749 750
       <c-col :span="12">
        <el-form-item label="" prop="detp.usrget.sdamod.seainf">
            <c-input  v-model="model.detp.usrget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col>
                  
           
       <c-col :span="12">
        <el-form-item label="" prop="detp.benp.ptsget.sdamod.seainf">
            <c-input  v-model="model.detp.benp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col> -->

liuxin committed
751
        <!--                                           
wuziqiang committed
752 753 754 755 756
       <c-col :span="12">
        <el-form-item label="Address Block" prop="dedgrp.ben.pts.adrblk">
            <c-input type="textarea" v-model="model.dedgrp.ben.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col> -->
liuxin committed
757
        <!--           
wuziqiang committed
758 759 760 761 762
       <c-col :span="12">
        <el-form-item label="Chinese address" prop="dedgrp.ben.dbfadrblkcn">
            <c-input type="textarea" v-model="model.dedgrp.ben.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
763
        -->
liuxin committed
764
        <!-- TODO 貌似多余的
765 766 767
    <c-col :span="12">
      <span v-text="model.detp.zchday" data-path=".detp.zchday"> </span>
    </c-col> -->
liuxin committed
768
        <!--          
wuziqiang committed
769 770 771 772
       <c-col :span="12">
        <el-form-item label="Drag  Drop Sender" prop="detp.aplp.ptsget.sdamod.dadsnd">
            <c-input  v-model="model.detp.aplp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
        </el-form-item>
773
       </c-col> -->
wuziqiang committed
774

liuxin committed
775
        <!--           
wuziqiang committed
776 777 778 779 780
       <c-col :span="12">
        <el-form-item label="" prop="detp.aplp.ptsget.sdamod.seainf">
            <c-input  v-model="model.detp.aplp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col>
781
       -->
wuziqiang committed
782

liuxin committed
783
        <!--           
wuziqiang committed
784 785 786 787 788 789
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onAplpDet">
            Details
        </c-button>
       </c-col>
       -->
790

liuxin committed
791
        <!--            
wuziqiang committed
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
       <c-col :span="12">
        <el-form-item label="Chinese address" prop="dedgrp.apl.dbfadrblkcn">
            <c-input type="textarea" v-model="model.dedgrp.apl.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
        </el-form-item>
        </c-col>
                                   
                                   
       <c-col :span="12">
        <el-form-item label="Maximum Tenor" prop="dedgrp.rec.tenmaxday">
            <c-input  v-model="model.dedgrp.rec.tenmaxday"  placeholder="请输入Maximum Tenor"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="远期付款指示" prop="dedgrp.blk.defdet">
            <c-input type="textarea" v-model="model.dedgrp.blk.defdet" maxlength="35" show-word-limit placeholder="请输入远期付款指示" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <el-form-item label="地址" prop="dedgrp.apl.adrelc">
            <c-input type="textarea" v-model="model.dedgrp.apl.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
        </el-form-item>
        </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="远期付款指示" prop="dedgrp.blk.dftat">
            <c-input type="textarea" v-model="model.dedgrp.blk.dftat" maxlength="35" show-word-limit placeholder="请输入远期付款指示" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onLcrdftatButtxmsel">
            ...
        </c-button>
       </c-col>
                  
                                              
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onPreperButtxmsel">
            ...
        </c-button>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="发起参与机构" prop="detp.dzlhhh">
            <c-input  v-model="model.detp.dzlhhh" maxlength="20"  placeholder="请输入发起参与机构"></c-input>
        </el-form-item>
       </c-col>
842
       -->
liuxin committed
843
    </div>
wuziqiang committed
844 845
</template>
<script>
846
import Api from "~/service/Api";
wangren committed
847
import commonProcess from "~/mixin/commonProcess";
wuziqiang committed
848 849 850 851 852
import Event from "~/model/Detopn/Event";
import Utils from "~/utils";
import Ptap from "~/views/Public/Ptap";

export default {
liuxin committed
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
    components: { "c-ptap": Ptap },
    inject: ["root"],
    props: ["model", "codes"],
    mixins: [commonProcess],
    data() {
        return {
            jigomcFlag: false,
            trade: "",
        };
    },
    methods: { ...Event },
    created: function () {},
    computed: {
        flag() {
            return this.model.dedgrp.ben.pts.extkey == "";
        },
wuziqiang committed
869
    },
870
};
wuziqiang committed
871 872 873
</script>
<style>
</style>