Remp.vue 3.56 KB
Newer Older
lianyang committed
1 2 3
<template>
  <div class="eibs-tab">
    <c-col :span="12">
lianyang committed
4
    <c-col :span="24">
5
      <el-form-item label="偿付行" prop="rmbclm.rmbrol">
lianyang committed
6 7 8
        <c-select
          v-model="model.rmbclm.rmbrol"
          style="width: 100%"
lianyang committed
9 10 11
          placeholder="请选择偿付行"
          :code="codes.rolall"
          @change="selectOrCheckboxRule('rmbclm.rmbrol')" 
lianyang committed
12 13 14 15 16 17 18
        >
        </c-select>
      </el-form-item>
    </c-col>
    <!-- SF000021 : 偿付行 -->
    <!-- SF000020 : 编号 -->

lianyang committed
19 20
    <c-col :span="24">
    <!-- Reference for Address Optional -->
lianyang committed
21
      <c-form-item
22
        label="偿付行参考号"
lianyang committed
23 24 25 26 27
        prop="rmbclm.rmbrmb.pts.ref"
      >
        <c-input
          v-model="model.rmbclm.rmbrmb.pts.ref"
          maxlength="16"
lianyang committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
          placeholder="请输入编号"
          :disabled="model.rmbclm.rmbrol=='ISS' ||model.rmbclm.rmbrol=='AVB'"
          @blur="eventFunction('rmbclm.rmbrmb.pts.ref')"
        ></c-input>
      </c-form-item>
    </c-col>
    <c-col :span="24">
      <c-ptap1
        :model="model"
        :argadr="{
          title: '',
          grp: 'rmbclm',
          rol: 'rmbrmb',
        }"
        @onSeainf="onSeainf"
        @onAplpDet="onRmbpDet"
        :disabled1="model.rmbclm.rmbrol=='ISS' ||model.rmbclm.rmbrol=='AVB'"
        :disabled="model.rmbclm.rmbrol!=''"
      >
      </c-ptap1>
    </c-col>

        <!-- SF000011 : Account with Bank -->
    <c-col :span="24">
52
      <c-form-item label="帐户行参考号" prop="rmbclm.acwacw.pts.ref">
lianyang committed
53 54 55 56 57
        <c-input
          v-model="model.rmbclm.acwacw.pts.ref"
          maxlength="16"
          placeholder="请输入"
          @blur="eventFunction('rmbclm.acwacw.pts.ref')"
lianyang committed
58 59 60
        ></c-input>
      </c-form-item>
    </c-col>
lianyang committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74
    <c-col :span="24">
      <c-ptap1
        :model="model"
        :argadr="{
          title: '',
          grp: 'rmbclm',
          rol: 'acwacw',
        }"
        @onSeainf="onSeainf"
        @onAplpDet="onAcwpDet"
        :disabled="model.rmbclm.acwacw.pts.extkey!=''"
      >
      </c-ptap1>
    </c-col>
lianyang committed
75

lianyang committed
76 77 78
        <!-- SF000016 : Beneficiary Bank -->
    <!-- SF000019 : 编号 -->
    <c-col :span="24">
79
      <c-form-item label="受益人银行参考号" prop="rmbclm.bebbeb.pts.ref">
lianyang committed
80 81 82
        <c-input
          v-model="model.rmbclm.bebbeb.pts.ref"
          maxlength="16"
83
          placeholder="请输入受益人银行"
lianyang committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
          @blur="eventFunction('rmbclm.bebbeb.pts.ref')"
        ></c-input>
      </c-form-item>
    </c-col>
    <c-col :span="24">
      <c-ptap1
        :model="model"
        :argadr="{
          title: '',
          grp: 'rmbclm',
          rol: 'bebbeb',
        }"
        @onSeainf="onSeainf"
        @onAplpDet="onBebpDet"
        :disabled="model.rmbclm.bebbeb.pts.extkey!=''"
      >
      </c-ptap1>
    </c-col>

    <!-- SG000133 : value date -->
lianyang committed
104
    <c-col :span="12">
105
      <el-form-item label="起息日" prop="rmbclm.valdat">
lianyang committed
106 107 108 109
        <c-date-picker
          type="date"
          v-model="model.rmbclm.valdat"
          style="width: 100%"
110
          placeholder="请选择起息日"
lianyang committed
111 112 113 114 115
        ></c-date-picker>
      </el-form-item>
    </c-col>


lianyang committed
116 117 118 119 120 121 122 123
    </c-col>
  </div>
</template>
<script>
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Betsnd/Event'
lianyang committed
124
import Ptap1 from "~/views/Public/Ptap1"
lianyang committed
125 126

export default {
lianyang committed
127 128 129
    components: {
    "c-ptap1": Ptap1,
  },
lianyang committed
130 131 132 133 134 135 136 137 138 139 140
  inject: ['root'],
  props: ['model', 'codes'],
  mixins: [commonProcess],
  data() {
    return {}
  },
  methods: { ...Event },
  created: function () {},
}
</script>
<style></style>