Infsea.vue 18.2 KB
Newer Older
1
<template>
2 3 4 5 6 7 8 9 10 11 12 13
  <div class="eibs-tab">
    <!-- <c-infsearch-group @handleSearch="handleSearch" @handleReset="handleReset"> -->
    <!-- 持续展示区 -->
    <!-- <template slot="keepShow"> -->
    <el-form
      class="m-table-search-form"
      ref="paramsForm"
      :inline="true"
      label-position="right"
      label-width="110px"
      size="small"
    >
liushikai committed
14 15 16 17 18 19 20
      <c-row>
        <c-col :span="24">
          <c-col :span="8">
            <el-form-item
              label="Own Reference"
              prop="infcon.seaownref"
              style="width: 100%"
21
            >
liushikai committed
22 23 24 25 26 27 28 29 30 31 32 33
              <c-input
                v-model="model.infcon.seaownref"
                maxlength="16"
                placeholder="请输入Own Reference"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
              label="Opening"
              prop="infcon.opndatfrom"
              style="width: 100%"
34
            >
liushikai committed
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
              <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">
            <el-form-item label="Name" prop="infcon.nam" style="width: 100%">
              <c-input
                v-model="model.infcon.nam"
                maxlength="40"
                placeholder="请输入Name"
              ></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 93 94
      <!-- 可控展示区 -->
      <!-- <template slot="changeShow"> -->
      <c-row v-show="!searchToggle">
        <c-col :span="24">
          <c-col :span="8">
            <el-form-item
              label="Party Reference"
              prop="infcon.searef"
95 96
              style="width: 100%"
            >
liushikai committed
97 98 99 100 101 102 103 104 105 106 107 108
              <c-input
                v-model="model.infcon.searef"
                maxlength="16"
                placeholder="请输入Party Reference"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
              label="Select Single Party"
              prop="infcon.pty.extkey"
              style="width: 100%"
109
            >
liushikai committed
110 111 112 113
              <c-input
                v-model="model.infcon.pty.extkey"
                maxlength="24"
                placeholder="请输入Select Single Party"
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
121
              label="Party Name"
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"
128 129
                placeholder="请输入External Party Name"
                disabled
liushikai committed
130 131 132 133
              >
              </c-input>
            </el-form-item>
          </c-col>
134
        </c-col>
liushikai committed
135 136 137 138 139 140

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

liushikai committed
179 180 181 182 183
        <c-col :span="24">
          <c-col :span="8">
            <el-form-item
              label="Status"
              prop="infcon.seasta"
184 185
              style="width: 100%"
            >
liushikai committed
186 187 188 189 190 191 192 193 194 195
              <c-select
                v-model="model.infcon.seasta"
                style="width: 100%"
                placeholder="请选择Status"
                :code="codes.seasta"
              >
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="8">
zhujiazhan committed
196
            <el-form-item  label="Currency" prop="infcon.seacur" style="width: 100%" >
liushikai committed
197 198 199 200
              <c-select
                v-model="model.infcon.seacur"
                style="width: 100%"
                placeholder="请选择Currency"
zhujiazhan committed
201
                :code="codes.currencycode"
liushikai committed
202 203 204 205 206 207 208 209
              >
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="8">
            <el-form-item
              label="Amount between"
              prop="infcon.seaamtfr"
210 211
              style="width: 100%"
            >
liushikai committed
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
              <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>
231
        </c-col>
liushikai committed
232 233 234 235 236 237 238 239

        <c-col :span="24">
          <c-col :span="8">
            <el-form-item
              label="Payment Type"
              prop="seapaytyp"
              style="width: 100%"
            >
240
              <c-select
liushikai committed
241
                v-model="model.seapaytyp"
242
                style="width: 100%"
liushikai committed
243 244
                placeholder="请选择Payment Type"
                :code="codes.seapaytyp"
245 246
              >
              </c-select>
liushikai committed
247
            </el-form-item>
248
          </c-col>
liushikai committed
249 250 251 252 253 254
          <c-col :span="8">
            <el-form-item label="Swift type" prop="msgtyp" style="width: 100%">
              <c-select
                v-model="model.msgtyp"
                style="width: 100%"
                placeholder="请选择Swift type"
