Infsea.vue 15.2 KB
Newer Older
Your Name committed
1
<template>
wangna committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
  <div class="eibs-tab">
    <c-list-search @form-reset="handleReset" @form-search="handleSearch">
      <!-- 持续展示区 -->
      <template v-slot="searchSlot">
        <el-form
          class="m-table-search-form"
          ref="paramsForm"
          label-position="left"
          label-width="110px"
          size="small"
        >
          <c-row>
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
nanrui committed
17
                  label="光票托收编号"
wangna committed
18 19 20 21 22 23
                  prop="infcon.seaownref"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.seaownref"
                    maxlength="16"
nanrui committed
24
                    placeholder="请输入光票托收编号"
wangna committed
25 26 27 28 29 30
                  ></c-input>
                </el-form-item>
              </c-col>

              <c-col :span="8">
                <el-form-item
nanrui committed
31
                  label="开立日期"
wangna committed
32 33 34 35 36 37 38 39
                  prop="infcon.opndatfrom"
                  style="width: 100%"
                >
                  <c-col :span="11">
                    <c-date-picker
                      type="date"
                      v-model="model.infcon.opndatfrom"
                      style="width: 100%"
nanrui committed
40
                      placeholder="请选择开立日期"
wangna committed
41 42 43 44 45 46 47 48 49 50 51
                      value-format="yyyy-MM-dd"
                    ></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%"
nanrui committed
52
                      placeholder="请选择开立日期"
wangna committed
53 54 55 56 57 58 59 60
                      value-format="yyyy-MM-dd"
                    ></c-date-picker>
                  </c-col>
                </el-form-item>
              </c-col>

              <c-col :span="8">
                <el-form-item
nanrui committed
61
                  label="业务名称"
wangna committed
62 63 64 65 66 67
                  prop="infcon.nam"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.nam"
                    maxlength="40"
nanrui committed
68
                    placeholder="请输入业务名称"
wangna committed
69 70 71 72 73 74 75 76 77 78 79
                  ></c-input>
                </el-form-item>
              </c-col>
            </c-col>
          </c-row>

          <!-- 可控展示区 -->
          <c-row v-show="searchSlot.searchToggle">
            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
nanrui committed
80
                  label="当事人参考号"
wangna committed
81 82 83 84 85 86
                  prop="infcon.searef"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.searef"
                    maxlength="16"
nanrui committed
87
                    placeholder="请输入当事人参考号"
wangna committed
88 89 90 91 92
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
nanrui committed
93
                  label="当事人编号"
wangna committed
94 95 96 97 98 99
                  prop="infcon.pty.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.pty.extkey"
                    maxlength="16"
nanrui committed
100
                    placeholder="请输入当事人编号"
wangna committed
101
                    :disabled="model.infcon.seapty != ''"
wangna committed
102 103 104
                    @keyup.enter.native="
                      showGridPromptDialog('infcon.pty.extkey')
                    "
wangna committed
105 106 107 108 109
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
nanrui committed
110
                  label="当事人名称"
wangna committed
111 112 113 114 115 116
                  prop="infcon.pty.nam"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.pty.nam"
                    maxlength="40"
nanrui committed
117
                    placeholder="请输入当事人名称"
wangna committed
118 119 120 121 122 123 124 125 126
                    disabled
                  ></c-input>
                </el-form-item>
              </c-col>
            </c-col>

            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
nanrui committed
127
                  label="当事人BIC编码"
wangna committed
128 129 130 131 132 133
                  prop="infcon.seapty"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.seapty"
                    maxlength="24"
nanrui committed
134
                    placeholder="请输入当事人BIC编码"
wangna committed
135
                    :disabled="model.infcon.pty.extkey != ''"
wangna committed
136 137 138 139 140
                  ></c-input>
                </el-form-item>
              </c-col>
              <c-col :span="8">
                <el-form-item
nanrui committed
141
                  label="角色"
wangna committed
142 143 144 145 146 147
                  prop="infcon.searol"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.infcon.searol"
                    style="width: 100%"
nanrui committed
148
                    placeholder="请选择角色"
wangna committed
149 150
                  >
                    <el-option
wangna committed
151
                      v-for="item in codes.searol3"
wangna committed
152 153 154 155 156 157 158 159 160
                      :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
nanrui committed
161
                  label="客户经理"
wangna committed
162 163 164 165 166 167
                  prop="infcon.usr.extkey"
                  style="width: 100%"
                >
                  <c-input
                    v-model="model.infcon.usr.extkey"
                    maxlength="24"
nanrui committed
168
                    placeholder="请输入客户经理"
wangna committed
169 170 171 172 173 174 175 176 177
                    disabled
                  ></c-input>
                </el-form-item>
              </c-col>
            </c-col>

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

            <c-col :span="24">
              <c-col :span="8">
                <el-form-item
nanrui committed
246
                  label="托收方式"
wangna committed
247 248 249 250 251 252
                  prop="seadoctypcod"
                  style="width: 100%"
                >
                  <c-select
                    v-model="model.seadoctypcod"
                    style="width: 100%"
nanrui committed
253
                    placeholder="请选择托收方式"
wangna committed
254 255 256 257 258 259 260 261 262 263 264 265
                    :code="codes.purflg"
                  >
                  </c-select>
                </el-form-item>
              </c-col>
            </c-col>
          </c-row>
        </el-form>
      </template>
    </c-list-search>

    <el-row>
wangna committed
266
      <c-col :span="24" style="margin-top: 10px">
wangna committed
267 268 269 270 271
        <c-button
          class="medium_bcs"
          size="medium"
          type="primary"
          @click="toCctdav"
