Gitsetp1.vue 21.6 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
panziyi committed
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
    <c-col :span="11">
      <c-col :span="24">
        <el-form-item
          label="Guarantee"
          prop="gidgrp.rec.ownref"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              v-model="model.gidgrp.rec.ownref"
              maxlength="8"
              placeholder="请输入"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                v-model="model.gctp.gidget.sdamod.seainf"
                style="margin: 0 0 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click="onSeainf"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
            </template>
          </c-fullbox>
29 30
        </el-form-item>
      </c-col>
panziyi committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

      <c-col :span="12">
        <span v-text="model.gctp.expfldlab" data-path=".gctp.expfldlab"> </span>
      </c-col>

      <c-col :span="12">
        <span v-text="model.gctp.explab" data-path=".gctp.explab"> </span>
      </c-col>

      <c-col :span="24">
        <el-form-item
          label="Claim Number"
          prop="gcdgrp.rec.ownref"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              v-model="model.gcdgrp.rec.ownref"
              maxlength="8"
              placeholder="请输入"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                v-model="model.gctp.recget.sdamod.seainf"
                style="margin: 0 0 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click="onSeainf"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
              <c-button
                size="small"
                type="primary"
panziyi committed
66
                :disabled="this.flag"
panziyi committed
67 68 69 70 71 72 73
                v-model="model.gctp.getrefbut"
                @click="onGctpGetrefbut"
              >
                Get ref.
              </c-button>
            </template>
          </c-fullbox>
74 75
        </el-form-item>
      </c-col>
panziyi committed
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="10">
        <c-form-item
          label="Amount Claimed"
          prop="gcdgrp.cbs.max.cur"
          previewLabel="信用证币种"
        >
          <c-input  v-model="model.gcdgrp.cbs.max.cur" maxlength="3" disabled  placeholder="请输入Amount Claimed"></c-input>
        </c-form-item>
      </c-col>
      <c-col :span="9">
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gcdgrp.cbs.max.amt"
        >
          <c-input-currency
            disabled
            v-model="model.gcdgrp.cbs.max.amt"  placeholder="请输入Balance"
          ></c-input-currency>
        </c-form-item>
      </c-col>

100
      <c-col :span="5">
panziyi committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
        <c-checkbox
          v-model="model.gctp.gcthdr"
          disabled
          style="margin-left: 18px;height: 32px;
  line-height: 32px;
  padding-bottom: 2px;"
          >Add. Amount
        </c-checkbox>
      </c-col>

      <c-col :span="10">
        <c-form-item
          label="Open Amount"
          prop="gcdgrp.cbs.opn1.cur"
          previewLabel="信用证币种"
        >
          <c-select
            v-model="model.gcdgrp.cbs.opn1.cur"
            placeholder=""
120
            style="width: 100%"
panziyi committed
121 122 123 124 125 126 127 128 129 130 131
            disabled
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </c-form-item>
132
      </c-col>
panziyi committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146

      <c-col :span="9">
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gcdgrp.cbs.opn1.amt"
        >
          <c-input-currency
            v-model="model.gcdgrp.cbs.opn1.amt"
            placeholder="请输入"
            disabled
          ></c-input-currency>
        </c-form-item>
147
      </c-col>
panziyi committed
148 149 150 151 152 153 154 155 156 157

      <c-col :span="24">
        <el-form-item label="Type of Undertaking" prop="gidgrp.rec.gartyp">
          <c-select
            v-model="model.gidgrp.rec.gartyp"
            style="width: 100%"
            placeholder="请选择Type of Undertaking"
            disabled
          >
          </c-select>
158 159 160
        </el-form-item>
      </c-col>

panziyi committed
161 162
      <c-col :span="24">
        <el-form-item label="Date of Claim" prop="gcdgrp.rec.clmdat">
163
          <c-input
panziyi committed
164 165 166 167
            v-model="model.gcdgrp.rec.clmdat"
            maxlength="40"
            disabled
            placeholder="请输入Date of Claim"
168 169 170
          ></c-input>
        </el-form-item>
      </c-col>
panziyi committed
171 172 173 174
    </c-col>
    <!-- <c-col :span="12">
        <el-form-item label="Amount Claimed" prop="gcdgrp.cbs.max.cur">
            <c-input  v-model="model.gcdgrp.cbs.max.cur" maxlength="3"  placeholder="请输入Amount Claimed"></c-input>
175
        </el-form-item>