255
                :code="swftyp"
liushikai committed
256 257 258
              >
              </c-select>
            </el-form-item>
259
          </c-col>
liushikai committed
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
          <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>
275
            </el-form-item>
liushikai committed
276
          </c-col>
277
        </c-col>
liushikai committed
278 279 280 281 282
      </c-row>
      <c-col
        :span="24"
        style="text-align: right; height: 36.8px"
        v-if="!searchToggle"
283
      >
liushikai committed
284 285 286 287 288 289 290 291 292 293 294 295 296
        <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>
297 298
    </el-form>
    <c-col :span="24">
liushikai committed
299
      <div style="border-bottom: 10px solid rgb(232, 232, 232)"></div>
300 301 302
    </c-col>
    <!-- </template>
    </c-list-search> -->
303

304 305
    <!-- </template> -->
    <!-- </c-infsearch-group> -->
306

liushikai committed
307
    <c-col style="margin-top: 10px">
308 309 310 311 312 313 314
      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 0"
         @click="toCptopn">swift汇入</c-button
      >
      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 0"
         @click="toCptadv">swift汇出</c-button
      >
      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 0"
Wuyuqiu committed
315
        @click="toCptati">境内外币汇入</c-button
316 317
      >
      <c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 0"
Wuyuqiu committed
318
        @click="toCptato">境内外币汇出</c-button
319
      >
320
      <c-button class="medium_bcs" size="medium" type="primary" style="float:right;margin-right:10px;"
liushikai committed
321 322
        >导Excel</c-button
      >
liushikai committed
323
      <!-- <c-button size="small" type="primary" style="margin-left: 0"
liushikai committed
324 325 326 327
        >Display</c-button
      >
      <c-button size="small" type="primary" style="margin-left: 0"
        >Use</c-button
liushikai committed
328
      > -->
liushikai committed
329
    </c-col>
330

liushikai committed
331 332 333 334 335 336 337 338 339 340 341 342
    <c-col :span="24">
      <c-istream-table :list="stmData.data" :columns="stmData.columns" :showButtonFlg="true">
        <el-table-column fixed="right" prop="op" label="操作" width="140px">
          <!-- <template slot="header">
            <c-col :span="11" style="text-align: left">
              <span>操作</span>
            </c-col>
            <c-col :span="12" style="text-align: right">
              <c-button icon="el-icon-s-tools"></c-button>
            </c-col>
          </template> -->

343
          <template slot-scope="scope">
liushikai committed
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
            <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"
                  @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"
370
                      @click="display(scope.row['INR'])"
liushikai committed
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
                    >
                      详情
                    </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
              style="margin-left: 0"
              size="small"
              type="primary"
              @click="getButtons(scope.row['Reference'])"
            >
              处理
            </c-button>

            <!-- <c-button
                            style="margin-left: 0"
                            size="small"
                            type="primary"
                            @click="onInfbutDsp(scope.$index, scope.row)"
                        >
                            info
                        </c-button> -->
404 405 406 407
          </template>
        </el-table-column>
      </c-istream-table>
    </c-col>
zhujiazhan committed
408 409

        <m-busbtn ref="childs"  :ownref="ownref" trnCode="cptsel" :model="cptselModel" ownrefPath="cpdgrp"  @onChoose="onChoose" >11</m-busbtn>
zhujiazhan committed
410

411
  </div>
412 413
</template>
<script>
414
import Api from "~/service/Api";
wangren committed
415
import commonProcess from "~/mixin/commonProcess";
416 417
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infcpd/Event";
418
import BusNavbar from "~/views/Public/BusNavbar";
zhujiazhan committed
419
import CptselModel from "~/model/Cptsel"
zhujiazhan committed
420 421


422 423 424
export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
425
  mixins: [commonProcess],
liushikai committed
426
  components: { "m-busbtn": BusNavbar },
