Detp.vue 8.39 KB
Newer Older
孟冬雪 committed
1 2
<template>
  <div class="eibs-tab">
孟冬雪 committed
3 4 5 6 7 8 9 10 11
    <c-row>
      <c-col :span="11">
        <!-- Available with -->
        <c-col :span="24">
          <el-form-item label="Available with" prop="ltdgrp.rec.avbwth">
            <c-select
              v-model="model.ltdgrp.rec.avbwth"
              style="width: 100%"
              placeholder="请选择Available with"
孟冬雪 committed
12
              :code="codes.avbwth"
孟冬雪 committed
13 14 15
            >
            </c-select>
          </el-form-item>
孟冬雪 committed
16
        </c-col>
孟冬雪 committed
17 18 19 20 21 22 23

        <c-col :span="24">
          <c-ptap
            :model="model"
            :argadr="{
              title: '指定银行',
              grp: 'ltdgrp',
孟冬雪 committed
24
              rol: 'avt',
孟冬雪 committed
25 26 27 28
            }"
            :noRef="true"
            :onlySearch="true"
            @onSeainf="onSeainf"
孟冬雪 committed
29
            @onAplpDet="onAvtpDet"
孟冬雪 committed
30 31
          >
          </c-ptap>
孟冬雪 committed
32
        </c-col>
孟冬雪 committed
33 34 35 36 37 38 39 40 41 42 43 44

        <c-col :span="24">
          <el-form-item label="名称地址" prop="ltdgrp.blk.avbwthtxt">
            <c-input
              type="textarea"
              :rows="3"
              v-model="model.ltdgrp.blk.avbwthtxt"
              maxlength="35"
              show-word-limit
              placeholder="请输入名称地址"
            ></c-input>
          </el-form-item>
孟冬雪 committed
45
        </c-col>
孟冬雪 committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
        <!-- <c-col :span="12">
      <el-form-item label="Address Block" prop="ltdgrp.avb.pts.adrblk">
        <c-input
          type="textarea"
          v-model="model.ltdgrp.avb.pts.adrblk"
          maxlength="35"
          show-word-limit
          placeholder="请输入Address Block"
        ></c-input>
      </el-form-item>
    </c-col> -->

        <c-col :span="24">
          <el-form-item label="Available by" prop="ltdgrp.rec.avbby">
            <c-select
              v-model="model.ltdgrp.rec.avbby"
              style="width: 100%"
              placeholder="请选择Available by"
              :code="codes.avbby"
            >
            </c-select>
          </el-form-item>
孟冬雪 committed
68
        </c-col>
孟冬雪 committed
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

        <c-col :span="24">
          <el-form-item
            label="Deferred Payment Details"
            prop="ltdgrp.blk.defdet"
          >
            <c-input
              type="textarea"
              :rows="3"
              v-model="model.ltdgrp.blk.defdet"
              maxlength="35"
              show-word-limit
              placeholder="请输入Deferred Payment Details"
            ></c-input>
          </el-form-item>
孟冬雪 committed
84
        </c-col>
孟冬雪 committed
85 86 87 88 89 90 91 92 93 94 95 96

        <c-col :span="24">
          <el-form-item label="Drafts at" prop="ltdgrp.blk.dftat">
            <c-input
              type="textarea"
              :rows="3"
              v-model="model.ltdgrp.blk.dftat"
              maxlength="35"
              show-word-limit
              placeholder="请输入Drafts at"
            ></c-input>
          </el-form-item>
孟冬雪 committed
97
        </c-col>
孟冬雪 committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111

        <c-col :span="24">
          <c-ptap
            :model="model"
            :argadr="{
              title: '汇票申请人',
              grp: 'ltdgrp',
              rol: 'drw',
            }"
            :noRef="true"
            @onSeainf="onSeainf"
            @onAplpDet="onDrwpDet"
          >
          </c-ptap>
孟冬雪 committed
112
        </c-col>
孟冬雪 committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126
      </c-col>

      <c-col :span="11" :offset="1">
        <c-col :span="24">
          <el-form-item label="Mixed Payment Details" prop="ltdgrp.blk.mixdet">
            <c-input
              type="textarea"
              :rows="4"
              v-model="model.ltdgrp.blk.mixdet"
              maxlength="35"
              show-word-limit
              placeholder="请输入Mixed Payment Details"
            ></c-input>
          </el-form-item>
孟冬雪 committed
127
        </c-col>
孟冬雪 committed
128 129 130 131 132 133 134 135 136

        <!-- Days of presentation period -->
        <c-col :span="24">
          <el-form-item label="Days of pre.period" prop="ltdgrp.rec.prepers18">
            <c-input
              v-model="model.ltdgrp.rec.prepers18"
              placeholder="请输入Days of presentation period"
            ></c-input>
          </el-form-item>
孟冬雪 committed
137
        </c-col>
孟冬雪 committed
138 139 140 141 142 143 144 145 146 147 148

        <c-col :span="24">
          <el-form-item label="Presentation Period" prop="ltdgrp.blk.preper">
            <c-input
              type="textarea"
              v-model="model.ltdgrp.blk.preper"
              maxlength="35"
              show-word-limit
              placeholder="请输入Presentation Period"
            ></c-input>
          </el-form-item>
