Infsea.vue 17.4 KB
Newer Older
1
<template>
2 3 4 5 6 7 8 9
  <div class="eibs-tab">
    <el-form
      class="m-table-search-form"
      ref="paramsForm"
      label-position="right"
      label-width="110px"
      size="small"
    >
liushikai committed
10 11 12 13
      <c-row>
        <c-col :span="24">
          <c-col :span="8">
            <el-form-item
nanrui committed
14
              label="汇款编号"
liushikai committed
15 16
              prop="infcon.seaownref"
              style="width: 100%"
17
            >
liushikai committed
18 19 20
              <c-input
                v-model="model.infcon.seaownref"
                maxlength="16"
nanrui committed
21
                placeholder="请输入汇款编号"
liushikai committed
22 23 24 25 26
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
nanrui committed
27
              label="开立日期"
liushikai committed
28 29
              prop="infcon.opndatfrom"
              style="width: 100%"
30
            >
liushikai committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
              <c-col :span="11">
                <c-date-picker
                  type="date"
                  v-model="model.infcon.opndatfrom"
                  style="width: 100%"
                  placeholder="请选择"
                ></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"
                  style="width: 100%"
                  placeholder="请选择"
                ></c-date-picker>
              </c-col>
            </el-form-item>
          </c-col>
          <c-col :span="8">
wangna committed
53 54 55 56 57
            <el-form-item
              label="简略信息"
              prop="infcon.nam"
              style="width: 100%"
            >
liushikai committed
58 59 60
              <c-input
                v-model="model.infcon.nam"
                maxlength="40"
nanrui committed
61
                placeholder="请输入简略信息"
liushikai committed
62 63 64
              ></c-input>
            </el-form-item>
          </c-col>
65
        </c-col>
liushikai committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
      </c-row>
      <!-- </template> -->
      <c-col
        :span="24"
        style="text-align: right; height: 36.8px"
        v-if="searchToggle"
      >
        <el-button size="small" @click="handleReset">重置</el-button>
        <el-button
          type="primary"
          icon="el-icon-search"
          size="small"
          @click="handleSearch"
          >查询</el-button
        >
        <el-button type="text" @click="searchToggle = false">
          展开
          <i class="el-icon-arrow-down"></i>
        </el-button>
85
      </c-col>
86

liushikai committed
87 88 89 90 91 92
      <!-- 可控展示区 -->
      <!-- <template slot="changeShow"> -->
      <c-row v-show="!searchToggle">
        <c-col :span="24">
          <c-col :span="8">
            <el-form-item
nanrui committed
93
              label="当事人参考号"
liushikai committed
94
              prop="infcon.searef"
95 96
              style="width: 100%"
            >
liushikai committed
97 98 99
              <c-input
                v-model="model.infcon.searef"
                maxlength="16"
nanrui committed
100
                placeholder="请输入当事人参考号"
liushikai committed
101 102 103 104 105
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
nanrui committed
106
              label="当事人编号"
liushikai committed
107 108
              prop="infcon.pty.extkey"
              style="width: 100%"
109
            >
liushikai committed
110 111 112
              <c-input
                v-model="model.infcon.pty.extkey"
                maxlength="24"
nanrui committed
113
                placeholder="请输入当事人编号"
taojinrui committed
114
                :disabled="this.flag1"
liushikai committed
115 116 117 118 119 120
              >
              </c-input>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
nanrui committed
121
              label="当事人名称"
liushikai committed
122
              prop="infcon.pty.nam"
123 124
              style="width: 100%"
            >
liushikai committed
125 126 127
              <c-input
                v-model="model.infcon.pty.nam"
                maxlength="40"
nanrui committed
128
                placeholder="请输入当事人名称"
129
                disabled
liushikai committed
130 131 132 133
              >
              </c-input>
            </el-form-item>
          </c-col>
134
        </c-col>
liushikai committed
135 136 137 138

        <c-col :span="24">
          <c-col :span="8">
            <el-form-item
