Canp.vue 4.8 KB
Newer Older
WH 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 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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
<template>
  <div class="eibs">
   
       <!-- ======================= 左边 ========================= -->
      <c-col :span="12">
      <c-col :span="12" style="padding-right: 20px;" >
        <c-col :span="24">
          <el-form-item 
          label="信用证编号" 
          prop="lidgrp.rec.ownref"
          style="width:100%"
          >
            <c-fullbox>
              <c-input
                v-model="model.lidgrp.rec.ownref"
                maxlength="16"
                placeholder=""
                disabled
              ></c-input>
              <template slot="footer">
                <c-button
                    style="margin: 0 0"
                    size="small"
                    type="primary"
                   
                    icon="el-icon-info"
                  >
                  </c-button>
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
          <el-form-item label="提货担保编号" prop="brdgrp.rec.shgref">
            <c-input
            disabled
              v-model="model.brdgrp.rec.shgref"
              maxlength="16"
              placeholder="请输入提货担保编号"
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
                    <el-form-item label="单据编号" 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 0"
                    size="small"
                    type="primary"
                   
                    icon="el-icon-info"
                  >
                  </c-button>
                            </template>
                        </c-fullbox>
                    </el-form-item>
                </c-col>
      </c-col>
     <!-- ======================= 右边 ========================= -->
      <c-col :span="12" style="padding-left: 20px;">
        <c-col :span="10">
          <el-form-item label="开证金额" 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="生效日期" prop="lidgrp.rec.expdat">
            <c-date-picker
            disabled
              type="date"
              v-model="model.lidgrp.rec.expdat"
              style="width: 100%"
              placeholder="请选择日期"
            ></c-date-picker>
          </el-form-item>
        </c-col>

        <c-col :span="24">
      <el-form-item label="简略信息" prop="brdgrp.rec.nam">
        <c-input
        disabled
          v-model="model.brdgrp.rec.nam"
          maxlength="40"
          placeholder="请输入简略信息"
        ></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: '申请人',
                        trans: 'apl',
                    },
                    {
                        title: '受益人',
                        trans: 'ben',
                    },
                    {
                        title: '交单行',
                        trans: 'prb',
                    },
                ]"
                :isAdvdat="true"
                :isMattxtlab="false"
                :isTenmaxday="false"
            >
            </c-litTemp>
        </c-col>
    
  </div>
</template>
<script>
import event from "../event";
import LitTemp from "./LitTemp";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  components: {
        "c-litTemp": LitTemp,
    },
  data() {
    return {};
  },
  methods: {},
  created: function () {},
};
</script>
<style>
</style>