Finp.vue 20.1 KB
Newer Older
1
<template>
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
    <div class="eibs-tab">
        <!-- ======================top--left================== -->
        <c-col :span="11">
            <c-col :span="24">
                <el-form-item label="Parent Contract" prop="trdgrp.rec.pntref">
                    <c-input
                        v-model="model.trdgrp.rec.pntref"
                        maxlength="16"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item
                    label="Finance Reference"
                    prop="trdgrp.rec.ownref"
                >
                    <c-input
                        v-model="model.trdgrp.rec.ownref"
                        maxlength="16"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
        </c-col>
        <!-- ======================top--right==================== -->
        <c-col :span="11" :offset="1">
            <c-col :span="24">
                <el-form-item label="Name" prop="trdgrp.rec.pntnam">
                    <c-input
                        v-model="model.trdgrp.rec.pntnam"
                        maxlength="40"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item label="Name" prop="trdgrp.rec.nam">
                    <c-input
                        v-model="model.trdgrp.rec.nam"
                        maxlength="40"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
        </c-col>
liushikai committed
52

53 54 55 56 57 58 59 60 61 62 63 64
        <!-- <c-col :span="24"><div style="height: 50px"></div></c-col> -->
        <!--=========================middle--left==================  -->
        <c-col :span="11">
            <c-col :span="24">
                <el-form-item label="Finance Date" prop="trdgrp.rec.issdat">
                    <c-input
                        v-model="model.trdgrp.rec.issdat"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
liushikai committed
65

66
            <!-- <c-col :span="24">
67
        <el-form-item label="Drag  Drop Sender">
liushikai committed
68 69 70 71
          <c-input
            v-model="model.fipp.ptsget.sdamod.dadsnd"
            placeholder="请输入Drag  Drop Sender"
          ></c-input>
72
        </el-form-item>
潘际乾 committed
73
      </c-col> -->
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 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="Finance Type" prop="trdgrp.rec.fintyp">
                    <c-input
                        v-model="model.trdgrp.rec.fintyp"
                        placeholder=""
                        disabled
                    >
                    </c-input>
                </el-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item label="Financing of" prop="trdgrp.rec.pctfin">
                    <c-col :span="22">
                        <c-input
                            v-model="model.trdgrp.rec.pctfin"
                            placeholder=""
                            disabled
                        ></c-input>
                    </c-col>
                    <c-col :span="2" style="text-align: center"> % </c-col>
                </el-form-item>
            </c-col>
            <c-col :span="24">
                <el-form-item label="Finance Amount" prop="trdgrp.cbs.max.cur">
                    <c-col :span="5">
                        <c-input
                            v-model="model.trdgrp.cbs.max.cur"
                            placeholder=""
                            disabled
                        ></c-input>
                    </c-col>
                    <c-col :span="19" prop="trdgrp.cbs.max.amt">
                        <el-form-item label="" label-width="2%">
                            <c-input
                                v-model="model.trdgrp.cbs.max.amt"
                                placeholder=""
                                disabled
                            ></c-input>
                        </el-form-item>
                    </c-col>
                </el-form-item>
            </c-col>
            <!-- <c-col :span="24">
liushikai committed
117 118 119 120 121 122 123 124 125
        <el-form-item label="Chinese address">
          <c-input
            type="textarea"
            v-model="model.trdgrp.fip.dbfadrblkcn"
            maxlength="35"
            show-word-limit
            placeholder="请输入Chinese address"
          ></c-input>
        </el-form-item>
潘际乾 committed
126
      </c-col> -->
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
        </c-col>
        <!-- =====================middle--right===================== -->
        <c-col :span="11" :offset="1">
            <c-col :span="24">
                <el-form-item
                    label="Financed Party Ref."
                    prop="trdgrp.fip.pts.ref"
                >
                    <c-input
                        v-model="model.trdgrp.fip.pts.ref"
                        maxlength="16"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
liushikai committed
143

144
            <!-- <c-col :span="24">
145
        <el-form-item label="External Key of Address">
