Adcp.vue 2.12 KB
Newer Older
hpj committed
1 2
<template>
  <div class="eibs-tab">
lianyang committed
3
    <c-col :span="20">
hpj committed
4 5 6
      <el-form-item label="附加条件" prop="ledgrp.blk.adlcnd">
        <c-input
          type="textarea"
lianyang committed
7
          :rows="20"
hpj committed
8
          v-model="model.ledgrp.blk.adlcnd"
lianyang committed
9
          maxlength="52000"
hpj committed
10 11 12 13 14 15 16
          show-word-limit
          placeholder="请输入Additional Conditions"
        >
        </c-input>
      </el-form-item>
    </c-col>

lianyang committed
17
    <c-col :span="2">
hpj committed
18 19 20 21 22 23 24 25 26 27
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onAdlcndButtxmsel"
      >
        ...
      </c-button>
    </c-col>

lianyang committed
28
    <c-col :span="24" class="letnot_adcp_cheak">
hpj committed
29 30 31 32 33
      <c-checkbox v-model="model.ledgrp.rec.spcbenflg">
        受益人特殊付款条款</c-checkbox
      >
    </c-col>

lianyang committed
34
    <c-col :span="24" class="letnot_adcp_cheak">
hpj committed
35 36 37 38 39
      <c-checkbox v-model="model.ledgrp.rec.spcrcbflg">
        收款银行特殊付款条款</c-checkbox
      >
    </c-col>

lianyang committed
40
    <c-col :span="24" class="letnot_adcp_cheak">
hpj committed
41 42 43 44 45
      <c-checkbox v-model="model.ledgrp.rec.redclsflg">
        红、绿条款选项
      </c-checkbox>
    </c-col>

lianyang committed
46
    <c-col :span="20">
hpj committed
47 48 49
      <el-form-item label="付款、承兑、议付银行指示" prop="ledgrp.blk.insbnk">
        <c-input
          type="textarea"
lianyang committed
50
          :rows="5"
hpj committed
51
          v-model="model.ledgrp.blk.insbnk"
lianyang committed
52
          maxlength="780"
hpj committed
53 54 55 56 57 58
          show-word-limit
          placeholder="付款、承兑、议付银行指示"
        ></c-input>
      </el-form-item>
    </c-col>

lianyang committed
59
    <c-col :span="2">
hpj committed
60 61 62 63 64 65 66 67 68 69 70 71 72
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onInsbnkButtxmsel"
      >
        ...
      </c-button>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
73
import commonProcess from "~/mixin/commonProcess";
hpj committed
74 75 76 77 78 79
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letnot/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
80
  mixins: [commonProcess],
hpj committed
81 82 83 84 85 86 87 88
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
lianyang committed
89
.letnot_adcp_cheak {
hpj committed
90 91 92
  margin: 0px 0 10px 150px;
}
</style>