Canp.vue 5.04 KB
Newer Older
潘际乾 committed
1
<template>
2
  <div class="eibs">
3 4
   
       <!-- ======================= 左边 ========================= -->
huangxin committed
5
      <c-col :span="12">
6
      <c-col :span="12" style="padding-right: 20px;" >
huangxin committed
7
        <c-col :span="24">
8 9 10 11 12
          <el-form-item 
          label="信用证编号" 
          prop="lidgrp.rec.ownref"
          style="width:100%"
          >
huangxin committed
13 14 15 16 17 18 19 20 21
            <c-fullbox>
              <c-input
                v-model="model.lidgrp.rec.ownref"
                maxlength="16"
                placeholder=""
                disabled
              ></c-input>
              <template slot="footer">
                <c-button
22 23 24 25 26 27 28
                    style="margin: 0 0"
                    size="small"
                    type="primary"
                   
                    icon="el-icon-info"
                  >
                  </c-button>
huangxin committed
29 30 31 32 33 34
              </template>
            </c-fullbox>
          </el-form-item>
        </c-col>

        <c-col :span="24">
35
          <el-form-item label="提货担保编号" prop="brdgrp.rec.shgref">
huangxin committed
36 37 38 39
            <c-input
            disabled
              v-model="model.brdgrp.rec.shgref"
              maxlength="16"
wangna committed
40
              placeholder="请输入提货担保编号"
huangxin committed
41 42 43 44 45
            ></c-input>
          </el-form-item>
        </c-col>

        <c-col :span="24">
46
                    <el-form-item label="单据编号" prop="brdgrp.rec.ownref">
huangxin committed
47 48 49 50 51 52 53 54
                        <c-fullbox>
                            <c-input
                                v-model="model.brdgrp.rec.ownref"
                                maxlength="16"
                                placeholder="请输入单据参考号"
                                disabled
                            ></c-input>
                            <template slot="footer">
55 56 57 58 59 60 61 62
                              <c-button
                    style="margin: 0 0"
                    size="small"
                    type="primary"
                   
                    icon="el-icon-info"
                  >
                  </c-button>
huangxin committed
63 64 65 66 67
                            </template>
                        </c-fullbox>
                    </el-form-item>
                </c-col>
      </c-col>
68
     <!-- ======================= 右边 ========================= -->
69
      <c-col :span="12" style="padding-left: 20px;">
huangxin committed
70
        <c-col :span="10">
71
          <el-form-item label="开证金额" prop="lidgrp.cbs.opn1.cur">
huangxin committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
            <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">
94
          <el-form-item label="生效日期" prop="lidgrp.rec.expdat">
huangxin committed
95 96 97 98 99
            <c-date-picker
            disabled
              type="date"
              v-model="model.lidgrp.rec.expdat"
              style="width: 100%"
100
              placeholder="请选择日期"
huangxin committed
101 102 103 104 105
            ></c-date-picker>
          </el-form-item>
        </c-col>

        <c-col :span="24">
106
      <el-form-item label="简略信息" prop="brdgrp.rec.nam">
huangxin committed
107 108 109 110
        <c-input
        disabled
          v-model="model.brdgrp.rec.nam"
          maxlength="40"
wangna committed
111
          placeholder="请输入简略信息"
huangxin committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
        ></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="[
                    {
129
                        title: '申请人',
huangxin committed
130 131 132
                        trans: 'apl',
                    },
                    {
133
                        title: '受益人',
huangxin committed
134 135 136
                        trans: 'ben',
                    },
                    {
137
                        title: '交单行',
huangxin committed
138 139 140 141 142 143 144 145 146
                        trans: 'prb',
                    },
                ]"
                :isAdvdat="true"
                :isMattxtlab="false"
                :isTenmaxday="false"
            >
            </c-litTemp>
        </c-col>
147
    
潘际乾 committed
148 149 150
  </div>
</template>
<script>
huangxin committed
151
import Api from "~/service/Api";
潘际乾 committed
152
import commonProcess from "~/mixin/commonProcess";
huangxin committed
153 154 155
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Brtcsg/Event";
import LitTemp from "~/views/Public/LitTemp";
潘际乾 committed
156 157

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