孟冬雪 committed
149
        </c-col>
孟冬雪 committed
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174

        <!-- Additional Details to Code for Charges CHATO -->
        <c-col :span="24">
          <el-form-item
            label="Additional Details to Code for Charges CHATO"
            prop="ltdgrp.blk.feetxt"
          >
            <c-input
              type="textarea"
              :rows="6"
              v-model="model.ltdgrp.blk.feetxt"
              maxlength="35"
              show-word-limit
              placeholder="请输入Additional Details to Code for Charges CHATO"
            ></c-input>
          </el-form-item>
        </c-col>

        <!-- Own Charges Borne by -->
        <c-col :span="18">
          <el-form-item label="Own Charges Borne by" prop="ltdgrp.rec.chato">
            <c-select
              v-model="model.ltdgrp.rec.chato"
              style="width: 100%"
              placeholder="请选择Own Charges Borne by"
孟冬雪 committed
175
              :code="codes.chato"
孟冬雪 committed
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
            >
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="18">
          <el-form-item label="Country or region Code" prop="ltdgrp.rec.stacty">
            <c-select
              v-model="model.ltdgrp.rec.stacty"
              style="width: 100%"
              placeholder="请选择Country or region Code"
            >
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="18">
          <el-form-item label="Maximum Tenor" prop="ltdgrp.rec.tenmaxday">
            <c-input
              v-model="model.ltdgrp.rec.tenmaxday"
              placeholder="请输入Maximum Tenor"
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
    </c-row>

    <c-row>
      <!-- Dispatch from -->
      <c-col :span="11">
孟冬雪 committed
206
        <el-form-item label="Dispatch from" prop="ltdgrp.rec.shpfro">
孟冬雪 committed
207 208 209 210 211 212 213 214
          <c-input
            type="textarea"
            :rows="3"
            show-word-limit
            v-model="model.ltdgrp.rec.shpfro"
            maxlength="65"
            placeholder="请输入Dispatch from"
          ></c-input>
孟冬雪 committed
215
        </el-form-item>
孟冬雪 committed
216 217 218
      </c-col>

      <c-col :span="11" :offset="1">
孟冬雪 committed
219
        <el-form-item label="Air-/Port of Departure" prop="ltdgrp.rec.porloa">
孟冬雪 committed
220 221 222 223 224 225 226 227
          <c-input
            type="textarea"
            :rows="3"
            v-model="model.ltdgrp.rec.porloa"
            maxlength="65"
            show-word-limit
            placeholder="请输入Air-/Port of Departure"
          ></c-input>
孟冬雪 committed
228
        </el-form-item>
孟冬雪 committed
229 230 231
      </c-col>

      <c-col :span="11">
孟冬雪 committed
232
        <el-form-item label="Air-/Port of Destination" prop="ltdgrp.rec.pordis">
孟冬雪 committed
233 234 235 236 237 238 239 240
          <c-input
            type="textarea"
            :rows="3"
            v-model="model.ltdgrp.rec.pordis"
            maxlength="65"
            show-word-limit
            placeholder="Air-/Port of Destination"
          ></c-input>
孟冬雪 committed
241
        </el-form-item>
孟冬雪 committed
242 243 244 245
      </c-col>

      <!-- Final Destination -->
      <c-col :span="11" :offset="1">
孟冬雪 committed
246
        <el-form-item label="Final Destination" prop="ltdgrp.rec.shpto">
孟冬雪 committed
247 248 249 250 251 252 253 254
          <c-input
            type="textarea"
            :rows="3"
            v-model="model.ltdgrp.rec.shpto"
            maxlength="65"
            show-word-limit
            placeholder="请输入Final Destination"
          ></c-input>
孟冬雪 committed
255
        </el-form-item>
孟冬雪 committed
256 257 258 259
      </c-col>

      <!-- Shipment Period -->
      <c-col :span="11">
孟冬雪 committed
260
        <el-form-item label="Shipment Period" prop="ltdgrp.blk.shpper">
孟冬雪 committed
261 262 263 264 265 266 267 268
          <c-input
            type="textarea"
            :rows="3"
            v-model="model.ltdgrp.blk.shpper"
            maxlength="65"
            show-word-limit
            placeholder="请输入Shipment Period"
          ></c-input>
孟冬雪 committed
269
        </el-form-item>
孟冬雪 committed
270 271
      </c-col>
    </c-row>
孟冬雪 committed
272 273 274
  </div>
</template>
<script>
孟冬雪 committed
275
import Api from "~/service/Api";
wangren committed
276
import commonProcess from "~/mixin/commonProcess";
孟冬雪 committed
277 278
import CodeTable from "~/config/CodeTable";
import Ptap from "~/views/Public/Ptap";
孟冬雪 committed
279
import Event from "~/model/Lttame/Event";
孟冬雪 committed
280 281

export default {
孟冬雪 committed
282 283 284
  inject: ["root"],
  components: { "c-ptap": Ptap },
  props: ["model", "codes"],
wangren committed
285
  mixins: [commonProcess],
孟冬雪 committed
286 287 288 289 290
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
孟冬雪 committed
291
  watch: {},
孟冬雪 committed
292
};
孟冬雪 committed
293 294 295
</script>
<style>
</style>