Dftcrep.vue 23.4 KB
Newer Older
“yanyuxin” committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
    <c-row>
      <!-- :gutter="10" -->
      <!--------------------------------左---------------------------->
      <c-col :span="11">
        <c-col :span="24">
          <c-form-item label="Parent Reference" prop="dftcre.dfdgrp.rec.pntref">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.pntref"
              maxlength="16"
              :disabled="true"
              style="width: 100%"
              placeholder="请输入Parent Reference"
            ></c-input>
          </c-form-item>
        </c-col>
“yanyuxin” committed
18

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
        <c-col :span="24">
          <c-form-item label="代付业务编号" prop="dftcre.dfdgrp.rec.ownref">
            <c-fullbox>
              <c-input
                v-model="model.dftcre.dfdgrp.rec.ownref"
                maxlength="16"
                placeholder="请输入代付业务编号"
                style="width: 76%"
                :disabled="true"
              ></c-input>
              <c-button
                size="small"
                type="primary"
                :disabled="model.trdgrp.fip.pts.adrblk == ''"
                @click="onTrtpButgetref"
              >
                Get Ref
              </c-button>
            </c-fullbox>
          </c-form-item>
        </c-col>
“yanyuxin” committed
40

41
        <!-- <c-col :span="13">
“yanyuxin” committed
42 43 44 45 46 47 48 49 50 51 52 53
                <el-form-item label="单据金额" prop="dftcre.oricur">
                    <c-select v-model="model.trdgrp.cbs.max.cur" style="width:100%" placeholder="请选择Currency" @keyup.enter.native="maxCurEvent">
                        <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>

            <c-col :span="11">
                <el-form-item style="text-align: left" label-width="20px" prop="trdgrp.cbs.max.amt">
                    <c-input v-model="model.trdgrp.cbs.max.amt" style="text-align: left; width: 100%" placeholder="请输入融资金额"></c-input>
                </el-form-item>
            </c-col> -->
54 55 56 57 58 59 60 61 62 63
        <c-col :span="24">
          <el-form-item label="单据金额" prop="dftcre.oricur">
            <c-fullbox>
              <c-select
                v-model="model.trdgrp.cbs.max.cur"
                style="width: 35%"
                @keyup.enter.native="maxCurEvent"
                :disabled="true"
              >
              </c-select>
“yanyuxin” committed
64

65 66 67 68 69 70 71 72 73
              <c-input
                v-model="model.trdgrp.cbs.max.amt"
                style="text-align: left; width: 65%"
                placeholder=""
                :disabled="true"
              ></c-input>
            </c-fullbox>
          </el-form-item>
        </c-col>
“yanyuxin” committed
74

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
        <c-col :span="24">
          <el-form-item label="代付金额" prop="dftcre.dfdgrp.cbs.max.cur">
            <c-fullbox>
              <c-select
                v-model="model.dftcre.dfdgrp.cbs.max.cur"
                style="width: 35%"
                @keyup.enter.native="maxCurEvent"
                placeholder="请选择币种"
              >
                <el-option
                  v-for="item in codes.cur"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
              <c-input
                v-model="model.dftcre.dfdgrp.cbs.max.amt"
                style="text-align: left; width: 65%"
                placeholder="请输入代付金额"
              ></c-input>
            </c-fullbox>
          </el-form-item>
        </c-col>
“yanyuxin” committed
99

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
        <c-col :span="24">
          <el-form-item label="代付余额" prop="dftcre.dfdgrp.cbs.opn1.cur">
            <c-fullbox>
              <c-select
                v-model="model.dftcre.dfdgrp.cbs.opn1.cur"
                style="width: 35%"
                @keyup.enter.native="maxCurEvent"
                :disabled="true"
              >
                <el-option
                  v-for="item in codes.cur"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                  :disabled="true"
                ></el-option>
              </c-select>
“yanyuxin” committed
117

118 119 120 121 122 123 124 125 126
              <c-input
                v-model="model.dftcre.dfdgrp.cbs.opn1.amt"
                style="text-align: left; width: 65%"
                placeholder="请输入代付余额"
                :disabled="true"
              ></c-input>
            </c-fullbox>
          </el-form-item>
        </c-col>
