Remp.vue 2.1 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3 4 5 6 7 8 9 10 11
    <c-row>
      <c-col :span="24">
        <c-col :span="12">
          <c-col :span="24">
            <el-form-item label="Reimbursement Bank" prop="rmbclm.rmbrol">
              <c-select
                v-model="model.rmbclm.rmbrol"
                style="width: 100%"
                placeholder="请选择Reimbursement Bank"
liyixun committed
12
                :code="getValues('rmbclm.rmbrol')"
liyixun committed
13
              >
liyixun committed
14
              </c-select>
liyixun committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
            </el-form-item>
          </c-col>
          <c-ptap
            :model="model"
            :argadr="{ title: '', grp: 'rmbclm', rol: 'rmbrmb' }"
            :disabled="true"
          >
          </c-ptap>
          <c-ptap
            :model="model"
            :argadr="{
              title: 'Account with Bank ',
              grp: 'rmbclm',
              rol: 'acwacw',
            }"
            :disabled="true"
          >
          </c-ptap>
liyixun committed
33
        </c-col>
liyixun committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
        <c-col :span="11" :offset="1">
          <c-ptap
            :model="model"
            :argadr="{
              title: 'Beneficiary Bank',
              grp: 'rmbclm',
              rol: 'bebbeb',
            }"
            :disabled="true"
          >
          </c-ptap>
          <c-col :span="24">
            <el-form-item label="value date" prop="rmbclm.valdat">
              <c-date-picker
                type="date"
                v-model="model.rmbclm.valdat"
                style="width: 100%"
                placeholder="请选择value date"
              ></c-date-picker>
            </el-form-item>
          </c-col>
liyixun committed
55
        </c-col>
liyixun committed
56 57 58
      </c-col>
    </c-row>
    <!-- SG000133 : value date -->
liyixun committed
59 60 61
  </div>
</template>
<script>
liyixun committed
62
import Api from "~/service/Api";
liyixun committed
63
import commonProcess from "~/mixin/commonProcess";
liyixun committed
64 65 66
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bttrcl/Event";
import Ptap from "~/views/Public/Ptap";
liyixun committed
67 68

export default {
liyixun committed
69 70 71 72 73 74 75 76 77 78
  components: { "c-ptap": Ptap },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
79 80 81
</script>
<style>
</style>