ConcatInfo1.vue 1.76 KB
Newer Older
fukai committed
1 2 3 4 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
<template>
  <div class="eibs-tab">
    <c-col :span="24">
      <c-col :span="24">
        <el-form-item :label="$t('gitopn.项目名称')" prop="gidgrp.rec.projnam">
          <c-input v-model="model.gidgrp.rec.projnam" maxlength="60" placeholder="请输入项目名称"></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item :label="$t('gitopn.基础合同编号')" prop="gidgrp.rec.orcref">
          <c-input v-model="model.gidgrp.rec.orcref" maxlength="100" placeholder="请输入基础合同编号"></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item :label="$t('gitopn.是否融资类')" prop="gidgrp.rec.guatyp">
          <c-select v-model="model.gidgrp.rec.guatyp" style="width: 100%" placeholder="请选择是否融资类" dbCode="IS12">
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item :label="$t('gitopn.受益人国别')" prop="gidgrp.rec.countrycod">
          <c-select  v-model="model.gidgrp.rec.countrycod"  isShowKeyAndLabel @change="copyValueToCountrycod($event)" style="width: 100%" placeholder="请选择受益人国别">
            <el-option v-for="item in model.bopCtyList" :key="item.cod" :value="item.cod" :label="`${item.cod} - ${item.txt}`">
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import event from "../event";
import Default from "../model/default";
import Check from "../model/check";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event, Default],
  data() {
    return {};
  },
  methods: {},
  mounted() {}
};
</script>
<style scoped>
.el-textarea .el-textarea__inner {
  height: 100px;
}
</style>