Adcp.vue 2.05 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
zhengxiaokui committed
3
    <c-blkTextarea :model="model" v-bind="blk"> </c-blkTextarea>
zhengxiaokui committed
4
    <!-- Special payment conditions for beneficiary  -->
5 6 7 8 9 10
    <c-col :span="24">
      <el-form-item prop="ledgrp.rec.spcbenflg" class="checkbox-left" >
        <c-checkbox v-model="model.ledgrp.rec.spcbenflg"
          >受益人特殊付款条款</c-checkbox
        >
      </el-form-item>
zhengxiaokui committed
11 12 13
    </c-col>

    <!-- Special payment conditions for receiving bank -->
14 15 16 17 18 19
    <c-col :span="24">
      <el-form-item prop="ledgrp.rec.spcrcbflg" class="checkbox-left">
        <c-checkbox v-model="model.ledgrp.rec.spcrcbflg">
          收款银行特殊付款条款</c-checkbox
        >
      </el-form-item>
zhengxiaokui committed
20 21
    </c-col>

22 23 24 25
    <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>
zhengxiaokui committed
26
    </c-col>
zhengxiaokui committed
27
    <c-blkTextarea :model="model" v-bind="blk1"> </c-blkTextarea>
wangna committed
28
    
zhengxiaokui committed
29
  </div>
zhengxiaokui committed
30 31
</template>
<script>
zhengxiaokui committed
32
import Api from "~/service/Api";
wangren committed
33
import commonProcess from "~/mixin/commonProcess";
zhengxiaokui committed
34 35
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letopn/Event";
zhengxiaokui committed
36
import BlkTextarea from "~/views/Public/BlkTextarea";
zhengxiaokui committed
37 38

export default {
zhengxiaokui committed
39 40
  inject: ["root"],
  props: ["model", "codes"],
zhengxiaokui committed
41
  components: { "c-blkTextarea": BlkTextarea },
42

wangren committed
43
  mixins: [commonProcess],
zhengxiaokui committed
44
  data() {
zhengxiaokui committed
45 46 47
    return {
      blk: {
        blkMsg: {
jianglong committed
48
          title: "附加条款",
zhengxiaokui committed
49 50 51 52 53
          dataUrl: "ledgrp.blk.adlcnd", //字段所在model路劲
          rows: 16,
        },
        rulePath: "letp.adlcnd.buttxmsel",
      },
zhengxiaokui committed
54 55 56 57 58 59 60 61 62
      blk1: {
        blkMsg: {
          title: "付款、承兑、议付银行指示",
          dataUrl: "ledgrp.blk.insbnk", //字段所在model路劲
          rows: 4,
          maxlength: 2000,
        },
        rulePath: "letp.insbnk.buttxmsel",
      },
zhengxiaokui committed
63
    };
zhengxiaokui committed
64 65 66 67
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
68 69
</script>
<style>
70
/*
zhengxiaokui committed
71
.letopn_adcp_cheak {
Wuyuqiu committed
72
  margin: 0px 0 10px 120px;
73 74
  display: flex;
  justify-content: flex-start;
zhengxiaokui committed
75
}
76
*/
zhengxiaokui committed
77
</style>