427 428
  data() {
    return {
429 430
     flag1:false,
     flag2:false,
zhujiazhan committed
431 432 433 434 435 436 437
     searol:[
                { label: "Ordering Customer", value: "ORC" },
                 { label: "Ordering Institution", value: "ORI" },
                 { label: "Paying Bank", value: "PYB" },
                 { label: "Payee", value: "PYE" },
                 { label: "Reimb. Bank Transfer", value: "RMT" },
            ],
438 439 440 441 442 443 444 445
      swftyp:[
            { label: "MT103", value: "103" },
            { label: "MT202", value: "202" },
            { label: "MT910", value: "910" },
            { label: "CMT100", value: "CMT" },
            { label: "境内外币清算", value: "100" },
            { label: "Other", value: "OTH" },
      ],
zhujiazhan committed
446
      cptselModel: new CptselModel().data,
447
      searchToggle: true,
liushikai committed
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
      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: "状态",
463
            code: this.codes.relstaEN,
liushikai committed
464 465 466 467 468 469
          },
          '5 5 "币种" 80',
          '6 6 "金额" 100',
        ],
        data: [],
      },
470 471
      stmData: {
        columns: [
liushikai committed
472
          '1 1 "Reference" 150 ',
zhujiazhan committed
473
          '2 2 "Resp. User" 120 ',
liushikai committed
474
          '12 3 "PYE NO." 100 ',
zhujiazhan committed
475
          '9 4 "Payee.Party Number" 200',
liushikai committed
476
          '10 5 "Payee Customer" 250',
zhujiazhan committed
477
          '11 6 "PYE.Customer CN" 150',
liushikai committed
478
          '13 7 "Ord.Party Number" 150',
zhujiazhan committed
479 480
          '14 8 "Ord.Customer" 200',
          '15 9 "Ord.Customer CN" 150',
liushikai committed
481 482 483 484 485
          '16 10 "1.Party Number" 150',
          '17 11 "Ord.Institution" 200',
          '12 12 "ORC NO." 150',
          '18 13 "2.Party Number" 150',
          '19 14 "Paying Bank" 150',
liushikai committed
486 487 488
          {
            index: 3,
            position: 15,
liushikai committed
489 490
            width: 100,
            pattern: "date",
liushikai committed
491 492 493 494 495
            label: "Opened",
          },
          {
            index: 4,
            position: 16,
liushikai committed
496 497
            width: 100,
            pattern: "date",
liushikai committed
498 499
            label: "Value",
          },
zhujiazhan committed
500

liushikai committed
501 502 503
          {
            index: 5,
            position: 17,
liushikai committed
504 505
            width: 100,
            pattern: "date",
liushikai committed
506 507
            label: "Closed",
          },
liushikai committed
508
          '20 18 "1.Cur" 80',
509 510
          '21 19 "Paym.Amount" 150',
          '22 20 "2.Cur" 80',
zhujiazhan committed
511 512 513
          '23 21 "Amount rcvd." 150',
          '6 22 "Pyectycod" 120',
          '7 23 "Orcctycod" 120',
514 515 516 517 518
        ],
        data: [],
      },
    };
  },
519 520 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
  methods: {
    ...Event,
liushikai committed
540
    /*  handleSearch(callback) {
541 542 543 544 545 546 547 548
      setTimeout(() => {
        this.$notify.info({
          title: "提示",
          message: "模拟post请求控制按钮状态",
        });
        // 执行子组件回调函数控制按钮状态
        callback();
      }, 1000);
liushikai committed
549
    }, */
liushikai committed
550
    async getButtons(ownref){
551 552 553 554 555 556 557 558 559 560
        this.ownref = ownref
        this.$refs.childs.initdialog = true
        console.log("ownref:" +ownref);
      },
        async  onChoose(code){
            //跳转交易
          this.$router.history.push("/business/" + code) 
          this.$refs.childs.initdialog = false                    
        } ,
        async  getDitSelInfo(code){
liushikai committed
561
            //跳转交易
562 563 564
          this.$router.history.push("/business/" + code) 
          this.$refs.childs.initdialog = false                    
        },
liushikai committed
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
            async getTrnInfo(idx, row) {
                this.model.infcon.objinr = row["INR"];
                this.model.cpdgrp.rec.inr = row["INR"];
                this.model.infcon.chksubcon = "X";

                this.dialogTableVisible = true;
                let rtnmsg = await this.executeDefault("infcon.chksubcon");

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