panziyi committed
176 177 178 179 180 181 182 183
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Balance" prop="gcdgrp.cbs.max.amt">
            <c-input  v-model="model.gcdgrp.cbs.max.amt"  placeholder="请输入Balance"></c-input>
        </el-form-item>
       </c-col>
                   -->
panziyi committed
184
    <c-col :span="11" :offset="1">
panziyi committed
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
      <c-col :span="12">
        <c-form-item
          label="Open Amount"
          prop="gidgrp.cbs.opn1.cur"
          previewLabel="信用证币种"
        >
          <c-select
            v-model="model.gidgrp.cbs.opn1.cur"
            placeholder=""
            @keyup.enter.native="nom1CurEvent"
            style="width: 100%"
            disabled
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </c-form-item>
207 208
      </c-col>
      <c-col :span="12">
panziyi committed
209 210 211 212 213
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gidgrp.cbs.opn1.amt"
214
        >
panziyi committed
215 216 217 218 219 220 221 222 223 224 225 226 227
          <c-input-currency
            v-model="model.gidgrp.cbs.opn1.amt"
            placeholder="请输入信用证金额"
            disabled
            @keyup.enter.native="
              defaultFunction('gidgrp.cbs.opn1.amt', model.gidgrp.cbs.opn1.amt)
            "
          ></c-input-currency>
        </c-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="Name" prop="gcdgrp.rec.nam">
228 229 230 231
          <c-input
            v-model="model.gcdgrp.rec.nam"
            maxlength="40"
            placeholder="请输入Externally Displayed Name to Identify the Contract"
panziyi committed
232
            disabled
233 234 235
          ></c-input>
        </el-form-item>
      </c-col>
panziyi committed
236 237 238

      <c-col :span="24">
        <el-form-item label="Applicant   ref. " prop="gcdgrp.apl.pts.ref">
239
          <c-input
panziyi committed
240 241 242 243
            v-model="model.gcdgrp.apl.pts.ref"
            maxlength="16"
            placeholder="请输入Applicant"
            disabled
244 245 246
          ></c-input>
        </el-form-item>
      </c-col>
panziyi committed
247 248
      <c-col :span="24">
        <el-form-item label="" prop="gcdgrp.apl.pts.nam">
249
          <c-input
panziyi committed
250 251 252 253
            v-model="model.gcdgrp.apl.pts.nam"
            maxlength="40"
            placeholder="请输入Name of Party"
            disabled
254 255 256
          ></c-input>
        </el-form-item>
      </c-col>
panziyi committed
257 258
      <c-col :span="24">
        <el-form-item label="Beneficiary  ref." prop="gcdgrp.ben.pts.ref">
259
          <c-input
panziyi committed
260
            v-model="model.gcdgrp.ben.pts.ref"
261
            maxlength="16"
panziyi committed
262
            placeholder="请输入Beneficiary"
263 264 265
          ></c-input>
        </el-form-item>
      </c-col>
panziyi committed
266 267
      <c-col :span="24">
        <el-form-item label="" prop="gcdgrp.ben.pts.nam">
268
          <c-input
panziyi committed
269 270 271 272
            v-model="model.gcdgrp.ben.pts.nam"
            maxlength="40"
            placeholder="请输入"
            disabled
273 274 275
          ></c-input>
        </el-form-item>
      </c-col>
panziyi committed
276
    </c-col>
277

panziyi committed
278 279 280 281 282 283 284
    <!-- <c-col :span="12">
        <el-form-item label="Open Amount" prop="gcdgrp.cbs.opn1.cur">
            <c-input  v-model="model.gcdgrp.cbs.opn1.cur" maxlength="3"  placeholder="请输入Open Amount"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
285
        <el-form-item label="Balance" prop="gcdgrp.cbs.opn1.amt">
panziyi committed
286
            <c-input  v-model="model.gcdgrp.cbs.opn1.amt"  placeholder="请输入Balance"></c-input>
287
        </el-form-item>
panziyi committed
288
       </c-col> -->
289

panziyi committed
290 291 292 293 294 295
    <!-- 中间 -->
    <c-col :span="24" style="height: 0px">
      <el-divider></el-divider>
    </c-col>

    <c-col :span="11" style="margin-top: 15px">
296
      <c-col :span="12">
panziyi committed
297 298 299 300 301 302 303
        <c-form-item
          label="Amount Claimed"
          prop="gcdgrp.cbs.max.cur"
          previewLabel="信用证币种"
        >
          <c-input  v-model="model.gcdgrp.cbs.max.cur" maxlength="3" disabled  placeholder="请输入Amount Claimed"></c-input>
        </c-form-item>