“yanyuxin” committed
127

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
        <c-col :span="24">
          <el-form-item label="代付类型" prop="dftcre.dfdgrp.rec.fintyp">
            <c-select
              v-model="model.dftcre.dfdgrp.rec.fintyp"
              style="width: 100%"
              placeholder="请选择代付类型"
            >
              <el-option
                v-for="item in codes.fintyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
                :disabled="true"
              ></el-option>
            </c-select>
          </el-form-item>
        </c-col>
“yanyuxin” committed
145

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
        <c-col :span="12">
          <el-form-item label="境内境外代付" prop="dftcre.dfdgrp.rec.dfuflg">
            <c-select
              v-model="model.dftcre.dfdgrp.rec.dfuflg"
              style="width: 100%"
              placeholder="请输入境外代付"
            >
              <el-option
                v-for="item in codes.dfuflg"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
            </c-select>
          </el-form-item>
        </c-col>
“yanyuxin” committed
162

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
        <c-col :span="12">
          <el-form-item label="发票类型" prop="dftcre.dfdgrp.rec.invtyp">
            <c-select
              v-model="model.dftcre.dfdgrp.rec.invtyp"
              style="width: 100%"
              placeholder="请选择发票类型"
            >
              <el-option
                v-for="item in codes.invtyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
            </c-select>
          </el-form-item>
        </c-col>
“yanyuxin” committed
179

180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
        <c-col :span="24">
          <el-form-item label="交易类型" prop="dftcre.dfdgrp.rec.trntyp">
            <c-select
              v-model="model.dftcre.dfdgrp.rec.trntyp"
              style="width: 100%"
              :disabled="true"
              placeholder="请输入交易类型"
            >
              <el-option
                v-for="item in codes.trntyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
            </c-select>
          </el-form-item>
        </c-col>
“yanyuxin” committed
197

198 199 200 201 202 203 204 205 206 207
        <c-col :span="24">
          <el-form-item label="代付起始日" prop="dftcre.dfdgrp.rec.stttendat">
            <c-date-picker
              type="date"
              v-model="model.dftcre.dfdgrp.rec.stttendat"
              style="width: 100%"
              placeholder="代付起始日"
            ></c-date-picker>
          </el-form-item>
        </c-col>
“yanyuxin” committed
208

209 210 211 212 213 214 215 216 217 218
        <c-col :span="24">
          <el-form-item label="代付到期日" prop="dftcre.dfdgrp.rec.matdat">
            <c-date-picker
              type="date"
              v-model="model.dftcre.dfdgrp.rec.matdat"
              style="width: 100%"
              placeholder="请输入代付到期日"
            ></c-date-picker>
          </el-form-item>
        </c-col>
“yanyuxin” committed
219

220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 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 342 343
        <c-col :span="24">
          <c-form-item label="代付期限" prop="dftcre.dfdgrp.rec.tenday">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.tenday"
              placeholder="代付期限"
              :disabled="true"
            ></c-input>
          </c-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="计息周期" prop="dftcre.dfdgrp.rec.intprd">
            <c-select
              v-model="model.dftcre.dfdgrp.rec.intprd"
              style="width: 100%"
              placeholder="请选择计息周期"
            >
              <el-option
                v-for="item in codes.intprd"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <c-form-item label="代付利率" prop="dftcre.dfdgrp.rec.actrat">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.actrat"
              placeholder="请输入代付利率"
            ></c-input>
          </c-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="利率浮动方式:" prop="dftcre.dfdgrp.rec.flttyp">
            <c-fullbox>
              <c-select
                v-model="model.dftcre.dfdgrp.rec.flttyp"
                style="width: 50%"
                placeholder="利率浮动方式"
              >
                <el-option
                  v-for="item in codes.flttyp"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
              <c-input
                v-model="model.dftcre.dfdgrp.rec.fltval"
                style="width: 50%"
                placeholder="请输入浮动值"
              ></c-input>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="货押标识" prop="dftcre.dfdgrp.rec.guaflg">
            <c-select
              v-model="model.dftcre.dfdgrp.rec.guaflg"
              style="width: 100%"
              placeholder="请输入货押标识"
            >
              <el-option
                v-for="item in codes.guaflg"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="代付利息" prop="dftcre.dfdgrp.rec.rescur">
            <c-select
              v-model="model.dftcre.dfdgrp.rec.rescur"
              style="width: 100%"
              placeholder="请输入代付利息"
            >
              <el-option
                v-for="item in codes.rescur"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              ></el-option>
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <c-form-item label="代付利息" prop="dftcre.dfdgrp.rec.resamt">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.resamt"
              placeholder="代付利息"
            ></c-input>
          </c-form-item>
        </c-col>
      </c-col>
      <!--------------------------------右---------------------------->
      <c-col :span="11">
        <c-col :span="24">
          <c-form-item label="Name" prop="dftcre.dfdgrp.rec.pntnam">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.pntnam"
              maxlength="40"
              :disabled="true"
              placeholder="请输入name"
            ></c-input>
          </c-form-item>
        </c-col>

        <c-col :span="16">
          <c-form-item label="贷款合同名" prop="dftcre.dfdgrp.rec.nam">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.nam"
              maxlength="40"
              :disabled="true"
            ></c-input>
          </c-form-item>
