Cips2.vue 1.94 KB
Newer Older
panziyi committed
1
<template>
xiameng committed
2
  <div class="eibs">
panziyi committed
3
    <!-- SG000227 : 收款直接参与者行号 -->
xiameng committed
4
    <c-col :span="12" style="padding-right: 20px;">
panziyi committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
      <c-col :span="24">
        <c-form-item label="收款直接参与者行号" prop="trnmod.reconebch">
          <c-input
            v-model="model.trnmod.reconebch"
            maxlength="35"
            placeholder=""
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- SG000228 : 收款直接参与者名称 -->

      <c-col :span="24">
        <c-form-item label="收款直接参与者名称" prop="trnmod.reconebchnam">
          <c-input
            type="textarea"
            v-model="model.trnmod.reconebchnam"
            rows="3"
            maxlength="35"
            show-word-limit
            placeholder=""
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- SG000229 : 附言 -->

      <c-col :span="24">
        <c-form-item label="附言" prop="trnmod.commen">
          <c-input
            type="textarea"
            v-model="model.trnmod.commen"
            rows="2"
            maxlength="30"
            show-word-limit
            placeholder=""
          ></c-input>
        </c-form-item>
      </c-col>
      <!-- SG000230 : 业务种类 -->

      <c-col :span="24">
        <el-form-item label="业务种类" prop="trnmod.bustyp">
          <c-select
            v-model="model.trnmod.bustyp"
            style="width: 100%"
            :code="codes.bustyp"
            placeholder=""
          >
          </c-select>
        </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/Gitset/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>