Adcp.vue 3.04 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
zhengxiaokui committed
3 4
    <c-blkTextarea :model="model" v-bind="blk"> </c-blkTextarea>
    <!-- <c-col :span="19">
zhengxiaokui committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
      <el-form-item label="附加条件" prop="ledgrp.blk.adlcnd">
        <c-input
          type="textarea"
          :rows="16"
          v-model="model.ledgrp.blk.adlcnd"
          maxlength="65"
          show-word-limit
          placeholder="请输入Additional Conditions"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="2" class="letopn_dogp_button">
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onAdlcndButtxmsel"
      >
        ...
      </c-button>
zhengxiaokui committed
26
    </c-col> -->
zhengxiaokui committed
27 28 29 30

    <!-- Special payment conditions for beneficiary  -->
    <c-col :span="24" class="letopn_adcp_cheak">
      <c-checkbox v-model="model.ledgrp.rec.spcbenflg"
zhengxiaokui committed
31
        >受益人特殊付款条款</c-checkbox
zhengxiaokui committed
32 33 34 35 36 37
      >
    </c-col>

    <!-- Special payment conditions for receiving bank -->
    <c-col :span="24" class="letopn_adcp_cheak">
      <c-checkbox v-model="model.ledgrp.rec.spcrcbflg">
zhengxiaokui committed
38
        收款银行特殊付款条款</c-checkbox
zhengxiaokui committed
39 40 41 42 43 44 45 46
      >
    </c-col>

    <c-col :span="24" class="letopn_adcp_cheak">
      <c-checkbox v-model="model.ledgrp.rec.redclsflg"
        >Red/Green Clause</c-checkbox
      >
    </c-col>
zhengxiaokui committed
47
    <c-blkTextarea :model="model" v-bind="blk1"> </c-blkTextarea>
zhengxiaokui committed
48
    <!-- Instructions to Pay,accept,negot,bank -->
zhengxiaokui committed
49
    <!-- <c-col :span="19">
zhengxiaokui committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
      <el-form-item label="付款、承兑、议付银行指示" prop="ledgrp.blk.insbnk">
        <c-input
          type="textarea"
          :rows="4"
          v-model="model.ledgrp.blk.insbnk"
          maxlength="65"
          show-word-limit
          placeholder="付款、承兑、议付银行指示"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="2" class="letopn_dogp_button">
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onInsbnkButtxmsel"
      >
        ...
      </c-button>
zhengxiaokui committed
71
    </c-col> -->
zhengxiaokui committed
72
  </div>
zhengxiaokui committed
73 74
</template>
<script>
zhengxiaokui committed
75
import Api from "~/service/Api";
zhengxiaokui committed
76
import CommonProcess from "~/mixin/CommonProcess";
zhengxiaokui committed
77 78
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letopn/Event";
zhengxiaokui committed
79
import BlkTextarea from "~/views/Public/BlkTextarea";
zhengxiaokui committed
80 81

export default {
zhengxiaokui committed
82 83
  inject: ["root"],
  props: ["model", "codes"],
zhengxiaokui committed
84
  components: { "c-blkTextarea": BlkTextarea },
孟冬雪 committed
85
  
zhengxiaokui committed
86 87
  mixins: [CommonProcess],
  data() {
zhengxiaokui committed
88 89 90 91 92 93 94 95 96
    return {
      blk: {
        blkMsg: {
          title: "附加条件",
          dataUrl: "ledgrp.blk.adlcnd", //字段所在model路劲
          rows: 16,
        },
        rulePath: "letp.adlcnd.buttxmsel",
      },
zhengxiaokui committed
97 98 99 100 101 102 103 104 105
      blk1: {
        blkMsg: {
          title: "付款、承兑、议付银行指示",
          dataUrl: "ledgrp.blk.insbnk", //字段所在model路劲
          rows: 4,
          maxlength: 2000,
        },
        rulePath: "letp.insbnk.buttxmsel",
      },
zhengxiaokui committed
106
    };
zhengxiaokui committed
107 108 109 110
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
111 112
</script>
<style>
zhengxiaokui committed
113
.letopn_adcp_cheak {
zhengxiaokui committed
114
  margin: 0px 0 10px 150px;
zhengxiaokui committed
115
}
zhengxiaokui committed
116
</style>