Adcp.vue 3.06 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">
jianglong committed
5
      <el-form-item label="附加条款" prop="ledgrp.blk.adlcnd">
zhengxiaokui committed
6 7 8 9 10 11
        <c-input
          type="textarea"
          :rows="16"
          v-model="model.ledgrp.blk.adlcnd"
          maxlength="65"
          show-word-limit
jianglong committed
12
          placeholder="请输入附加条款"
zhengxiaokui committed
13 14 15 16 17 18 19 20 21 22 23 24 25
        ></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
      >
    </c-col>

    <c-col :span="24" class="letopn_adcp_cheak">
43
      <c-checkbox v-model="model.ledgrp.rec.redclsflg">红/绿条款</c-checkbox>
zhengxiaokui committed
44
    </c-col>
zhengxiaokui committed
45
    <c-blkTextarea :model="model" v-bind="blk1"> </c-blkTextarea>
zhengxiaokui committed
46
    <!-- Instructions to Pay,accept,negot,bank -->
zhengxiaokui committed
47
    <!-- <c-col :span="19">
zhengxiaokui committed
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
      <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
69
    </c-col> -->
zhengxiaokui committed
70
  </div>
zhengxiaokui committed
71 72
</template>
<script>
zhengxiaokui committed
73
import Api from "~/service/Api";
wangren committed
74
import commonProcess from "~/mixin/commonProcess";
zhengxiaokui committed
75 76
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letopn/Event";
zhengxiaokui committed
77
import BlkTextarea from "~/views/Public/BlkTextarea";
zhengxiaokui committed
78 79

export default {
zhengxiaokui committed
80 81
  inject: ["root"],
  props: ["model", "codes"],
zhengxiaokui committed
82
  components: { "c-blkTextarea": BlkTextarea },
83

wangren committed
84
  mixins: [commonProcess],
zhengxiaokui committed
85
  data() {
zhengxiaokui committed
86 87 88
    return {
      blk: {
        blkMsg: {
jianglong committed
89
          title: "附加条款",
zhengxiaokui committed
90 91 92 93 94
          dataUrl: "ledgrp.blk.adlcnd", //字段所在model路劲
          rows: 16,
        },
        rulePath: "letp.adlcnd.buttxmsel",
      },
zhengxiaokui committed
95 96 97 98 99 100 101 102 103
      blk1: {
        blkMsg: {
          title: "付款、承兑、议付银行指示",
          dataUrl: "ledgrp.blk.insbnk", //字段所在model路劲
          rows: 4,
          maxlength: 2000,
        },
        rulePath: "letp.insbnk.buttxmsel",
      },
zhengxiaokui committed
104
    };
zhengxiaokui committed
105 106 107 108
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
109 110
</script>
<style>
zhengxiaokui committed
111
.letopn_adcp_cheak {
Wuyuqiu committed
112
  margin: 0px 0 10px 120px;
113 114
  display: flex;
  justify-content: flex-start;
zhengxiaokui committed
115
}
zhengxiaokui committed
116
</style>