Rbip.vue 3.62 KB
Newer Older
1
<template>
2
  <div class="eibs">
3
    <c-col :span="12" style="padding-right: 20px;">
4 5 6 7
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
wangna committed
8
            title: '偿付行',
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
            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
wangna committed
24
          label="帐户标识"
25 26 27 28 29
          prop="ltdgrp.rmt.pts.dftact"
        >
          <c-select
            v-model="model.ltdgrp.rmt.pts.dftact"
            style="width: 100%"
wangna committed
30
            placeholder="请输入帐户标识"
31 32 33 34 35 36 37
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-form-item
wangna committed
38
          label="偿付银行帐户标识"
39 40 41 42 43 44
          prop="ltdgrp.rec.rmbact"
        >
          <c-input
            v-model="model.ltdgrp.rec.rmbact"
            maxlength="35"
            disabled
wangna committed
45
            placeholder="请输入偿付银行帐户标识"
46 47 48 49 50 51
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- SF000254 : Charges Definition -->

      <c-col :span="24">
wangna committed
52
        <el-form-item label="费用定义" prop="ltdgrp.rec.rmbcha">
53 54 55
          <c-select
            v-model="model.ltdgrp.rec.rmbcha"
            style="width: 100%"
wangna committed
56
            placeholder="请输入费用定义"
57 58 59 60 61 62 63 64
            :code="codes.rmbcha"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <!-- SF000260 : Other Charges -->

      <c-col :span="24">
wangna committed
65
        <c-form-item label="其他费用" prop="ltdgrp.blk.rmbcha">
66 67 68 69 70
          <c-input
            type="textarea"
            v-model="model.ltdgrp.blk.rmbcha"
            maxlength="35"
            show-word-limit
wangna committed
71
            placeholder="请输入其他费用"
72 73 74 75 76 77
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- S0000334 : MT747 :77A: -->

      <c-col :span="24">
wangna committed
78
        <c-form-item label="MT747:77A:" prop="lttp.rmbnar">
79 80 81 82 83
          <c-input
            type="textarea"
            v-model="model.lttp.rmbnar"
            maxlength="35"
            show-word-limit
wangna committed
84
            placeholder="请输入"
85 86 87
          ></c-input>
        </c-form-item>
      </c-col>
wangna committed
88
      <!-- SF000365 : 适用规则 RMB -->
89 90

      <c-col :span="24">
wangna committed
91
        <el-form-item label="适用规则 RMB" prop="ltdgrp.rec.apprulrmb">
92 93 94
          <c-select
            v-model="model.ltdgrp.rec.apprulrmb"
            style="width: 100%"
wangna committed
95
            placeholder="请输入适用规则 RMB"
96 97 98 99 100 101 102 103 104
            :code="codes.apprulrmb"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <!-- SF000366 : Date of Authorisation to Reimburse -->

      <c-col :span="24">
        <el-form-item
wangna committed
105
          label="授权偿付日期"
106 107 108 109 110 111 112
          prop="ltdgrp.rec.autdat"
        >
          <c-date-picker
            type="date"
            v-model="model.ltdgrp.rec.autdat"
            style="width: 100%"
            disabled
wangna committed
113
            placeholder="请输入授权偿付日期"
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
          ></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>