liushikai committed
146 147 148 149 150
          <c-input
            v-model="model.trdgrp.fip.pts.extkey"
            maxlength="16"
            placeholder="请输入External Key of Address"
          ></c-input>
151
        </el-form-item>
潘际乾 committed
152
      </c-col> -->
liushikai committed
153

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
            <c-col :span="24">
                <el-form-item label="" prop="trdgrp.fip.pts.extkey">
                    <c-fullbox>
                        <c-input
                            v-model="model.trdgrp.fip.pts.extkey"
                            placeholder=""
                            style="width: 100%"
                            disabled
                        ></c-input>
                        <template slot="footer">
                            <c-button
                                size="small"
                                type="primary"
                                icon="el-icon-search"
                                @click="onSeainf"
                            ></c-button>
                            <c-button
                                size="small"
                                type="primary"
                                @click="onFippDet"
                            >
                                详情
                            </c-button>
                        </template>
                    </c-fullbox>
                </el-form-item>
            </c-col>
liushikai committed
181

182 183 184 185 186 187 188 189 190 191 192 193 194 195
            <c-col :span="24">
                <el-form-item label="" prop="trdgrp.fip.pts.adrblk">
                    <c-input
                        type="textarea"
                        v-model="model.trdgrp.fip.pts.adrblk"
                        maxlength="150"
                        show-word-limit
                        placeholder=""
                        disabled
                        rows="4"
                    ></c-input>
                </el-form-item>
            </c-col>
            <!-- <c-col :span="24">
196
        <el-form-item label="Address Block">
liushikai committed
197 198 199 200 201 202 203 204
          <c-input
            type="textarea"
            v-model="model.trdgrp.fip.pts.adrblk"
            maxlength="35"
            show-word-limit
            placeholder="请输入Address Block"
          ></c-input>
        </el-form-item>
潘际乾 committed
205 206
      </c-col>
      <c-col :span="24">
207
        <el-form-item label="地址">
liushikai committed
208 209 210 211 212 213 214 215
          <c-input
            type="textarea"
            v-model="model.trdgrp.fip.adrelc"
            maxlength="35"
            show-word-limit
            placeholder="请输入地址"
          ></c-input>
        </el-form-item>
潘际乾 committed
216
      </c-col> -->
217
        </c-col>
liushikai committed
218

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
        <!-- <c-col :span="24"><div style="height: 50px"></div></c-col> -->
        <!-- ==========================bottom-left========================== -->
        <c-col :span="11" style="margin-top: 20px">
            <c-col :span="24">
                <el-form-item label="融资金额" prop="trdgrp.cbs.max.cur">
                    <c-col :span="5">
                        <c-input
                            v-model="model.trdgrp.cbs.max.cur"
                            placeholder=""
                            disabled
                        ></c-input>
                    </c-col>
                    <c-col :span="12" prop="trdgrp.cbs.max.amt">
                        <el-form-item label="" label-width="2%">
                            <c-input
                                v-model="model.trdgrp.cbs.max.amt"
                                placeholder=""
                                disabled
                            ></c-input>
                        </el-form-item>
                    </c-col>
                    <c-col :span="5" prop="trdgrp.rec.pctfin">
                        <el-form-item label="" label-width="5%">
                            <c-input
                                v-model="model.trdgrp.rec.pctfin"
                                placeholder=""
                                disabled
                            ></c-input>
                        </el-form-item>
                    </c-col>
                    <c-col :span="2" style="text-align:center">
                        %
                    </c-col>
                </el-form-item>
            </c-col>
liushikai committed
254

255
            <!-- <c-col :span="24">
256
        <el-form-item label="%">
liushikai committed
257 258 259 260 261
          <c-input
            v-model="model.finmod.fincod"
            maxlength="17"
            placeholder="请输入%"
          ></c-input>
262
        </el-form-item>
潘际乾 committed
263
      </c-col> -->
liushikai committed
264