nanrui committed
139
              label="当事人BIC编码"
liushikai committed
140
              prop="infcon.seapty"
141 142
              style="width: 100%"
            >
liushikai committed
143 144 145
              <c-input
                v-model="model.infcon.seapty"
                maxlength="24"
nanrui committed
146
                placeholder="请输入当事人BIC编码"
taojinrui committed
147
                :disabled="this.flag2"
liushikai committed
148 149 150 151
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="8">
nanrui committed
152
            <el-form-item label="角色" prop="infcon.searol" style="width: 100%">
liushikai committed
153 154 155
              <c-select
                v-model="model.infcon.searol"
                style="width: 100%"
nanrui committed
156
                placeholder="请选择角色"
zhujiazhan committed
157
                :code="searol"
158
              >
liushikai committed
159 160 161 162 163
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
nanrui committed
164
              label="客户经理"
liushikai committed
165 166 167 168 169 170
              prop="infcon.usr.extkey"
              style="width: 100%"
            >
              <c-input
                v-model="model.infcon.usr.extkey"
                maxlength="8"
nanrui committed
171
                placeholder="请输入客户经理"
172
                disabled
173
              >
liushikai committed
174 175 176
              </c-input>
            </el-form-item>
          </c-col>
177
        </c-col>
178

liushikai committed
179 180
        <c-col :span="24">
          <c-col :span="8">
wangna committed
181
            <el-form-item label="状态" prop="infcon.seasta" style="width: 100%">
liushikai committed
182 183 184
              <c-select
                v-model="model.infcon.seasta"
                style="width: 100%"
185
                placeholder="请选择状态"
liushikai committed
186 187 188 189 190 191
                :code="codes.seasta"
              >
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="8">
wangna committed
192
            <el-form-item label="币种" prop="infcon.seacur" style="width: 100%">
liushikai committed
193 194 195
              <c-select
                v-model="model.infcon.seacur"
                style="width: 100%"
196
                placeholder="请选择币种"
zhujiazhan committed
197
                :code="codes.currencycode"
liushikai committed
198 199 200 201 202 203
              >
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
204
              label="金额区间"
liushikai committed
205
              prop="infcon.seaamtfr"
206 207
              style="width: 100%"
            >
liushikai committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
              <c-col :span="11">
                <c-input-currency
                  v-model="model.infcon.seaamtfr"
                  placeholder="请输入Amount"
                >
                </c-input-currency>
              </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-currency
                  v-model="model.infcon.seaamtto"
                  placeholder="请输入Amount"
                >
                </c-input-currency>
              </c-col>
            </el-form-item>
          </c-col>
227
        </c-col>
liushikai committed
228 229 230

        <c-col :span="24">
          <c-col :span="8">
wangna committed
231
            <el-form-item label="支付类型" prop="seapaytyp" style="width: 100%">
232
              <c-select
liushikai committed
233
                v-model="model.seapaytyp"
234
                style="width: 100%"
235
                placeholder="请选择支付类型"
liushikai committed
236
                :code="codes.seapaytyp"
237 238
              >
              </c-select>
liushikai committed
239
            </el-form-item>
240
          </c-col>
liushikai committed
241
          <c-col :span="8">
nanrui committed
242
            <el-form-item label="Swift类型" prop="msgtyp" style="width: 100%">
liushikai committed
243 244 245
              <c-select
                v-model="model.msgtyp"
                style="width: 100%"
nanrui committed
246
                placeholder="请选择Swift类型"
247
                :code="swftyp"
liushikai committed
248 249 250
              >
              </c-select>
            </el-form-item>
251
          </c-col>
liushikai committed
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
          <c-col :span="8">
            <el-form-item label="国家代码" prop="countcode" style="width: 100%">
              <c-col :span="11">
                <c-select
                  v-model="model.countcode"
                  filterable
                  style="width: 100%"
                  placeholder="请选择国家代码"
                  :code="codes.bopcty"
                >
                </c-select>
              </c-col>
              <c-col :span="13" style="text-align: right">
                <c-checkbox v-model="model.tsnflg">同名划转标志</c-checkbox>
              </c-col>
