Infsea.vue 17.8 KB
Newer Older
WH committed
1 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 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
<template>
  <div class="eibs-tab">
    <c-list-search
      @form-reset="handleReset('paramsForm')"
      @form-search="handleSearch"
    >
      <template v-slot="searchSlot">
        <el-form
          class="m-table-search-form"
          ref="paramsForm"
          label-position="right"
          label-width="110px"
          size="small"
        >
          <el-row>
            <c-col :span="8">
              <el-form-item
                label="信用证编号"
                prop="infcon.seaownref"
                style="width: 100%"
              >
                <c-input
                  v-model="model.infcon.seaownref"
                  maxlength="16"
                  placeholder="请输入信用证编号"
                ></c-input>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="开立日期"
                prop="infcon.opndatfrom"
                style="width: 100%"
              >
                <c-col :span="11">
                  <c-date-picker
                    type="date"
                    v-model="model.infcon.opndatfrom"
                    placeholder="请选择起始日期"
                    value-format="yyyy-MM-dd"
                    style="width: 100%"
                  ></c-date-picker>
                </c-col>
                <c-col :span="2" style="text-align: center">
                  <label style="display: inline-block; width: 100%">-</label>
                </c-col>
                <c-col :span="11">
                  <c-date-picker
                    type="date"
                    v-model="model.infcon.opndatto"
                    placeholder="请选择截止日期"
                    style="width: 100%"
                    value-format="yyyy-MM-dd"
                  ></c-date-picker>
                </c-col>
              </el-form-item>
            </c-col>
            <c-col :span="8">
              <el-form-item
                label="业务简略信息"
                prop="infcon.nam"
                style="width: 100%"
              >
                <c-input
                  v-model="model.infcon.nam"
                  maxlength="40"
                  placeholder="请输入业务简略信息"
                  style="width: 100%"
                >
                </c-input>
              </el-form-item>
            </c-col>
          </el-row>
          <el-row v-show="searchSlot.searchToggle">
            <c-col :span="8">
              <el-form-item
                label="当事人参考号"
                prop="infcon.searef"
                style="width: 100%"
              >
                <c-input
                  v-model="model.infcon.searef"
                  maxlength="16"
                  placeholder="请输入当事人参考号"
                ></c-input>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="当事人编号"
                prop="infcon.pty.extkey"
                style="width: 100%"
              >
                <c-input
                  v-model="model.infcon.pty.extkey"
                  maxlength="24"
                  placeholder="请输入当事人编号"
                ></c-input>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="当事人名称"
                prop="infcon.pty.nam"
                style="width: 100%"
              >
                <c-input
                  v-model="model.infcon.pty.nam"
                  maxlength="40"
                  placeholder="请输入当事人名称"
                  disabled
                ></c-input>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="当事人BIC编码"
                prop="infcon.seapty"
                style="width: 100%"
              >
                <c-input
                  v-model="model.infcon.seapty"
                  maxlength="24"
                  placeholder="请输入当事人BIC编码"
                ></c-input>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="当事人角色"
                prop="infcon.searol"
                style="width: 100%"
              >
                <c-select
                  v-model="model.infcon.searol"
                  style="width: 100%"
                  placeholder="请选择当事人角色"
                >
                  <el-option
                    v-for="item in codes.searol1"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="客户经理"
                disabled
                prop="infcon.usr.extkey"
                style="width: 100%"
              >
                <c-input
                  v-model="model.infcon.usr.extkey"
                  maxlength="8"
                  placeholder="请输入客户经理"
                  disabled
                ></c-input>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="业务状态"
                prop="infcon.seasta"
                style="width: 100%"
              >
                <c-select
                  v-model="model.infcon.seasta"
                  style="width: 100%"
                  placeholder="请选择业务状态"
                >
                  <el-option
                    v-for="item in codes.seasta"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="币种"
                prop="infcon.seacur"
                style="width: 100%"
              >
                <c-select
                  v-model="model.infcon.seacur"
                  style="width: 100%"
                  placeholder="请选择币种"
                >
                  <el-option
                    v-for="item in codes.curtxt1"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item label="金额区间" style="width: 100%">
                <c-col :span="11">
                  <c-input
                    v-model="model.infcon.seaamtfr"
                    placeholder="请输入金额下限"
                    style="width: 100%"
                  ></c-input>
                </c-col>
                <c-col :span="2" style="text-align: center">
                  <label style="display: inline-block; width: 100%">-</label>
                </c-col>
                <c-col :span="11">
                  <c-input
                    v-model="model.infcon.seaamtto"
                    placeholder="请输入金额上限"
                    style="width: 100%"
                  ></c-input>
                </c-col>
              </el-form-item>
            </c-col>

            <c-col :span="8">
              <el-form-item
                label="信用证类型"
                prop="sealcrtyp"
                style="width: 100%"
              >
                <c-select
                  v-model="model.sealcrtyp"
                  :code="codes.lcrtyp1"
                  style="width: 100%"
                  placeholder="请选择信用证类型"
                >
                </c-select>
              </el-form-item>
            </c-col>
          </el-row>
        </el-form>
      </template>
    </c-list-search>

