Opnp.vue 2.9 KB
Newer Older
liyixun committed
1
<template>
huangxin committed
2
  <div class="eibs">
lianyang committed
3 4 5 6 7 8 9 10
      <!-- =======================================左边======================================== -->
    <c-col :span="12" style="padding-right: 20px;">
      <c-col :span="24">
        <el-form-item label="是否SWIFT格式" prop="gitp.swiftflg">
          <c-select
            v-model="model.gitp.swiftflg"
            style="width: 100%"
            placeholder="请选择是否SWIFT格式"
liyixun committed
11
          >
lianyang committed
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
            <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>
      <c-col :span="24">
        <c-col :span="model.gidgrp.cbs.max.cur == 'CNY'? 20 : 24">
          <el-form-item label="对外担保类型" prop="gidgrp.rec.cfaguatyp">
            <c-select
              disabled
              v-model="model.gidgrp.rec.cfaguatyp"
              :style="model.gidgrp.cbs.max.cur == 'CNY'? 'width:90%' : 'width:100%'"
              placeholder="请选择对外担保类型"
            >
              <el-option
                v-for="item in codes.cfaguatyp"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
        <c-col :span="4" class="centerLable">
          <c-checkbox
            v-if="model.gidgrp.cbs.max.cur == 'CNY'"
            disabled
            v-model="model.gidgrp.rec.cmtflg"
            >跨境人民币保函</c-checkbox
liyixun committed
47
          >
lianyang committed
48 49 50
        </c-col>
        <!-- <c-checkbox v-if="model.gidgrp.rec.fingua=='Y'" disabled v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox> -->
      </c-col>
liyixun committed
51
    </c-col>
lianyang committed
52 53 54 55
  <!-- =======================================右边======================================== -->
    <c-col :span="12" style="padding-left: 20px;">
      <c-col :span="24">
        <el-form-item label="是否对外担保" prop="gidgrp.rec.fingua">
liyixun committed
56 57
          <c-select
            disabled
lianyang committed
58
            v-model="model.gidgrp.rec.fingua"
lianyang committed
59
            style="width: 100%"
lianyang committed
60
            placeholder="请选择是否对外担保"
liyixun committed
61 62
          >
            <el-option
lianyang committed
63
              v-for="item in codes.fingua"
liyixun committed
64 65 66 67 68 69
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
liyixun committed
70
        </el-form-item>
liyixun committed
71 72
      </c-col>
    </c-col>
liyixun committed
73 74 75
  </div>
</template>
<script>
liyixun committed
76
import Api from "~/service/Api";
liyixun committed
77
import commonProcess from "~/mixin/commonProcess";
liyixun committed
78 79
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getopn/Event";
liyixun committed
80 81

export default {
liyixun committed
82 83 84 85 86 87 88 89 90
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
91 92 93
</script>
<style>
</style>