Brlip.vue 3.35 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
zhengxiaokui committed
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 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
    <el-col :span="12">
      <el-form-item label="信用证概要" prop="didgrp.rec.nam">
        <c-input
          v-model="model.didgrp.rec.nam"
          maxlength="40"
          placeholder="请输入Externally Displayed Name to Identify the Contract"
        ></c-input>
      </el-form-item>
    </el-col>

    <el-col :span="6">
      <el-form-item label="信用证金额" prop="didgrp.cbs.nom1.cur">
        <c-select v-model="model.didgrp.cbs.nom1.cur" placeholder="币种">
          <el-option
            v-for="item in codes.cur"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
        </c-select>
      </el-form-item>
    </el-col>
    <el-col :span="6">
      <el-form-item
        label=""
        label-width="-20px !important"
        prop="didgrp.cbs.nom1.amt"
      >
        <c-input
          v-model="model.didgrp.cbs.nom1.amt"
          placeholder="请输入信用证金额"
        ></c-input>
      </el-form-item>
    </el-col>

    <el-col :span="12">
      <el-form-item label="指定银行" prop="didgrp.avbnam">
        <c-input
          v-model="model.didgrp.avbnam"
          maxlength="40"
          placeholder="请输入指定银行"
        ></c-input>
      </el-form-item>
    </el-col>

    <el-col :span="12">
      <el-form-item label="兑付方式" prop="didgrp.rec.avbby">
        <c-select
          v-model="model.didgrp.rec.avbby"
          style="width: 100%"
          placeholder="请选择兑付方式"
        >
        </c-select>
      </el-form-item>
    </el-col>

    <el-col :span="12">
      <span v-text="model.bdtp.zchday" data-path=".bdtp.zchday"> </span>
    </el-col>

    <el-col :span="12">
      <el-form-item label="Shipment Date" prop="didgrp.rec.shpdat">
        <c-date-picker
          type="date"
          v-model="model.didgrp.rec.shpdat"
          style="width: 100%"
          placeholder="请选择Shipment Date"
        ></c-date-picker>
      </el-form-item>
    </el-col>

    <el-col :span="12">
      <el-form-item label="开证日期" prop="didgrp.rec.opndat">
        <c-date-picker
          type="date"
          v-model="model.didgrp.rec.opndat"
          style="width: 100%"
          placeholder="请选择开证日期"
        ></c-date-picker>
      </el-form-item>
    </el-col>

    <el-col :span="12">
      <el-form-item label="到期日/到期地点">
        <c-input
          type="textarea"
          v-model="model.didgrp.rec.expplc"
          maxlength="35"
          show-word-limit
          placeholder="请输入到期日/到期地点"
        ></c-input>
      </el-form-item>
    </el-col>

    <el-col :span="12">
      <el-form-item label="信用证类型" prop="didgrp.rec.lcrtyp">
        <c-select
          v-model="model.didgrp.rec.lcrtyp"
          style="width: 100%"
          placeholder="请选择信用证类型"
        >
        </c-select>
      </el-form-item>
    </el-col>
zhengxiaokui committed
108 109 110
  </div>
</template>
<script>
zhengxiaokui committed
111
import Api from "~/service/Api";
zhengxiaokui committed
112
import CommonProcess from "~/mixin/CommonProcess";
zhengxiaokui committed
113 114
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bdtudp/Event";
zhengxiaokui committed
115 116

export default {
zhengxiaokui committed
117 118 119 120 121 122 123 124 125
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [CommonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
126 127 128
</script>
<style>
</style>