Rbip.vue 4.54 KB
Newer Older
孟冬雪 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<template>
  <div class="eibs-tab">
    <c-row>
      <c-col :span="24">
        <!-- ====================左边======================= -->
        <c-col :span="11">
            <c-ptap
              :model="model"
              :argadr="{
                title: '偿付银行',
                grp: 'ltdgrp',
                rol: 'rmt',
              }"
              @onSeainf="onSeainf"
              @onAplpDet="onRmtpDet"
            >
            </c-ptap>
        </c-col>
        <c-col :span="24">
          <c-col :span="11">
            <el-form-item
wangna committed
22
              label="帐户标识"
孟冬雪 committed
23 24 25 26 27
              prop="ltdgrp.rmt.pts.dftact"
            >
              <c-select
                v-model="model.ltdgrp.rmt.pts.dftact"
                style="width: 100%"
wangna committed
28
                placeholder="请选择帐户标识"
孟冬雪 committed
29
                
孟冬雪 committed
30 31 32 33 34 35
              >
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="11" :offset="1">
            <el-form-item
wangna committed
36
              label="偿付银行帐户标识"
孟冬雪 committed
37 38 39 40 41 42
              label-width="280px"
              prop="ltdgrp.rec.rmbact"
            >
              <c-input
                v-model="model.ltdgrp.rec.rmbact"
                maxlength="35"
wangna committed
43
                placeholder="请输入偿付银行帐户标识"
孟冬雪 committed
44 45 46 47
              ></c-input>
            </el-form-item>
          </c-col>
        </c-col>
wangna committed
48
     
孟冬雪 committed
49 50
        <c-col :span="11">
          <c-col :span="24">
wangna committed
51
            <el-form-item label="费用定义" prop="ltdgrp.rec.rmbcha">
孟冬雪 committed
52 53 54
              <c-select
                v-model="model.ltdgrp.rec.rmbcha"
                style="width: 100%"
wangna committed
55
                placeholder="请选择费用定义"
孟冬雪 committed
56 57 58 59 60 61
              >
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="24">
wangna committed
62
            <el-form-item label="其他费用" prop="ltdgrp.blk.rmbcha">
孟冬雪 committed
63 64 65 66 67
              <c-input
                type="textarea"
                v-model="model.ltdgrp.blk.rmbcha"
                maxlength="35"
                show-word-limit
wangna committed
68
                placeholder="请输入其他费用"
孟冬雪 committed
69 70 71 72 73
              ></c-input>
            </el-form-item>
          </c-col>

          <c-col :span="24">
wangna committed
74
            <el-form-item label="MT747:77A:" prop="lttp.rmbnar">
孟冬雪 committed
75 76 77 78 79
              <c-input
                type="textarea"
                v-model="model.lttp.rmbnar"
                maxlength="35"
                show-word-limit
wangna committed
80
                placeholder="请输入"
孟冬雪 committed
81 82 83 84 85 86 87
              ></c-input>
            </el-form-item>
          </c-col>
        </c-col>
        <c-col :span="24">
          <c-col :span="11">
            <el-form-item
wangna committed
88
              label="适用规则 RMB"
孟冬雪 committed
89 90 91 92 93
              prop="ltdgrp.rec.apprulrmb"
            >
              <c-select
                v-model="model.ltdgrp.rec.apprulrmb"
                style="width: 100%"
wangna committed
94
                placeholder="请选择适用规则 RMB"
孟冬雪 committed
95
                :code="codes.apprulrmb"
孟冬雪 committed
96 97 98 99 100 101 102
              >
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="11" :offset="1">
            <el-form-item
wangna committed
103
              label="授权偿付日期"
孟冬雪 committed
104 105 106 107 108 109 110
              label-width="250px"
              prop="ltdgrp.rec.autdat"
            >
              <c-date-picker
                type="date"
                v-model="model.ltdgrp.rec.autdat"
                style="width: 100%"
wangna committed
111
                placeholder="请选择授权偿付日期"
孟冬雪 committed
112 113 114 115 116 117 118 119 120 121
              ></c-date-picker>
            </el-form-item>
          </c-col>
        </c-col>
      </c-col>
    </c-row>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
122
import commonProcess from "~/mixin/commonProcess";
孟冬雪 committed
123 124 125 126 127 128 129
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Lttopn/Event";
import Ptap from "~/views/Public/Ptap";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
130
  mixins: [commonProcess],
孟冬雪 committed
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
  components: { "c-ptap": Ptap },
  data() {
    return {
      ptsaddg: {
        columns: [
          {
            title: "角色",
            width: "120px",
            dataIndex: "rol",
            show: "select",
          },
          {
            title: "机构实体",
            width: "180px",
            dataIndex: "ptyextkey",
            show: "input",
          },
          {
            title: "名称",
            width: "300px",
            dataIndex: "nam",
          },
          {
            title: "参考地址",
            width: "300px",
            dataIndex: "ref",
          },
        ],
        urls: "lttp.ptsaddp.ptsaddg",
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>