Rbip.vue 3.75 KB
Newer Older
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
<template>
  <div class="eibs-tab">
    <c-col :span="12">
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: 'Reimbursement Bank',
            grp: 'ltdgrp',
            rol: 'rmt',
          }"
          :noRef="false"
          @onSeainf="onSeainf"
          @onAplpDet="onBenpDet"
          disabled
          :disabledRef="true"
          :disabledExtkey="true"
        >
        </c-ptap>
      </c-col>

      <c-col :span="24">
        <el-form-item
          label="Account Identification"
          prop="ltdgrp.rmt.pts.dftact"
        >
          <c-select
            v-model="model.ltdgrp.rmt.pts.dftact"
            style="width: 100%"
            placeholder="Please input Account Identification"
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-form-item
          label="Reimbursing Bank Account Identification"
          prop="ltdgrp.rec.rmbact"
        >
          <c-input
            v-model="model.ltdgrp.rec.rmbact"
            maxlength="35"
            disabled
            placeholder="Please input Reimbursing Bank Account Identification"
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- SF000254 : Charges Definition -->

      <c-col :span="24">
        <el-form-item label="Charges Definition" prop="ltdgrp.rec.rmbcha">
          <c-select
            v-model="model.ltdgrp.rec.rmbcha"
            style="width: 100%"
            placeholder="Please input Charges Definition"
            :code="codes.rmbcha"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <!-- SF000260 : Other Charges -->

      <c-col :span="24">
        <c-form-item label="Other Charges" prop="ltdgrp.blk.rmbcha">
          <c-input
            type="textarea"
            v-model="model.ltdgrp.blk.rmbcha"
            maxlength="35"
            show-word-limit
            placeholder="Please input Other Charges"
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- S0000334 : MT747 :77A: -->

      <c-col :span="24">
        <c-form-item label=": MT747 :77A:" prop="lttp.rmbnar">
          <c-input
            type="textarea"
            v-model="model.lttp.rmbnar"
            maxlength="35"
            show-word-limit
            placeholder="Please input : MT747 :77A:"
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- SF000365 : Applicable Rules RMB -->

      <c-col :span="24">
        <el-form-item label="Applicable Rules RMB" prop="ltdgrp.rec.apprulrmb">
          <c-select
            v-model="model.ltdgrp.rec.apprulrmb"
            style="width: 100%"
            placeholder="Please input Applicable Rules RMB"
            :code="codes.apprulrmb"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <!-- SF000366 : Date of Authorisation to Reimburse -->

      <c-col :span="24">
        <el-form-item
          label="Date of Authorisation to Reimburse"
          prop="ltdgrp.rec.autdat"
        >
          <c-date-picker
            type="date"
            v-model="model.ltdgrp.rec.autdat"
            style="width: 100%"
            disabled
            placeholder="Please input Date of Authorisation to Reimburse"
          ></c-date-picker>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Lttame/Event";
import Ptap from "~/views/Public/Ptap";

export default {
  components: { "c-ptap": Ptap },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>