265 266 267 268 269 270 271 272 273 274
            <c-col :span="24">
                <el-form-item label="计息周期" prop="finmod.intprd">
                    <c-input
                        v-model="model.finmod.intprd"
                        placeholder=""
                        disabled
                    >
                    </c-input>
                </el-form-item>
            </c-col>
liushikai committed
275

276 277 278 279 280 281 282 283 284 285
            <c-col :span="24">
                <el-form-item label="利率调整方式" prop="finmod.ratchgtyp">
                    <c-input
                        v-model="model.finmod.ratchgtyp"
                        placeholder=""
                        disabled
                    >
                    </c-input>
                </el-form-item>
            </c-col>
liushikai committed
286

287 288 289
            <c-col :span="24">
                <c-col :span="11">
                    <el-form-item label="开户日期" prop="trdgrp.rec.stttendat">
liuxin committed
290 291 292
                        <c-date-picker
                            type="date"
                            value-format="yyyy-MM-dd"
293 294 295 296
                            v-model="model.trdgrp.rec.stttendat"
                            style="width: 100%"
                            placeholder=""
                            disabled
liuxin committed
297
                        ></c-date-picker>
298 299 300 301 302 303 304 305
                    </el-form-item>
                </c-col>
                <c-col :span="11" :offset="2">
                    <el-form-item
                        label="到期日"
                        label-position="left"
                        prop="trdgrp.rec.matdat"
                    >
liuxin committed
306 307 308
                        <c-date-picker
                            type="date"
                            value-format="yyyy-MM-dd"
309 310 311 312
                            style="width: 100%"
                            v-model="model.trdgrp.rec.matdat"
                            placeholder=""
                            disabled
liuxin committed
313
                        ></c-date-picker>
314 315 316
                    </el-form-item>
                </c-col>
            </c-col>
liushikai committed
317

318 319 320 321 322 323 324 325 326
            <c-col :span="24">
                <el-form-item label="基准利率" prop="trdgrp.rec.intrat">
                    <c-input
                        v-model="model.trdgrp.rec.intrat"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
liushikai committed
327

328 329 330 331 332 333 334 335 336
            <c-col :span="24">
                <el-form-item label="执行利率" prop="trdgrp.rec.actrat">
                    <c-input
                        v-model="model.trdgrp.rec.actrat"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
liushikai committed
337

338 339 340 341 342 343 344 345 346 347
            <c-col :span="24">
                <el-form-item label="第一还款账号" prop="finmod.act1">
                    <c-input
                        v-model="model.finmod.act1"
                        maxlength="21"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
liushikai committed
348

349 350 351 352 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="finmod.intamt">
                    <c-input
                        v-model="model.finmod.intamt"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
        </c-col>
        <!-- =========================bottom--right======================== -->
        <c-col :span="11" :offset="1" style="margin-top: 20px">
            <c-col :span="24">
                <el-form-item label="借据号" prop="finmod.fincod">
                    <c-input
                        v-model="model.finmod.fincod"
                        placeholder=""
                        disabled
                    >
                    </c-input>
                </el-form-item>
            </c-col>
liushikai committed
371

372 373 374 375 376 377 378 379 380
            <c-col :span="24">
                <el-form-item label="计息日期" prop="finmod.intdat">
                    <c-input
                        v-model="model.finmod.intdat"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
liushikai committed
381

382 383 384 385 386 387 388 389 390 391 392 393
            <c-col :span="24">
                <c-col :span="11">
                    <el-form-item label="利率调整周期" prop="finmod.ratchgprd">
                        <c-input
                            v-model="model.finmod.ratchgprd"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        >
                        </c-input>
                    </el-form-item>
                </c-col>
liushikai committed
394

395 396 397 398 399 400 401 402 403 404 405 406 407 408
                <c-col :span="11" :offset="2">
                    <el-form-item
                        label="月日数"
                        prop="finmod.ratchgda"
                    >
                        <c-input
                            v-model="model.finmod.ratchgdat"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        ></c-input>
                    </el-form-item>
                </c-col>
            </c-col>
liushikai committed
409