304 305
      </c-col>

panziyi committed
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
      <c-col :span="12">
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gcdgrp.cbs.max.amt"
        >
          <c-input-currency
            v-model="model.gcdgrp.cbs.max.amt"
            placeholder="请输入信用证金额"
            @keyup.enter.native="
              defaultFunction('gcdgrp.cbs.max.amt', model.gcdgrp.cbs.max.amt)
            "
          ></c-input-currency>
        </c-form-item>
      </c-col>
      <c-col :span="12">
        <c-form-item
          label="Draw Add.Amount"
          prop="gcdgrp.cbs.opn2.cur"
          previewLabel="信用证币种"
        >
           <c-input  v-model="model.gcdgrp.cbs.opn2.cur" maxlength="3" disabled  placeholder="请输入Amount Claimed"></c-input>
        </c-form-item>
330 331 332
      </c-col>

      <c-col :span="12">
panziyi committed
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gcdgrp.cbs.max2.amt"
        >
          <c-input-currency
            v-model="model.gcdgrp.cbs.max2.amt"
            placeholder="请输入信用证金额"
            disabled
            @keyup.enter.native="
              defaultFunction('gcdgrp.cbs.max2.amt', model.gcdgrp.cbs.max2.amt)
            "
          ></c-input-currency>
        </c-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="Date of Claim" prop="gcdgrp.rec.clmdat">
352 353
          <c-date-picker
            type="date"
panziyi committed
354
            v-model="model.gcdgrp.rec.clmdat"
355
            style="width: 100%"
panziyi committed
356
            placeholder="请选择Date of Claim"
357 358 359
          ></c-date-picker>
        </el-form-item>
      </c-col>
panziyi committed
360 361 362 363 364 365 366 367 368 369 370

      <c-col :span="19">
        <el-form-item label="Further Processing" prop="nxtflg">
          <c-select
            v-model="model.nxtflg"
            style="width: 100%"
            disabled
            placeholder="请选择Further Processing"
            :code="codes.nxtflg"
          >
          </c-select>
371 372
        </el-form-item>
      </c-col>
panziyi committed
373 374 375 376 377 378 379 380 381 382

      <c-col :span="5">
        <c-checkbox v-model="model.gitsetp1" disabled style="margin-left: 10px;height: 32px;
  line-height: 32px;
  padding-bottom: 2px;" 
          >Extend or Pay</c-checkbox
        >
      </c-col>
      <c-col :span="24">
        <el-form-item label="Validity Requested" prop="gcdgrp.rec.newexpdat">
383 384
          <c-date-picker
            type="date"
panziyi committed
385 386
            v-model="model.gcdgrp.rec.newexpdat"
            disabled
387
            style="width: 100%"
panziyi committed
388
            placeholder="请选择Validity Requested"
389 390 391
          ></c-date-picker>
        </el-form-item>
      </c-col>
panziyi committed
392

393
      <c-col :span="12">
panziyi committed
394 395
        <el-form-item label="我行将于" prop="payday">
          <c-input v-model="model.payday" placeholder=""> </c-input>
396 397
        </el-form-item>
      </c-col>
panziyi committed
398 399
      <c-col :span="12">
        <el-form-item label="个工作日后付款" label-width="120px"> </el-form-item>
400 401
      </c-col>

panziyi committed
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
      <c-col :span="24">
        <el-form-item label="申报类型" prop="outlen.szflg">
          <c-select
            v-model="model.outlen.szflg"
            style="width: 100%"
            placeholder=""
            :code="codes.szflg"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="钱款去向" prop="outlen.acttyp">
          <c-select
            v-model="model.outlen.acttyp"
            style="width: 100%"
            placeholder=""
            :code="codes.acttyp"
            :disabled="model.outlen.szflg != '1'"
          ></c-select>
422 423
        </el-form-item>
      </c-col>
panziyi committed
424
    </c-col>
425

panziyi committed
426
    <!-- <c-col :span="24">
427
        <el-form-item label="Presented by" prop="gcdgrp.rec.docprbrol">
panziyi committed
428 429 430 431 432 433
            <c-select v-model="model.gcdgrp.rec.docprbrol" style="width:100%" placeholder="请选择Presented by" 
           
            :code="codes.docprbrol">
              </c-select>
        </el-form-item>
       </c-col> -->
panziyi committed
434 435
    
      <!-- <c-col :span="24">
panziyi committed
436
        <c-form-item label="Presented by" prop="gcdgrp.rec.docprbrol">
