Cips.vue 2.75 KB
Newer Older
1 2
<template>
  <div class="eibs">
WF1020 committed
3 4 5 6 7 8 9 10 11 12 13
    <c-col :span="24">
      <c-col :span="12" style="padding-right: 20px">
        <c-col :span="24">
          <el-form-item label="收款直接参与者行号" prop="trnmod.reconebch">
            <c-input
              v-model="model.trnmod.reconebch"
              maxlength="35"
              placeholder="请输入收款直接参与者行号"
            ></c-input>
          </el-form-item>
        </c-col>
14

WF1020 committed
15 16 17 18 19 20 21 22 23 24 25
        <c-col :span="24">
          <el-form-item label="收款直接参与者名称" prop="trnmod.reconebchnam">
            <c-input
              type="textarea"
              v-model="model.trnmod.reconebchnam"
              maxlength="35"
              show-word-limit
              placeholder="请输入收款直接参与者名称"
            ></c-input>
          </el-form-item>
        </c-col>
26

WF1020 committed
27 28 29 30 31 32 33 34 35 36 37
        <c-col :span="24">
          <el-form-item label="附言" prop="trnmod.commen">
            <c-input
              type="textarea"
              v-model="model.trnmod.commen"
              maxlength="30"
              show-word-limit
              placeholder="请输入附言"
            ></c-input>
          </el-form-item>
        </c-col>
38

WF1020 committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
        <c-col :span="24">
          <el-form-item label="业务种类" prop="trnmod.bustyp">
            <c-select
              v-model="model.trnmod.bustyp"
              style="width: 100%"
              placeholder="请选择业务种类"
            >
              <el-option
                v-for="item in this.bustyp"
                :key="item.value"
                :label="item.value + item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
      </c-col>
      <c-col :span="12" style="padding-left: 20px"> </c-col>
    </c-col>
59 60 61
  </div>
</template>
<script>
WF1020 committed
62 63 64
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import event from "../event";
65 66

export default {
WF1020 committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {
      bustyp: [
        { value: "GODX", label: "货期贸易" },
        { value: "STRX", label: "服务贸易" },
        { value: "CTFX", label: "资本项下" },
        { value: "FTFX", label: "金融机构头寸调拨" },
        { value: "BDES", label: "债卷还本利息" },
        { value: "BPRR", label: "债卷还本金" },
        { value: "BINP", label: "债卷利息" },
        { value: "BISF", label: "债卷发行手续费" },
        { value: "BCAF", label: "债卷兑付手续费" },
        { value: "CBCF", label: "附息式债卷兑付手续费" },
        { value: "OTFX", label: "其他" },
      ],
    };
  },
  methods: { },
  created: function () {},
};
90 91 92
</script>
<style>
</style>