Adcp.vue 3.73 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
<template>
  <div class="eibs-tab">

    <c-col :span="24">
        <c-ptap-commons  :cols="65" :rows="800" :minRows="20" :maxRows="800" :model="model" :charmod="3"
                          :extCodes="['ltdgrp','blk']"  lastModel="adlcnd" title="Additional Conditions">
        </c-ptap-commons>
    </c-col>

    <c-col :span="12" style="padding-right: 20px">

      <c-col :span="24">
        <el-form-item label="Charges Condition" prop="ltdgrp.rec.chato">
          <c-select v-model="model.ltdgrp.rec.chato" dbCode="chadet" placeholder="请选择"></c-select>
        </el-form-item>
      </c-col>

      <c-col :span="22">
        <c-ptap-commons
          :cols="35"
          :rows="6"
          :minRows="6"
          :maxRows="6"
          :model="model"
          :extCodes="['ltdgrp', 'blk']"
          lastModel="feetxt"
          :charmod="3"
          title="Details of Charges"></c-ptap-commons>
      </c-col>


<!--      <c-col :span="24">
        <el-form-item label="Special Payment Conditions for Beneficiary" prop="ltdgrp.rec.spcben">
          <c-fullbox>
            <c-input
              type="textarea"
              maxlength="52000"
              v-model="model.ltdgrp.rec.spcben"
              :rows="15"
              show-word-limit
              placeholder="请输入受益人特殊付款条款"></c-input>
            <template slot="footer">
              <c-button size="small" type="primary" icon="el-icon-search"></c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>-->

    </c-col>

    <c-col :span="12" style="padding-left: 20px">

    <c-col :span="22">
      <c-ptap-commons
        :cols="65"
        :rows="12"
        :minRows="6"
        :maxRows="12"
        :model="model"
        :extCodes="['ltdgrp', 'blk']"
        lastModel="insbnk"
        :charmod="2"
        title="Instructions to Pay.,Accept., Negot. Bank"></c-ptap-commons>
    </c-col>

    <c-col :span="24">
        <el-form-item label="" class="checkbox-left" prop="ltdgrp.rec.spcbenflg">
          <c-checkbox
            v-model="model.ltdgrp.rec.spcbenflg"
            true-label="X"
            false-label=""
            :disabled="this.model.ltdgrp.blk.spcben != null && this.model.ltdgrp.blk.spcben != ''"
            >Special Payment Cond.for Beneficiary</c-checkbox
          >
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="" class="checkbox-left" prop="ltdgrp.rec.spcrcbflg">
          <c-checkbox
            v-model="model.ltdgrp.rec.spcrcbflg"
            true-label="X"
            false-label=""
            :disabled="this.model.ltdgrp.blk.spcrcb != null && this.model.ltdgrp.blk.spcrcb != ''"
            >Special Payment Cond.for Bank Only</c-checkbox
          >
        </el-form-item>
      </c-col>

<!--      <c-col :span="24">
        <el-form-item label="Special Payment Conditions for Bank Only" prop="ltdgrp.blk.spcrcb">
          <c-fullbox>
            <c-input
              type="textarea"
              maxlength="52000"
              v-model="model.ltdgrp.blk.spcrcb"
              :rows="15"
              show-word-limit
              placeholder="请输入仅适用于指定银行的特殊付款条款"></c-input>
            <template slot="footer">
              <c-button size="small" type="primary" icon="el-icon-search"></c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>-->
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
};
</script>
<style>
.marginLable {
  padding-left: 160px;
}
</style>