437 438
          <c-select
            v-model="model.gcdgrp.rec.docprbrol"
panziyi committed
439
            placeholder="请选择"
440
            style="width: 100%"
panziyi committed
441
          @change="commonExecuteRule('gcdgrp.rec.docprbrol')"
panziyi committed
442 443 444 445 446 447 448
          >  
          <el-option
              v-for="item in codes.docprbrol"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            ></el-option>
449
          </c-select>
panziyi committed
450
        </c-form-item>
451 452
      </c-col>

panziyi committed
453 454 455 456 457 458 459 460 461
      <c-col :span="24">
        <el-form-item label="Reference " prop="gcdgrp.prb.pts.ref">
          <c-input
            v-model="model.gcdgrp.prb.pts.ref"
            maxlength="16"
            placeholder="请输入Reference "
          ></c-input>
        </el-form-item>
      </c-col>
462

panziyi committed
463 464
      
      <c-col :span="24" >
panziyi committed
465 466 467 468 469
        <el-form-item
          label=""
          prop="gcdgrp.prb.pts.extkey"
        >
          <c-fullbox>
470
            <c-input
panziyi committed
471
              :disabled="model.gcdgrp.rec.docprbrol == 'A2B'"
panziyi committed
472 473 474 475
              v-model="model.gcdgrp.prb.pts.extkey"
              maxlength="16"
              placeholder="请输入External Key of Address"
              @keyup.enter.native="
panziyi committed
476
                showGridPromptDialog('gcdgrp.prb.pts.extkey')
panziyi committed
477
              "
478
            ></c-input>
panziyi committed
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
            <template slot="footer">
              <c-button
                v-model="model.gctp.prbp.ptsget.sdamod.seainf"
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click="onSeainf"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
              <c-button
                size="small"
                type="primary"
                v-model="model.gctp.prbp.det"
                style="margin: 0 0"
panziyi committed
494
                @click="onPrbpDet"
panziyi committed
495
              >
panziyi committed
496
               Details
panziyi committed
497 498 499 500 501 502
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

panziyi committed
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
      <c-col :span="24">
        <el-form-item label="" prop="gcdgrp.prb.pts.adrblk">
          <c-input
            :disabled="model.gcdgrp.rec.docprbrol == 'A2B'"
            type="textarea"
            rows="4"
            v-model="model.gcdgrp.prb.pts.adrblk"
            maxlength="100"
            show-word-limit
            placeholder="请输入Address Block"
          ></c-input>
        </el-form-item>
      </c-col> -->
      <c-col :span="11" :offset="1" style="margin-top: 15px">
       <c-col :span="24">
        <el-form-item label="Presented by" prop="gcdgrp.rec.docprbrol">
            <c-select 
            :code="codes.docprbrol"
            v-model="model.gcdgrp.rec.docprbrol" style="width:100%" placeholder="请选择Presented by">
              </c-select>
        </el-form-item>
       </c-col>
       <c-col :span="24">
        <el-form-item label="Reference" prop="gcdgrp.prb.pts.ref">
            <c-input  v-model="model.gcdgrp.prb.pts.ref" maxlength="16"  placeholder="请输入Reference"></c-input>
        </el-form-item>
       </c-col>
        <c-col :span="24">
        <el-form-item label="" prop="gcdgrp.prb.pts.extkey">
            <c-fullbox>
            <c-input  
            v-model="model.gcdgrp.prb.pts.extkey" 
            maxlength="16"  
            placeholder="请输入External Key of Address"
            @keyup.enter.native="showGridPromptDialog('gcdgrp.prb.pts.extkey')"
538
            ></c-input>
panziyi committed
539 540 541 542 543
            <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
panziyi committed
544
                @click="model.gctp.prbp.ptsget.sdamod.seainf"
panziyi committed
545 546 547 548
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
              <c-button
panziyi committed
549
                style="margin: 0 0"
panziyi committed
550 551
                size="small"
                type="primary"
panziyi committed
552
                @click="onPrbpDet"
panziyi committed
553
              >
panziyi committed
554 555
                Details
              </c-button>   
panziyi committed
556
            </template>
panziyi committed
557
            </c-fullbox>
panziyi committed
558
        </el-form-item>
panziyi committed
559
       </c-col>
560

panziyi committed
561
       <c-col :span="24">
panziyi committed
562
        <el-form-item label="" prop="gcdgrp.prb.pts.adrblk">