WH committed
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
    <c-col :span="24" style="margin-top: 10px">
      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 0px" title="LETNOT"
                @click="toLetnot">
        出口信用证预开立
      </c-button>

      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 10px" title="LETOPN"
                @click="toLetopn">
        出口信用证开立
      </c-button>

      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 10px" title="LETDRW"
                @click="toLetdrw">
        非我行通知及收单行登记
      </c-button>

      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 10px" title="LETRSV"
                @click="toLetrsv">
        出口信用证补通知
      </c-button>
    </c-col>

WH committed
279 280 281 282 283 284 285
    <div style="height: 90%">
      <c-col :span="24">
        <el-table
            :data="stmData.data"
            :columns="stmData.columns"
            :showButtonFlg="true"
        >
WH committed
286 287 288 289 290 291
          <el-table-column
              v-for="(item, key) in stmData.columns"
              :key="key"
              :label="item.label"
              :prop="item.prop"
          ></el-table-column>
WH committed
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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
          <!-- 自定义组件里加了最右边的一列”操作“ -->
          <el-table-column fixed="right" prop="op" label="操作" width="140px">
            <template slot="header">
              <!-- 插槽里放了一个文字 一个按钮 -->
              <c-col :span="11" style="text-align: center"
                ><span>操作</span>
              </c-col>
            </template>
            <template slot-scope="scope">
              <!-- 申请一个弹出主键放在插槽,加工已渲染的数据 -->
              <el-popover
                placement="top-start"
                title="历史信息"
                width="800"
                trigger="click"
                :ref="'popover_' + scope.row.IDX"
              >
                <div
                  style="
                    text-align: right;
                    margin-top: -30px;
                    margin-right: 5px;
                    font-size: 16px;
                  "
                >
                  <span
                    class="el-icon-close"
                    style="cursor: pointer"
                    @click="closeDetailsDialog('popover_' + scope.row.IDX)"
                  ></span>
                </div>
                <el-table
                    :data="trnData.data"
                    :columns="trnData.columns"
                    :showButtonFlg="true"
                >
                  <el-table-column
                      v-for="(item, key) in trnData.columns"
                      :key="key"
                      :label="item.label"
                      :prop="item.prop"
                  >
                    <template slot-scope="scope">
                      <div>{{ scope.row[item.prop] }}</div>
                    </template>
                  </el-table-column>
                  <el-table-column
                      fixed="right"
                      prop="op"
                      label="操作"
                      width="250px"
                  >
                    <template slot-scope="scope">
                      <c-button
                          style="margin-left: 0"
                          size="small"
                          @click="display(scope.row['inr'])"
                      >详情</c-button
                      >
                    </template>
                  </el-table-column>
                </el-table>
                <c-button
                  style="margin-left: 0px"
                  size="small"
                  @click="details(scope.row)"
                  slot="reference"
                >
                  详情
                </c-button>
              </el-popover>
              <c-button
                style="margin-left: 5px"
                size="small"
                type="primary"
                @click="handler(scope.row)"
              >处理
              </c-button>
            </template>
          </el-table-column>
        </el-table>
WH committed
373 374 375 376 377 378 379 380 381 382 383 384
        <div class="pagination-box">
          <el-pagination
              style="margin-right: 30px;"
              @size-change="handleSizeChange"
              @current-change="handleCurrentChange"
              :current-page.sync="pagination.pageIndex"
              :page-sizes="[10, 20, 50, 100, 500]"
              :page-size="pagination.pageSize"
              layout="sizes, prev, pager, next"
              :total="pagination.total">
          </el-pagination>
        </div>
WH committed
385
      </c-col>
WH committed
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
      <!-- 点击处理ba弹框 -->
      <el-dialog
          :visible.sync="initdialog"
          title="交易列表"
          append-to-body
          width="60%"
      >
        <div class="dialog-wrap">
          <div class="btn-group-wrap">
            <div
                class="btn-item"
                v-for="(item, index) in handlerDataList"
                :key="index"
            >
              <el-button
                  type="primary"
                  :disabled="item.value === 'N'"
                  @click="handleClick(item)"
              >{{ item.label }}
              </el-button>
            </div>
          </div>
        </div>
      </el-dialog>