267
            </el-form-item>
liushikai committed
268
          </c-col>
269
        </c-col>
liushikai committed
270 271 272 273 274
      </c-row>
      <c-col
        :span="24"
        style="text-align: right; height: 36.8px"
        v-if="!searchToggle"
275
      >
liushikai committed
276 277 278 279 280 281 282 283 284 285 286 287 288
        <el-button size="small" @click="handleReset">重置</el-button>
        <el-button
          type="primary"
          icon="el-icon-search"
          size="small"
          @click="handleSearch"
          >查询</el-button
        >
        <el-button type="text" @click="searchToggle = true">
          收起
          <i class="el-icon-arrow-up"></i>
        </el-button>
      </c-col>
289 290
    </el-form>
    <c-col :span="24">
liushikai committed
291
      <div style="border-bottom: 10px solid rgb(232, 232, 232)"></div>
292
    </c-col>
293

liushikai committed
294
    <c-col style="margin-top: 10px">
taojinrui committed
295 296 297 298 299
      <c-button
        class="medium_bcs"
        size="medium"
        type="primary"
        style="margin-left: 0"
wangna committed
300
        @click="toCptadv"
taojinrui committed
301
        >swift汇入</c-button
302
      >
taojinrui committed
303 304 305 306
      <c-button
        class="medium_bcs"
        size="medium"
        type="primary"
307
        style="margin-left: 5px"
wangna committed
308
        @click="toCptopn"
taojinrui committed
309
        >swift汇出</c-button
310
      >
taojinrui committed
311 312 313 314
      <c-button
        class="medium_bcs"
        size="medium"
        type="primary"
315
        style="margin-left: 5px"
taojinrui committed
316 317
        @click="toCptati"
        >境内外币汇入</c-button
318
      >
taojinrui committed
319 320 321 322
      <c-button
        class="medium_bcs"
        size="medium"
        type="primary"
323
        style="margin-left: 5px"
taojinrui committed
324 325
        @click="toCptato"
        >境内外币汇出</c-button
326
      >
taojinrui committed
327 328 329 330 331
      <c-button
        class="medium_bcs"
        size="medium"
        type="primary"
        style="float: right; margin-right: 10px"
liushikai committed
332 333 334
        >导Excel</c-button
      >
    </c-col>
335

liushikai committed
336
    <c-col :span="24">
taojinrui committed
337 338 339 340 341
      <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
        :showButtonFlg="true"
      >
342 343
        <el-table-column fixed="right" prop="op" width="140px">
          <template slot="header">
wangna committed
344 345 346
            <c-col :span="11" style="text-align: center"
              ><span>操作</span></c-col
            >
347
          </template>
348
          <template slot-scope="scope">
liushikai committed
349 350 351 352 353 354 355 356 357
            <el-popover
              placement="top-start"
              title="历史信息"
              width="800"
              trigger="click"
              :ref="'popover_' + scope.row.IDX"
            >
              <div
                style="
wangna committed
358
                  text-align: right;  
liushikai committed
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
                  margin-top: -30px;
                  margin-right: 5px;
                  font-size: 16px;
                "
              >
                <span
                  class="el-icon-close"
                  @click="closeTrn('popover_' + scope.row.IDX)"
                />
              </div>
              <c-istream-table :list="trnData.data" :columns="trnData.columns">
                <el-table-column prop="op" label="操作" width="0">
                  <template slot-scope="scope">
                    <c-button
                      style="margin-left: 0"
                      size="small"
375
                      @click="display(scope.row['INR'])"
liushikai committed
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
                    >
                      详情
                    </c-button>
                  </template>
                </el-table-column>
              </c-istream-table>
              <c-button
                style="margin-left: 0"
                size="small"
                @click="getTrnInfo(scope.$index, scope.row)"
                slot="reference"
              >
                详情
              </c-button>
            </el-popover>

            <c-button
