Doxpame.vue 5.38 KB
Newer Older
zhengxiaokui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<template>
  <c-row>
    <c-col :span="24">
      <c-col :span="11">
        <c-col :span="24" class="doxpame_top_Description">
          <span>{{ getTitle }}</span>
        </c-col>
        <c-col>
          <el-form-item
            label=""
            label-width="0px"
            :prop="`${recgrp}.blk.${ametyp}`"
          >
            <c-input
              type="textarea"
              v-model="model[recgrp].blk[ametyp]"
              maxlength="52000"
              show-word-limit
              :rows="20"
              placeholder="请输入Description of Goods"
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
      <c-col :span="11" :offset="1">
        <c-col :span="24" class="doxpame_top_Description">
          <span>History Overview</span>
        </c-col>
        <c-col :span="24">
          <el-form-item
            label=""
            label-width="0px"
            :prop="`${recgrp}.blk.${ametyp}ame`"
          >
            <c-input
              type="textarea"
              v-model="model[recgrp].blk[`${ametyp}ame`]"
              maxlength="52000"
              show-word-limit
zhengxiaokui committed
40
              :rows="ametyp === 'adlcnd' ? 14 : 17"
zhengxiaokui committed
41 42 43 44
              placeholder="请输入Description of Goods History"
            ></c-input>
          </el-form-item>
        </c-col>
zhengxiaokui committed
45 46
        <c-col :span="24" v-if="ametyp === 'adlcnd'">
          <c-col :span="8">
zhengxiaokui committed
47
            <c-checkbox v-model="model[recgrp].rec.redclsflg"
zhengxiaokui committed
48 49 50 51 52
              >Red/Green Clause</c-checkbox
            >
          </c-col>

          <c-col :span="16">
zhengxiaokui committed
53
            <c-checkbox v-model="model[recgrp].rec.spcbenflg"
zhengxiaokui committed
54 55 56 57 58
              >Special payment conditions for beneficiary exists</c-checkbox
            >
          </c-col>

          <c-col :span="16" :offset="8">
zhengxiaokui committed
59
            <c-checkbox v-model="model[recgrp].rec.spcrcbflg"
zhengxiaokui committed
60 61 62 63
              >Special Payment Conditions for specified Bank only</c-checkbox
            >
          </c-col>
        </c-col>
zhengxiaokui committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140

        <c-col :span="24">
          <c-checkbox v-model="model[amep][`${ametyp}amep`].modflg"
            >Modify Text to Replace</c-checkbox
          >
        </c-col>

        <c-col :span="24">
          <c-checkbox v-model="model[amep][`${ametyp}amep`].modmanflg"
            >Modify field for manual update</c-checkbox
          >
        </c-col>
      </c-col>
    </c-col>

    <c-col :span="24">
      <c-col :span="11">
        <c-col :span="24" class="doxpame_top_Description">
          <span>Add/Delete Text in current Amendment</span>
        </c-col>
        <c-col :span="24">
          <el-form-item
            label=""
            label-width="0px"
            :prop="`${amep}.${ametyp}amep.usrblk`"
          >
            <c-input
              type="textarea"
              v-model="model[amep][`${ametyp}amep`].usrblk"
              maxlength="2000"
              show-word-limit
              :rows="8"
              placeholder="请输入Block to enter additional info for Add/Delete"
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="11" :offset="1" class="ame_button">
        <c-col :span="24" class="ame_BlkTextarea_button">
          <c-button
            size="small"
            type="primary"
            icon="el-icon-search"
            @click="showGridPromptDialog('letamep.lcrgodame.buttxmsel')"
          >
            ...
          </c-button>
        </c-col>

        <c-col :span="24">
          <c-button size="small" type="primary" @click="onLcrgodamepButdif">
            Show Diff
          </c-button>
        </c-col>

        <c-col :span="24">
          <c-button size="small" type="primary" @click="onLcrgodamepButadd">
            Add Text
          </c-button>
        </c-col>

        <c-col :span="24">
          <c-button
            size="small"
            icon="el-icon-delete"
            @click="onLcrgodamepButdel"
          >
            Delete text
          </c-button>
        </c-col>
      </c-col>
    </c-col>
  </c-row>
</template>
<script>
import Api from "~/service/Api";
wangren committed
141
import commonProcess from "~/mixin/commonProcess";
zhengxiaokui committed
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

export default {
  inject: ["root"],
  props: {
    model: {
      type: Object,
      default: undefined,
    },
    codes: {
      type: Object,
      default: undefined,
    },
    recgrp: {
      type: String,
      default: "",
    },
    //修改字段:如货物lcrgod
    ametyp: {
      type: String,
      default: "",
    },
  },
wangren committed
164
  mixins: [commonProcess],
zhengxiaokui committed
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
  data() {
    return {
      amep: `${this.recgrp.substring(0, 2)}tamep`,
    };
  },
  methods: {
    onLcrgodamepButadd() {},
    onLcrgodamepButdif() {},
    onLcrgodamepButdel() {},
  },
  computed: {
    getTitle() {
      switch (this.ametyp) {
        case "lcrgod":
          return "DESCRIPTION OF GOODS";
        case "lcrdoc":
          return "ADDITIONAL CONDITIONS";
        case "adlcnd":
          return "DOCUMENTS REQUIRED";
zhengxiaokui committed
184 185 186 187
        case "spcben":
          return "Special Payment Conditions for Beneficiary";
        case "spcrcb":
          return "Special Payment Conditions for Bank Only";
zhengxiaokui committed
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
        default:
          return "title 错误";
      }
    },
  },
  created: function () {},
};
</script>
<style>
.doxpame_top_Description {
  height: 16px;
  color: #606266;
  line-height: 16px;
  font-size: 12px;
}

.ame_BlkTextarea_button {
  margin-top: 20px;
}
.ame_button button {
  margin-bottom: 10px;
}
.ame_button button:nth-last-child(1) {
  margin-left: 10px;
}
</style>