WH committed
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
    </div>

    <m-busbtn
      ref="childs"
      :ownref="ownref"
      trnCode="letsel"
      ownrefPath="ledgrp"
      :model="letselModel"
    ></m-busbtn>
<!--    @onChoose="onChoose"-->
  </div>
</template>
<script>
import LetselModel from "~/model/Letsel";
import BusNavbar from "~/views/Public/BusNavbar";

import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
WH committed
433
  components: { "m-busbtn": BusNavbar },
WH committed
434 435
  data() {
    return {
WH committed
436
      // letselModel: new LetselModel().data,
WH committed
437 438
      curinr: "",
      ownref: "",
WH committed
439
      // dialogTableVisible: false,
WH committed
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 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
      trnData: {
        columns: [
          {
            label: "交易id",
            prop: "inr",
          },
          {
            label: "单据编号",
            prop: "ownref",
          },
          {
            label: "交易名称",
            prop: "ininam",
          },
          {
            label: "条目",
            prop: "inidattim",
          },
          {
            label: "状态",
            prop: "relflg",
          },
          {
            label: "币种",
            prop: "reloricur",
          },
          {
            label: "相关金额",
            prop: "reloriamt",
          },
          {
            label: "标识",
            prop: "relres",
          },
        ],
        data: [],
      },
      stmData: {
        columns: [
          {
            label: "信用证编号",
            prop: "ownref",
          },
          {
            label: "客户经理",
            prop: "ownusr",
          },
          {
            label: "期限日",
WH committed
489
            prop: "tenmaxday",
WH committed
490 491 492
          },
          {
            label: "开立日期",
WH committed
493
            prop: "opndat",
WH committed
494 495 496
          },
          {
            label: "生效日期",
WH committed
497
            prop: "expdat",
WH committed
498 499 500
          },
          {
            label: "关闭日期",
WH committed
501
            prop: "clsdat",
WH committed
502 503 504
          },
          {
            label: "分行名称",
WH committed
505
            prop: "bchname",
WH committed
506 507 508
          },
          {
            label: "申请人编号",
WH committed
509
            prop: "aplextkey",
WH committed
510 511 512
          },
          {
            label: "申请人名称",
WH committed
513
            prop: "aplnam",
WH committed
514 515 516
          },
          {
            label: "PTA主键",
WH committed
517
            prop: "ptainr",
WH committed
518
          },
WH committed
519 520 521 522
          // {
          //   label: "受益人编号",
          //   prop: "stagod",
          // },
WH committed
523 524
          {
            label: "受益人名称",
WH committed
525
            prop: "benefi",
WH committed
526
          },
WH committed
527 528 529 530 531 532 533 534
          // {
          //   label: "受益人名称(中文)",
          //   prop: "stagod",
          // },
          // {
          //   label: "开证行编号",
          //   prop: "stagod",
          // },
WH committed
535

WH committed
536 537 538 539
          // {
          //   label: "开证名称",
          //   prop: "stagod",
          // },
WH committed
540 541
          {
            label: "金额币种",
WH committed
542
            prop: "seacur",
WH committed
543 544 545
          },
          {
            label: "信用证金额",
WH committed
546
            prop: "maxamt",
WH committed
547 548 549 550
          },

          {
            label: "余额币种",
WH committed
551
            prop: "seacur",
WH committed
552 553 554
          },
          {
            label: "信用证余额",
WH committed
555
            prop: "opnamt",
WH committed
556 557 558 559 560 561 562 563 564 565 566 567 568
          },
        ],
        data: [],
      },
      pagination: {
        pageIndex: 1,
        pageSize: 10,
        total: 0,
      },

      initdialog: false,
      handlerDataList: [],
      btnRouteMap: [
WH committed
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
        {
          label: '收单',
          route: '/business-new/letdrv'
        },
        {
          label: '修改通知',
          route: '/business-new/letame'
        },
        {
          label: '注销',
          route: '/business-new/letcan'
        },
        {
          label:'收单加补录',
          route:'/business-new/letdrw'
        },
        {
          label:'转让证开立',
          route:'/business-new/lttopn'
        },
        {
          label:'开证',
          route:'/business-new/letopn'
        },
        {
          label:'保兑',
          route:'/business-new/letamc'
        },
        {
          label:'通知到单',
          route:'/business-new/letdav'
        },
WH committed
601 602 603 604 605 606 607 608 609 610
      ],
      currentHandleRow: {},
    };
  },

  methods: {},
  mounted: function () {},
};
</script>
<style>
WH committed
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
.pagination-box {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  background: #fff;
  margin-top: 5px;
}
.btn-group-wrap {
  max-height: 200px;
  width: 100%;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.btn-item {
  margin-bottom: 10px;
  margin-right: 10px;
WH committed
633 634
}
</style>