393
              style="margin-left: 5px"
liushikai committed
394 395
              size="small"
              type="primary"
wangna committed
396
              @click="getButtons(scope.row['汇款编号'], scope.row['关闭日期'])"
liushikai committed
397 398 399
            >
              处理
            </c-button>
400 401 402 403
          </template>
        </el-table-column>
      </c-istream-table>
    </c-col>
zhujiazhan committed
404

taojinrui committed
405 406 407 408 409 410 411 412 413
    <m-busbtn
      ref="childs"
      :ownref="ownref"
      trnCode="cptsel"
      :model="cptselModel"
      ownrefPath="cpdgrp"
      @onChoose="onChoose"
      >11</m-busbtn
    >
414
  </div>
415 416
</template>
<script>
417
import Api from "~/service/Api";
wangren committed
418
import commonProcess from "~/mixin/commonProcess";
419 420
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infcpd/Event";
421
import BusNavbar from "~/views/Public/BusNavbar";
taojinrui committed
422
import CptselModel from "~/model/Cptsel";
zhujiazhan committed
423

424 425 426
export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
427
  mixins: [commonProcess],
liushikai committed
428
  components: { "m-busbtn": BusNavbar },
429 430
  data() {
    return {
taojinrui committed
431 432 433
      flag1: false,
      flag2: false,
      searol: [
wangna committed
434
        { label: "汇款人", value: "ORC" },
435
        { label: "汇款行", value: "ORI" },
wangna committed
436
        { label: "付款行", value: "PYB" },
437
        { label: "收款人", value: "PYE" },
taojinrui committed
438 439 440 441 442 443 444 445
        { label: "Reimb. Bank Transfer", value: "RMT" },
      ],
      swftyp: [
        { label: "MT103", value: "103" },
        { label: "MT202", value: "202" },
        { label: "MT910", value: "910" },
        { label: "CMT100", value: "CMT" },
        { label: "境内外币清算", value: "100" },
wangna committed
446
        { label: "其他", value: "OTH" },
447
      ],
zhujiazhan committed
448
      cptselModel: new CptselModel().data,
449
      searchToggle: true,
liushikai committed
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
      ownref: "",
      dialogTableVisible: false,
      trnData: {
        columns: [
          '1 1 "编号" 200',
          '2 2 "交易名称" 130',
          // '3 3 "日期" 200',
          { index: 3, position: 3, width: 110, pattern: "date", label: "日期" },
          // '4 4 "状态" 50',
          {
            index: 4,
            position: 4,
            width: 100,
            pattern: "code",
            label: "状态",
465
            code: this.codes.relstaEN,
liushikai committed
466 467 468 469 470 471
          },
          '5 5 "币种" 80',
          '6 6 "金额" 100',
        ],
        data: [],
      },
472 473
      stmData: {
        columns: [
nanrui committed
474 475
          '1 1 "汇款编号" 150 ',
          '2 2 "客户经理" 120 ',
liushikai committed
476
          '12 3 "PYE NO." 100 ',
wangna committed
477 478
          '9 4 "第一当事人编号" 200',
          '10 5 "收款人" 250',
zhujiazhan committed
479
          '11 6 "PYE.Customer CN" 150',
wangna committed
480 481
          '13 7 "第二当事人编号" 150',
          '14 8 "汇款人" 200',
zhujiazhan committed
482
          '15 9 "Ord.Customer CN" 150',
wangna committed
483 484
          '16 10 "第三当事人编号" 150',
          '17 11 "汇款机构" 200',
liushikai committed
485
          '12 12 "ORC NO." 150',
wangna committed
486
          '18 13 "第四当事人编号" 150',
nanrui committed
487
          '19 14 "付款行" 150',
liushikai committed
488 489 490
          {
            index: 3,
            position: 15,
liushikai committed
491 492
            width: 100,
            pattern: "date",
nanrui committed
493
            label: "开立日期",
liushikai committed
494 495 496 497
          },
          {
            index: 4,
            position: 16,
liushikai committed
498 499
            width: 100,
            pattern: "date",
liushikai committed
500 501
            label: "Value",
          },
zhujiazhan committed
502

liushikai committed
503 504 505
          {
            index: 5,
            position: 17,
liushikai committed
506 507
            width: 100,
            pattern: "date",
nanrui committed
508
            label: "关闭日期",
liushikai committed
509
          },
510
          '20 18 "金额币种" 100',
nanrui committed
511
          '21 19 "付款金额" 150',
wangna committed
512
          '22 20 "币种" 80',
zhujiazhan committed
513 514 515
          '23 21 "Amount rcvd." 150',
          '6 22 "Pyectycod" 120',
          '7 23 "Orcctycod" 120',
516 517 518 519 520
        ],
        data: [],
      },
    };
  },