“yanyuxin” committed
344
        </c-col>
“yanyuxin” committed
345

346
        <!-- <c-col :span="24">
“yanyuxin” committed
347 348 349 350 351
            <c-form-item label="申请人参考号" prop="dftcre.dfdgrp.apl.pts.ref" placeholder="请输入代付行参考号">
                <c-input :disabled="true" v-model="model.dftcre.dfdgrp.apl.pts.ref" 
                ></c-input>
            </c-form-item>
            </c-col>
“yanyuxin” committed
352

“yanyuxin” committed
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
            <c-col :span="24" >
            <el-form-item label="申请人" prop="dftcre.dfdgrp.apl.pts.extkey" style="width: 100%">
                <c-fullbox>
                <c-input :disabled="true" v-model="model.dftcre.dfdgrp.apl.pts.extkey"
                    placeholder="请输入申请人Extkey" @keyup.enter.native="
                    showGridPromptDialog(`dftcre.dfdgrp.apl.pts.extkey`)
                    " @change="valueChange"></c-input>
                <template slot="footer">
                    <c-button :disabled="true" style="margin:0 10px 0 10px;padding: 0 12px;" size="small"
                    type="primary" icon="el-icon-search" @click="onSeainf(`dftcre.dfdgrp.apl.pts.extkey`)">
                    </c-button>
                    <c-button style="margin:0 0" size="small" type="primary" @click="onAplpDet">
                    {{ $t('buttons.details') }}
                    </c-button>
                </template>
                </c-fullbox>
            </el-form-item>
            </c-col>
“yanyuxin” committed
371

“yanyuxin” committed
372 373 374 375 376 377
            <c-col :span="24">
            <el-form-item :label="`申请人地址`" prop="dftcre.dfdgrp.apl.pts.adrelc`">
                <c-input type="textarea" :rows="2" v-model="model.dftcre.dfdgrp.apl.pts.adrelc"
                placeholder="请输入申请人地址" :disabled="true" maxlength="35" show-word-limit></c-input>
            </el-form-item>
            </c-col> -->
378
        <!-- <c-col :span="24">
“yanyuxin” committed
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
                <el-form-item label="申请人           Ref" prop="dftcre.dfdgrp.apl.pts.ref">
                    <c-input v-model="model.dftcre.dfdgrp.apl.pts.ref" maxlength="16" placeholder="申请人"></c-input>
                </el-form-item>
            </c-col>
            <c-col :span="16">
                <el-form-item label="Extkey" prop="dftcre.dfdgrp.apl.pts.extkey">
                    <c-input id="extkey" v-model="model.dftcre.dfdgrp.apl.pts.extkey" maxlength="16" placeholder="请输入External Key of Address" @keyup.enter.native="showGridPromptDialog('trdgrp.fip.pts.extkey')"></c-input>
                </el-form-item>
            </c-col>
            <c-col :span="8">
                <el-form-item label="" label-width="8px">
                    <c-button size="small" type="primary;width:10%" @click="onSeainf('dftcre.dfdgrp.apl.pts.extkey')">i</c-button>
                    <c-button size="small" type="primary" @click="onFippDet">
                        Details
                    </c-button>
                </el-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item label="Address Block" prop="dftcre.dfdgrp.apl.pts.adrblk">
                    <c-input type="textarea" :autosize="{ minRows: 1, maxRows: 4}" :rows="3" v-model="model.dftcre.dfdgrp.apl.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block"></c-input>
                </el-form-item>
“yanyuxin” committed
400
            </c-col> -->
“yanyuxin” committed
401