410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
            <c-col :span="24">
                <c-col :span="11">
                    <el-form-item label="融资天数" prop="trdgrp.rec.tenday">
                        <c-input
                            v-model="model.trdgrp.rec.tenday"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        ></c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="11" :offset="2">
                    <el-form-item
                        label="宽限期"
                        prop="finmod.graday"
                    >
                        <c-input
                            v-model="model.finmod.graday"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        ></c-input>
                    </el-form-item>
                </c-col>
            </c-col>
liushikai committed
435

436 437 438 439 440 441 442 443 444 445 446 447
            <c-col :span="24">
                <c-col :span="11">
                    <el-form-item label="浮动方式" prop="finmod.flttyp">
                        <c-input
                            v-model="model.finmod.flttyp"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        >
                        </c-input>
                    </el-form-item>
                </c-col>
liushikai committed
448

449 450 451 452 453 454 455 456 457 458 459 460 461 462
                <c-col :span="11" :offset="2">
                    <el-form-item
                        label="浮动值"
                        prop="finmod.fltval"
                    >
                        <c-input
                            v-model="model.finmod.fltval"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        ></c-input>
                    </el-form-item>
                </c-col>
            </c-col>
liushikai committed
463

464
            <!-- <c-col :span="24">
liushikai committed
465
        <span v-text="model.finmod.pctlab" data-path=".finmod.pctlab"> </span>
潘际乾 committed
466
      </c-col> -->
467 468 469 470 471 472 473 474 475 476 477 478
            <c-col :span="24">
                <c-col :span="11">
                    <el-form-item label="逾期计息方式" prop="finmod.ovdinttyp">
                        <c-input
                            v-model="model.finmod.ovdinttyp"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        >
                        </c-input>
                    </el-form-item>
                </c-col>
liushikai committed
479

480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
                <c-col :span="11" :offset="2">
                    <el-form-item
                        label="罚息比率"
                        prop="finmod.ovdintrat"
                    >   
                        <c-col :span="20">
                            <c-input
                                v-model="model.finmod.ovdintrat"
                                placeholder=""
                                disabled
                                style="width: 100%"
                            ></c-input>
                        </c-col>
                        <c-col :span="4" style="text-align:center">
                            %
                        </c-col>
                    </el-form-item>
                </c-col>
            </c-col>
liushikai committed
499

500 501 502 503 504 505 506 507 508 509 510 511
            <c-col :span="24">
                <c-col :span="11">
                    <el-form-item label="第三方还款方式" prop="finmod.acttyp">
                        <c-input
                            v-model="model.finmod.acttyp"
                            style="width: 100%"
                            placeholder=""
                            disabled
                        >
                        </c-input>
                    </el-form-item>
                </c-col>
liushikai committed
512

513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
                <c-col :span="11" :offset="2">
                    <el-form-item
                        label="入账机构"
                        prop="finmod.accbch"
                    >
                        <c-input
                            v-model="model.finmod.accbch"
                            placeholder=""
                            disabled
                            style="width: 100%"
                        >
                        </c-input>
                    </el-form-item>
                </c-col>
            </c-col>
liushikai committed
528

529 530 531 532 533 534 535 536 537 538 539 540
            <c-col :span="24">
                <el-form-item label="第三方还款账号" prop="finmod.act3">
                    <c-input
                        v-model="model.finmod.act3"
                        maxlength="21"
                        placeholder=""
                        disabled
                    ></c-input>
                </el-form-item>
            </c-col>
        </c-col>
    </div>
541 542
</template>
<script>
liushikai committed
543
import Api from "~/service/Api";
wangren committed
544
import commonProcess from "~/mixin/commonProcess";
liushikai committed
545 546
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptopn/Event";
547 548

export default {
549 550
    inject: ["root"],
    props: ["model", "codes"],
wangren committed
551
    mixins: [commonProcess],
552 553 554 555 556
    data() {
        return {};
    },
    methods: { ...Event, onSeainf() {} },
    created: function () {},
liushikai committed
557
};
558 559 560
</script>
<style>
</style>