Adcp.vue 2.39 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">
18
    <!-- @click="onAdlcndButtxmsel" -->
hpj committed
19 20 21 22
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
23
        @click="showGridPromptDialog('letp.adlcnd.buttxmsel', null, null,{TXT: 'ledgrp.blk.adlcnd'}, {TXT: false},'doxpDialog')"
hpj committed
24 25 26 27 28
      >
        ...
      </c-button>
    </c-col>

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

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

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

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

lianyang committed
60
    <c-col :span="2">
61
    <!-- @click="onInsbnkButtxmsel" -->
hpj committed
62 63 64 65
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
66
        @click="showGridPromptDialog('letp.insbnk.buttxmsel', null, null,{TXT: 'ledgrp.blk.insbnk'}, {TXT: false},'doxpDialog')"
hpj committed
67 68 69 70 71 72 73 74
      >
        ...
      </c-button>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
75
import commonProcess from "~/mixin/commonProcess";
hpj committed
76 77 78 79 80 81
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letnot/Event";

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