402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
        <c-col :span="24">
          <c-ptap
            :model="model"
            :argadr="{
              title: '申请人',
              grp: 'trdgrp',
              rol: 'fip',
            }"
            :isAdrblk="true"
            :disabledExtkey="true"
            :disabled="true"
            :disabledRef="true"
            @onSeainf="onSeainf"
          >
          </c-ptap>
        </c-col>
“yanyuxin” committed
418

419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
        <c-col :span="24">
          <c-form-item label="代付行参考号" prop="dftcre.dfdgrp.dff.pts.ref">
            <c-input
              :disabled="false"
              v-model="model.dftcre.dfdgrp.dff.pts.ref"
              placeholder="请输入代付行参考号"
            ></c-input>
          </c-form-item>
        </c-col>
        <c-col :span="24">
          <el-form-item
            label="代付行"
            prop="dftcre.dfdgrp.dff.pts.extkey"
            style="width: 100%"
          >
            <c-fullbox>
              <c-input
                :disabled="false"
                v-model="model.dftcre.dfdgrp.dff.pts.extkey"
                placeholder="请输入代付行Extkey"
                @keyup.enter.native="
                  showGridPromptDialog('dftcre.dfdgrp.dff.pts.extkey')
                "
                @change="valueChange"
              ></c-input>
              <template slot="footer">
                <c-button
                  :disabled="false"
                  style="margin: 0 10px 0 10px; padding: 0 12px"
                  size="small"
                  type="primary"
                  icon="el-icon-search"
                  @click="onSeainf('dftcre.dfdgrp.dff.pts.extkey')"
                >
                </c-button>
                <c-button
                  style="margin: 0 0"
                  size="small"
                  type="primary"
                  @click="onAplpDet"
                >
                  {{ $t("buttons.details") }}
                </c-button>
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>
“yanyuxin” committed
466

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
        <c-col :span="24">
          <el-form-item
            :label="`代付行地址`"
            prop="dftcre.dfdgrp.dff.pts.adrelc`"
          >
            <c-input
              type="textarea"
              :rows="2"
              v-model="model.dftcre.dfdgrp.dff.pts.adrelc"
              placeholder="请输入代付行地址"
              :disabled="true"
              maxlength="35"
              show-word-limit
            ></c-input>
          </el-form-item>
        </c-col>

        <!-- S0000038 : 代付行        Ref. -->

        <!-- <c-col :span="16">
“yanyuxin” committed
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
                <c-form-item label="代付行" prop="dftcre.dfdgrp.dff.pts.ref">
                    <c-input  v-model="model.dftcre.dfdgrp.dff.pts.ref" maxlength="16"  placeholder="请输入代付行"></c-input>
                </c-form-item>
            </c-col>
               
                        
            <c-col :span="16">
                <c-form-item label="Drag  Drop Sender" prop="dftcre.dftp.dffp.ptsget.sdamod.dadsnd">
                    <c-input  v-model="model.dftcre.dftp.dffp.ptsget.sdamod.dadsnd"  :placeholder="$t('other.please_enter')+'Drag  Drop Sender'"></c-input>
                </c-form-item>
            </c-col>
                        
            <c-col :span="16">
                <c-form-item label="External Key of Address" prop="dftcre.dfdgrp.dff.pts.extkey">
                    <c-input  v-model="model.dftcre.dfdgrp.dff.pts.extkey" maxlength="16"  :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input>
                </c-form-item>
            </c-col>
                        
            <c-col :span="16">
                <c-form-item label="" prop="dftcre.dftp.dffp.ptsget.sdamod.seainf">
                    <c-input  v-model="model.dftcre.dftp.dffp.ptsget.sdamod.seainf"  :placeholder="$t('other.please_enter')+''"></c-input>
                </c-form-item>
            </c-col>
                        
            <c-col :span="4">
                <c-button size="small" type="primary"  @click="onDffpDet">
                    Details
                </c-button>
            </c-col>
                       
“yanyuxin” committed
517
                        <!- S0000012 : 天 -->
518 519

        <!-- <c-col :span="16">
