Canp.vue 5.35 KB
Newer Older
潘际乾 committed
1 2
<template>
  <div class="eibs-tab">
huangxin 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 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 141 142 143 144 145 146 147 148
    <c-col :span="24">
      <!-- ---------------Left--------------- -->
      <c-col :span="12">
        <c-col :span="24">
          <el-form-item label="Import L/C Ref." prop="lidgrp.rec.ownref">
            <c-fullbox>
              <c-input
                v-model="model.lidgrp.rec.ownref"
                maxlength="16"
                placeholder=""
                disabled
              ></c-input>
              <template slot="footer">
                <c-button
                  style="margin: 0 10px 0 10px; padding: 0 12px"
                  size="small"
                  type="primary"
                >
                  <span style="font-family: '宋体'; font-weight: bold">i</span>
                </c-button>
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="SG Reference" prop="brdgrp.rec.shgref">
            <c-input
            disabled
              v-model="model.brdgrp.rec.shgref"
              maxlength="16"
              placeholder="请输入SG Reference"
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
                    <el-form-item label="Bill Set Reference" prop="brdgrp.rec.ownref">
                        <c-fullbox>
                            <c-input
                                v-model="model.brdgrp.rec.ownref"
                                maxlength="16"
                                placeholder="请输入单据参考号"
                                disabled
                            ></c-input>
                            <template slot="footer">
                                <c-button
                                    style="
                                        margin: 0 10px 0 10px;
                                        padding: 0 12px;
                                    "
                                    size="small"
                                    type="primary"
                                >
                                    <span
                                        style="
                                            font-family: '宋体';
                                            font-weight: bold;
                                        "
                                        >i</span
                                    >
                                </c-button>
                            </template>
                        </c-fullbox>
                    </el-form-item>
                </c-col>
      </c-col>
      <!-- ---------------Right--------------- -->
      <c-col :span="12">
        <c-col :span="10">
          <el-form-item label="Open Amt.L/C" prop="lidgrp.cbs.opn1.cur">
            <c-select
              v-model="model.lidgrp.cbs.opn1.cur"
              style="width: 100%"
              placeholder=""
              :code="codes.cur"
              disabled
            >
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="14">
          <c-form-item label="" label-width="5px" prop="lidgrp.cbs.opn1.amt">
            <c-input
              v-model="model.lidgrp.cbs.opn1.amt"
              placeholder=""
              disabled
            ></c-input>
          </c-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="Expiry" prop="lidgrp.rec.expdat">
            <c-date-picker
            disabled
              type="date"
              v-model="model.lidgrp.rec.expdat"
              style="width: 100%"
              placeholder="请选择Date of Expiry"
            ></c-date-picker>
          </el-form-item>
        </c-col>

        <c-col :span="24">
      <el-form-item label="Name" prop="brdgrp.rec.nam">
        <c-input
        disabled
          v-model="model.brdgrp.rec.nam"
          maxlength="40"
          placeholder="请输入Name of Bill Contract"
        ></c-input>
      </el-form-item>
    </c-col>
      </c-col>
    </c-col>

<!-- ----------------------------------------------------------------- -->
            <c-col :span="24">
            <c-litTemp
                :model="model"
                :argadr="{
                    title: '',
                    trans: 'brdgrp',
                    trans1:'brtp0',
                }"
                :rol="[
                    {
                        title: 'Applicant',
                        trans: 'apl',
                    },
                    {
                        title: 'Beneficiary',
                        trans: 'ben',
                    },
                    {
                        title: 'Presenting Bank',
                        trans: 'prb',
                    },
                ]"
                :isAdvdat="true"
                :isMattxtlab="false"
                :isTenmaxday="false"
            >
            </c-litTemp>
        </c-col>
潘际乾 committed
149 150 151
  </div>
</template>
<script>
huangxin committed
152
import Api from "~/service/Api";
潘际乾 committed
153
import commonProcess from "~/mixin/commonProcess";
huangxin committed
154 155 156
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Brtcsg/Event";
import LitTemp from "~/views/Public/LitTemp";
潘际乾 committed
157 158

export default {
huangxin committed
159 160 161 162 163
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  components: {
        "c-litTemp": LitTemp,
潘际乾 committed
164
    },
huangxin committed
165 166 167 168 169 170
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
潘际乾 committed
171 172 173
</script>
<style>
</style>