Remp.vue 2.12 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3 4 5 6
    <c-row>
      <c-col :span="24">
        <c-col :span="12">
          <c-col :span="24">
wangna committed
7
            <el-form-item label="偿付行名称地址即期编号" prop="rmbclm.rmbrol">
liyixun committed
8 9 10
              <c-select
                v-model="model.rmbclm.rmbrol"
                style="width: 100%"
wangna committed
11
                placeholder="请选择偿付行名称地址即期编号"
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
            </el-form-item>
          </c-col>
          <c-ptap
            :model="model"
            :argadr="{ title: '', grp: 'rmbclm', rol: 'rmbrmb' }"
            :disabled="true"
          >
          </c-ptap>
          <c-ptap
            :model="model"
            :argadr="{
wangna committed
26
              title: '我行账户行',
liyixun committed
27 28 29 30 31 32
              grp: 'rmbclm',
              rol: 'acwacw',
            }"
            :disabled="true"
          >
          </c-ptap>
liyixun committed
33
        </c-col>
liyixun committed
34 35 36 37
        <c-col :span="11" :offset="1">
          <c-ptap
            :model="model"
            :argadr="{
wangna committed
38
              title: '收款行',
liyixun committed
39 40 41 42 43 44 45
              grp: 'rmbclm',
              rol: 'bebbeb',
            }"
            :disabled="true"
          >
          </c-ptap>
          <c-col :span="24">
wangna committed
46
            <el-form-item label="起息日" prop="rmbclm.valdat">
liyixun committed
47 48 49 50
              <c-date-picker
                type="date"
                v-model="model.rmbclm.valdat"
                style="width: 100%"
wangna committed
51
                placeholder="请选择起息日"
liyixun committed
52 53 54
              ></c-date-picker>
            </el-form-item>
          </c-col>
liyixun committed
55
        </c-col>
liyixun committed
56 57
      </c-col>
    </c-row>
wangna committed
58
    <!-- SG000133 : 起息日 -->
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>