taojinrui committed
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
  watch: {
    "model.infcon.seapty": function () {
      if (this.model.infcon.seapty == "") {
        this.flag1 = false;
      } else {
        this.flag1 = true;
        this.model.infcon.pty.extkey = "";
      }
    },
    "model.infcon.pty.extkey": function () {
      if (this.model.infcon.pty.extkey == "") {
        this.flag2 = false;
      } else {
        this.flag2 = true;
        this.model.infcon.seapty = "";
      }
    },
538
  },
539 540
  methods: {
    ...Event,
liushikai committed
541
    /*  handleSearch(callback) {
542 543 544 545 546 547 548 549
      setTimeout(() => {
        this.$notify.info({
          title: "提示",
          message: "模拟post请求控制按钮状态",
        });
        // 执行子组件回调函数控制按钮状态
        callback();
      }, 1000);
liushikai committed
550
    }, */
wangna committed
551
    async getButtons(ownref, closedDate) {
taojinrui committed
552
      this.ownref = ownref;
wangna committed
553
      this.cptselModel.clsflg = (closedDate ?? "").trim() === "" ? "" : "C";
taojinrui committed
554 555 556
      this.$refs.childs.initdialog = true;
      console.log("ownref:" + ownref);
    },
wangna committed
557
    async onChoose(code, prePageId) {
taojinrui committed
558
      //跳转交易
wangna committed
559 560
      // this.$router.history.push("/business/" + code);
      this.$router.push({ name: code.charAt(0).toUpperCase() + code.substring(1), params: { prePageId } });
taojinrui committed
561 562 563 564 565 566 567 568 569 570 571
      this.$refs.childs.initdialog = false;
    },
    async getDitSelInfo(code) {
      //跳转交易
      this.$router.history.push("/business/" + code);
      this.$refs.childs.initdialog = false;
    },
    async getTrnInfo(idx, row) {
      this.model.infcon.objinr = row["INR"];
      this.model.cpdgrp.rec.inr = row["INR"];
      this.model.infcon.chksubcon = "X";
liushikai committed
572

taojinrui committed
573 574
      this.dialogTableVisible = true;
      let rtnmsg = await this.executeDefault("infcon.chksubcon");
liushikai committed
575

taojinrui committed
576 577 578 579 580 581 582 583 584 585 586 587
      if ((rtnmsg.respCode = SUCCESS)) {
        this.trnData.data = rtnmsg.data.infcon_trnstm.rows;
      }
    },
    closeTrn(refId) {
      this.$refs[refId].doClose();
    },
    toCptopn() {
      this.$router.history.push("/business/cptopn");
    },
    toCptadv() {
      this.$router.history.push("/business/cptadv");
588
    },
taojinrui committed
589 590
    toCptati() {
      this.$router.history.push("/business/cptati");
Wuyuqiu committed
591
    },
taojinrui committed
592 593
    toCptato() {
      this.$router.history.push("/business/cptato");
Wuyuqiu committed
594
    },
595 596 597
  },
  created: function () {},
};
598 599
</script>
<style>
600 601 602
.el-dialog__body {
  padding: 10px 5px 50px;
}
603
</style>