“yanyuxin” committed
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
                <c-form-item label="名称" prop="dftcre.dfdgrp.dff.namelc">
                    <c-input type="textarea" :autosize="{ minRows: 1, maxRows: 4}" v-model="model.dftcre.dfdgrp.dff.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
                </c-form-item>
                </c-col>
                        
            <c-col :span="16">
                <c-form-item label="Address Block" prop="dftcre.dfdgrp.dff.pts.adrblk">
                    <c-input type="textarea" :autosize="{ minRows: 1, maxRows: 4}" v-model="model.dftcre.dfdgrp.dff.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
                </c-form-item>
                </c-col>
                        
            <c-col :span="16">
                <c-form-item label="Chinese address" prop="dftcre.dfdgrp.dff.dbfadrblkcn">
                    <c-input type="textarea" :autosize="{ minRows: 1, maxRows: 4}" v-model="model.dftcre.dfdgrp.dff.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address'" ></c-input>
                </c-form-item>
                </c-col>
                              
            <c-col :span="16">
                <c-form-item label="地址" prop="dftcre.dfdgrp.dff.adrelc">
                    <c-input type="textarea" :autosize="{ minRows: 1, maxRows: 4}" v-model="model.dftcre.dfdgrp.dff.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
                </c-form-item>
                </c-col>
    
            <c-col :span="16">
                <span  v-text="model.dftcre.dftp.pctlab"   data-path=".dftcre.dftp.pctlab" > </span>
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
            </c-col> -->
        <!-- S0000041 : 代付行核心客户号 -->

        <c-col :span="16">
          <c-form-item label="代付行核心账号" prop="dftcre.dfdgrp.rec.bankno">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.bankno"
              maxlength="16"
              placeholder="请输入代付行核心账号"
            ></c-input>
          </c-form-item>
        </c-col>

        <!-- S0000040 : 代付行中文名 -->
        <c-col :span="16">
          <c-form-item label="代付行中文名" prop="dftcre.dfdgrp.rec.bankcn">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.bankcn"
              maxlength="40"
              placeholder="请输入代付行中文名"
            ></c-input>
          </c-form-item>
        </c-col>
        <!-- S0000025 : 代付金额: -->
        <!-- S0000035 : 代付利息 -->

        <!-- <c-col :span="16">
“yanyuxin” committed
572 573
                <el-form-item label="代付金额" prop="dftcre.dfucur">
                    <c-select v-model="model.dftcre.dfucur" style="width:100%"  placeholder="请输入代付金额">
“yanyuxin” committed
574
                        <el-option v-for="item in codes.dfucur" :key="item.value" :label="item.label" :value="item.value"></el-option>
“yanyuxin” committed
575 576 577 578 579 580 581 582
                    </c-select>
                </el-form-item>
            </c-col>
                        
            <c-col :span="16">
                <c-form-item label="代付金额" prop="dftcre.dfuamt">
                    <c-input  v-model="model.dftcre.dfuamt"  placeholder="代付金额"></c-input>
                </c-form-item>
“yanyuxin” committed
583
            </c-col> -->
584 585 586 587 588 589 590 591 592 593 594
        <!-- S0000042 : 同业代付内部账号 -->

        <c-col :span="16">
          <c-form-item label="同业代付内部账号" prop="dftcre.dfdgrp.rec.bnkact">
            <c-input
              v-model="model.dftcre.dfdgrp.rec.bnkact"
              maxlength="32"
              placeholder="请输入同业代付内部号"
              :disabled="true"
            ></c-input>
          </c-form-item>
“yanyuxin” committed
595
        </c-col>
596 597 598 599 600 601 602
      </c-col>
      <c-grid-ety-prompt-dialog
        ref="etyDialog"
        :promptData="promptData"
        v-on:select-ety="selectEty"
      >
      </c-grid-ety-prompt-dialog>
“yanyuxin” committed
603 604 605 606
    </c-row>
  </div>
</template>
<script>
607
import Api from "~/service/Api";
“yanyuxin” committed
608
import commonProcess from "~/mixin/commonProcess";
609 610
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Trtopn/Event";
“yanyuxin” committed
611
import Ptap from "~/views/Public/Ptap";
“yanyuxin” committed
612 613

export default {
614 615 616 617 618 619 620 621 622
  components: { "c-ptap": Ptap },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: {
    ...Event,
“yanyuxin” committed
623 624 625 626 627 628 629 630 631 632 633 634 635 636
    onSeainf(data) {
      this.$emit("onSeainf", data);
    },

    onAplpDet() {
      this.$emit("onAplpDet");
    },

    valueChange() {
      if (this.onlySearch) return;
      // this.showGridPromptDialog(
      //   `${this.argadr.grp}.${this.argadr.rol}.pts.extkey`
      // );
    },
637 638 639
    created: function () {},
  },
};
“yanyuxin” committed
640
</script>
641
<style></style>