wangna committed
272
          >光票托收建立</c-button
wangna committed
273
        >
wangna committed
274
      </c-col>
wangna committed
275
      <c-col :span="24">
wangna committed
276 277 278 279 280
        <c-istream-table
          :list="stmData.data"
          :columns="stmData.columns"
          :showButtonFlg="true"
        >
wangna committed
281 282
          <el-table-column fixed="right" prop="op" label="操作" width="140px">
            <template slot="header">
283
              <c-col :span="11" style="text-align: center">
wangna committed
284 285
                <span>操作</span>
              </c-col>
286
              <!-- <c-col :span="12" style="text-align: right">
wangna committed
287
                <c-button icon="el-icon-s-tools"></c-button>
288
              </c-col> -->
wangna committed
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
            </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"
                    @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"
                        @click="display(scope.row['INR'])"
                        >详情</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
335
                style="margin-left: 5px"
wangna committed
336 337
                size="small"
                type="primary"
wangna committed
338 339 340
                @click="
                  getButtons(scope.row['光票托收编号'], scope.row['关闭日期'])
                "
wangna committed
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
              >
                处理</c-button
              >
            </template>
          </el-table-column>
        </c-istream-table>
      </c-col>
    </el-row>

    <div class="m-list-btns">
      <m-busbtn
        ref="childs"
        :ownref="ownref"
        trnCode="cctsel"
        ownrefPath="ccdgrp"
        :model="cctselModel"
        tabIndex="1"
        @onChoose="onChoose"
        >11</m-busbtn
      >
    </div>
Your Name committed
362 363 364 365 366
  </div>
</template>


<script>
wangna committed
367
import Api from "~/service/Api";
wangren committed
368
import commonProcess from "~/mixin/commonProcess";
wangna committed
369 370 371 372 373
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infccd/Event";

import CctselModel from "~/model/Cctsel";
import BusNavbar from "~/views/Public/BusNavbar";
Your Name committed
374 375 376 377

/*export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
378
    mixins: [commonProcess],
Your Name committed
379 380 381 382 383 384 385 386 387 388 389 390
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}*/

export default {
wangna committed
391 392 393 394 395 396 397 398 399 400 401 402
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  components: { "m-busbtn": BusNavbar },
  data() {
    return {
      cctselModel: new CctselModel().data,
      ownref: "",
      dialogTableVisible: false,
      dialogFlag: true,
      trnData: {
        columns: [
nanrui committed
403 404 405 406
          '0 1 "业务id" 100',
          '1 2 "托收编号" 150',
          '2 3 "交易名称" 200',
          '3 4 "日期" 200',
wangna committed
407 408 409 410 411 412
          // '4 5 "Status" 150',
          {
            index: 4,
            position: 5,
            width: 100,
            pattern: "code",
nanrui committed
413
            label: "状态",
wangna committed
414 415
            code: this.codes.relflg,
          },
nanrui committed
416 417 418
          '5 6 "币种" 80',
          '6 7 "金额" 150',
          '7 8 "签署" 100',
wangna committed
419 420 421 422 423
        ],
        data: [],
      },
      stmData: {
        columns: [
nanrui committed
424 425
          '1 1 "光票托收编号" 150',
          '2 2 "客户经理" 150',
wangna committed
426
          '5 3 "PTA NO." 150',
nanrui committed
427 428
          '6 4 "第一当事人编号" 150',
          '7 5 "委托人" 150',
wangna committed
429
          '8 6 "交单行 CN" 150',
nanrui committed
430 431 432 433 434 435 436 437
          '9 7 "第二当事人编号" 150',
          '10 8 "付款人账户行" 150',
          '11 9 "第三当事人编号" 150',
          '12 10 "出票人" 150',
          '13 11 "第四当事人编号" 150',
          '14 12 "代收行" 150',
          '3 13 "开立日期" 150',
          '4 14 "关闭日期" 150',
438
          '15 15 "金额币种" 150',
nanrui committed
439
          '16 16 "汇票金额" 150',
440
          '17 17 "余额币种" 150',
nanrui committed
441
          '18 18 "汇票余额" 150',
wangna committed
442 443 444 445 446 447 448
        ],
        data: [],
      },
    };
  },
  methods: {
    ...Event,
wangna committed
449
    async getButtons(ownref, closedDate) {
wangna committed
450
      this.ownref = ownref;
wangna committed
451
      this.cctselModel.clsflg = (closedDate ?? "").trim() === "" ? "" : "C";
wangna committed
452 453 454
      this.$refs.childs.initdialog = true;
      console.log("ownref:" + ownref);
    },
455
    async onChoose(code, prePageId) {
wangna committed
456
      //跳转交易
457 458
      // this.$router.history.push("/business/" + code);
      this.$router.push({ name: code.charAt(0).toUpperCase() + code.substring(1), params: { prePageId } });
wangna committed
459 460 461 462 463 464
      this.$refs.childs.initdialog = false;
    },
    async getDitSelInfo(code) {
      //跳转交易
      this.$router.history.push("/business/" + code);
      this.$refs.childs.initdialog = false;
Your Name committed
465 466
    },

wangna committed
467 468
    async getTrnInfo(idx, row) {
      this.model.infcon.objinr = row["INR"];
wangna committed
469
      this.model.ccdgrp.rec.inr = row["INR"];
wangna committed
470 471 472 473 474 475 476 477 478 479 480 481
      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();
    },
wangna committed
482
    toCctdav() {
wangna committed
483 484 485 486 487
      this.$router.history.push("/business/cctdav");
    },
  },
  created: function () {},
};
Your Name committed
488 489 490
</script>
<style>
</style>