Adcp.vue 2.61 KB
Newer Older
hpj committed
1
<template>
LiRui committed
2
  <div class="eibs">
lianyang committed
3
    <c-col :span="20">
jianglong committed
4
      <el-form-item label="附加条款" prop="ledgrp.blk.adlcnd">
hpj committed
5 6
        <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
          show-word-limit
jianglong committed
11
          placeholder="请输入附加条款"
hpj committed
12 13 14 15 16
        >
        </c-input>
      </el-form-item>
    </c-col>

lianyang committed
17
    <c-col :span="2">
18
    <!-- @click="onAdlcndButtxmsel" -->
hpj committed
19 20 21
      <c-button
        size="small"
        type="primary"
LiRui committed
22
        icon="el-icon-more"
23
        @click="showGridPromptDialog('letp.adlcnd.buttxmsel', null, null,{TXT: 'ledgrp.blk.adlcnd'}, {TXT: false},'doxpDialog')"
hpj committed
24 25 26 27
      >
      </c-button>
    </c-col>

28 29 30 31 32 33 34
    <c-col :span="24">
      <el-form-item prop="ledgrp.rec.spcbenflg" class="checkbox-left" >
        <c-checkbox v-model="model.ledgrp.rec.spcbenflg"
          :disabled="model.ledgrp.blk.spcben!=''">
          受益人特殊付款条款</c-checkbox
        >
      </el-form-item>
hpj committed
35 36
    </c-col>

37 38 39 40 41 42 43
    <c-col :span="24">
      <el-form-item prop="ledgrp.rec.spcrcbflg" class="checkbox-left">
        <c-checkbox v-model="model.ledgrp.rec.spcrcbflg"
          :disabled="model.ledgrp.blk.spcrcb!=''">
          收款银行特殊付款条款</c-checkbox
        >
      </el-form-item>
hpj committed
44 45
    </c-col>

46 47 48 49 50 51
    <c-col :span="24">
      <el-form-item prop="ledgrp.rec.redclsflg" class="checkbox-left">
        <c-checkbox v-model="model.ledgrp.rec.redclsflg">
          红、绿条款选项
        </c-checkbox>
      </el-form-item>
hpj committed
52 53
    </c-col>

lianyang committed
54
    <c-col :span="20">
hpj committed
55 56 57
      <el-form-item label="付款、承兑、议付银行指示" prop="ledgrp.blk.insbnk">
        <c-input
          type="textarea"
lianyang committed
58
          :rows="5"
hpj committed
59
          v-model="model.ledgrp.blk.insbnk"
lianyang committed
60
          maxlength="780"
hpj committed
61 62 63 64 65 66
          show-word-limit
          placeholder="付款、承兑、议付银行指示"
        ></c-input>
      </el-form-item>
    </c-col>

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

export default {
  inject: ["root"],
  props: ["model", "codes"],
88
  mixins: [commonProcess],
hpj committed
89 90 91 92 93 94 95 96
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
97

hpj committed
98
</style>