Opnp.vue 3.12 KB
Newer Older
1
<template>
Wuyuqiu committed
2 3
  <div class="eibs">
    <c-col :span="12" style="padding-right: 20px;">
liyixun committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
      <el-form-item label="是否SWIFT格式" prop="gitp.swiftflg">
        <c-select
          v-model="model.gitp.swiftflg"
          style="width: 100%"
          placeholder="请选择是否SWIFT格式"
        >
          <el-option
            v-for="item in codes.swiftflg"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
        </c-select>
      </el-form-item>
    </c-col>

Wuyuqiu committed
21
    <c-col :span="12" style="padding-left: 20px;">
liyixun committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
      <el-form-item label="是否对外担保" prop="gidgrp.rec.fingua">
        <c-select
          v-model="model.gidgrp.rec.fingua"
          style="width: 100%"
          placeholder="请选择是否对外担保"
        >
          <el-option
            v-for="item in codes.fingua"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
        </c-select>
      </el-form-item>
    </c-col>

Wuyuqiu committed
39
    <c-col :span="12" style="padding-right: 20px;" v-if="model.gidgrp.cbs.max.cur == 'CNY'">
liyixun committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
      <c-col :span="20">
        <el-form-item label="对外担保类型" prop="gidgrp.rec.cfaguatyp">
          <c-select
            :disabled="
              model.gidgrp.rec.fingua == 'N' || model.gidgrp.rec.fingua == ''
            "
            v-model="model.gidgrp.rec.cfaguatyp"
            style="width: 90%"
            placeholder="请选择对外担保类型"
          >
            <el-option
              v-for="item in codes.cfaguatyp"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
58
        </el-form-item>
liyixun committed
59 60 61 62 63 64 65 66
      </c-col>
      <c-col :span="4" class="centerLable">
        <c-checkbox disabled v-model="model.gidgrp.rec.cmtflg"
          >跨境人民币保函</c-checkbox
        >
      </c-col>
    </c-col>

Wuyuqiu committed
67
    <c-col :span="12" style="padding-right: 20px;" v-if="model.gidgrp.cbs.max.cur != 'CNY'">
liyixun committed
68
      <c-col :span="24">
69
        <el-form-item label="对外担保类型" prop="gidgrp.rec.cfaguatyp">
liyixun committed
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
          <c-select
            :disabled="
              model.gidgrp.rec.fingua == 'N' || model.gidgrp.rec.fingua == ''
            "
            v-model="model.gidgrp.rec.cfaguatyp"
            style="width: 100%"
            placeholder="请选择对外担保类型"
          >
            <el-option
              v-for="item in codes.cfaguatyp"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
86
        </el-form-item>
liyixun committed
87 88 89
      </c-col>
    </c-col>
  </div>
90 91
</template>
<script>
liyixun committed
92
import Api from "~/service/Api";
93
import commonProcess from "~/mixin/commonProcess";
liyixun committed
94 95
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitopn/Event";
96 97

export default {
liyixun committed
98 99 100 101 102 103 104 105 106 107
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  computed: {},
  methods: { ...Event },
  created: function () {},
};
108 109 110
</script>
<style>
</style>