panziyi committed
563 564 565
            <c-input 
            :rows="4"
            type="textarea" v-model="model.gcdgrp.prb.pts.adrblk" maxlength="300" show-word-limit placeholder="请输入Address Block" ></c-input>
panziyi committed
566
        </el-form-item>
panziyi committed
567
        </c-col> 
568

panziyi committed
569
      
570

panziyi committed
571 572 573 574 575 576
      <c-col :span="24">
        <c-form-item label="Payer" prop="gcdgrp.rec.payrol">
          <c-select
            v-model="model.gcdgrp.rec.payrol"
            placeholder="请选择"
            style="width: 100%"
panziyi committed
577
            :code="codes.payrol"
panziyi committed
578 579 580 581 582 583
          >
          </c-select>
        </c-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="Reference " prop="gcdgrp.oth.pts.ref">
584
          <c-input
panziyi committed
585
            v-model="model.gcdgrp.oth.pts.ref"
586 587 588 589
            maxlength="16"
            placeholder="请输入Reference "
          ></c-input>
        </el-form-item>
panziyi committed
590 591 592 593 594 595 596 597 598 599 600 601
      </c-col>
      <c-col :span="24">
        <el-form-item
          label=""
          prop="gcdgrp.oth.pts.extkey"
        >
          <c-fullbox>
            <c-input
              v-model="model.gcdgrp.oth.pts.extkey"
              maxlength="16"
              placeholder="请输入External Key of Address"
              @keyup.enter.native="
panziyi committed
602
                showGridPromptDialog('gcdgrp.oth.pts.extkey')
panziyi committed
603 604 605 606 607 608 609 610
              "
            >
            </c-input>
            <template slot="footer">
              <c-button
                style="margin: 0 10px 0 10px; padding: 0 12px"
                size="small"
                type="primary"
panziyi committed
611
                @click="model.gctp.othp.ptsget.sdamod.seainf"
panziyi committed
612 613 614 615 616 617 618
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
              <c-button
                style="margin: 0 0"
                size="small"
                type="primary"
panziyi committed
619
                @click="onOthpDet"       
panziyi committed
620 621 622 623 624 625 626
              >
                Details
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>
627

panziyi committed
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
      <c-col :span="24">
        <el-form-item label="" prop="gcdgrp.oth.pts.adrblk">
          <c-input
            type="textarea"
            rows="4"
            v-model="model.gcdgrp.oth.pts.adrblk"
            maxlength="100"
            show-word-limit
            placeholder="请输入Address Block"
          ></c-input>
        </el-form-item>
      </c-col>
      <!-- <c-col :span="24">
        <el-form-item label="名称" prop="gcdgrp.oth.namelc">
            <c-input type="textarea"
            :rows="2"
           
             v-model="model.gcdgrp.oth.namelc" 
             maxlength="35" show-word-limit 
             placeholder="请输入名称" 
            :disabled="disabledNamelc">
             </c-input>
        </el-form-item>
        </c-col> -->
652

panziyi committed
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
      <!--       <c-col :span="12">
        <el-form-item label="Address Block" prop="gcdgrp.oth.pts.adrblk">
            <c-input type="textarea" v-model="model.gcdgrp.oth.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Chinese address" prop="gcdgrp.oth.dbfadrblkcn">
            <c-input type="textarea" v-model="model.gcdgrp.oth.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="gcdgrp.oth.adrelc">
            <c-input type="textarea" 
            :rows="2"
            v-model="model.gcdgrp.oth.adrelc" 
            maxlength="35" 
            show-word-limit 
            placeholder="请输入地址" 
            disabled>
            </c-input>
        </el-form-item>
        </c-col> -->
676 677 678 679 680
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
681
import commonProcess from "~/mixin/commonProcess";
682 683
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitcrq/Event";
panziyi committed
684
import Utils from "~/utils";
685 686 687 688 689 690
import Ptap from "~/views/Public/Ptap";

export default {
  components: { "c-ptap": Ptap },
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
691
  mixins: [commonProcess],
692
  data() {
panziyi committed
693
    return {
panziyi committed
694
   
panziyi committed
695
     
panziyi committed
696 697
    };
  },
panziyi committed
698 699 700 701 702
computed: {
        flag() {
        return this.model.gcdgrp.prb.pts.extkey == "";
        },
  },
panziyi committed
703 704 705 706 707 708 709
  methods: {
    ...Event,
    // change(){
     

    // },
    
panziyi committed
710

panziyi committed
711

712 713 714 715 716 717
  },
  created: function () {},
};
</script>
<style>
</style>