Gitsetp1.vue 9.82 KB
Newer Older
panziyi committed
1
<template>
闫泽浩 committed
2
  <div class="eibs">
3
    <c-col :span="12" style="padding-right: 20px">
wangna committed
4 5 6 7
      <c-col
        :span="16"
        v-if="model.gidgrp.rec.expflg == 'X' || model.gidgrp.rec.expdat != ''"
      >
panziyi committed
8
        <el-form-item
wangna committed
9
          label="保函编号"
panziyi committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
          prop="gidgrp.rec.ownref"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              v-model="model.gidgrp.rec.ownref"
              placeholder="请输入"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin: 0 0 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click="onSeainf"
              >
nanrui committed
26
                <i class="el-icon-info"></i>
panziyi committed
27 28 29 30 31 32
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

wangna committed
33 34 35 36
      <c-col
        :span="24"
        v-if="model.gidgrp.rec.expflg != 'X' && model.gidgrp.rec.expdat == ''"
      >
panziyi committed
37
        <el-form-item
wangna committed
38
          label="保函编号"
panziyi committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
          prop="gidgrp.rec.ownref"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              v-model="model.gidgrp.rec.ownref"
              maxlength="8"
              placeholder="请输入"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin: 0 0 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click="onSeainf"
              >
nanrui committed
56
                <i class="el-icon-info"></i>
panziyi committed
57 58 59 60 61
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>
wangna committed
62 63
      <c-col :span="8" v-if="model.gidgrp.rec.expflg == 'X'">
        <el-form-item style="margin-left: 20px" label="我行责任敞口">
panziyi committed
64 65 66
        </el-form-item>
      </c-col>

wangna committed
67
      <c-col :span="8" v-if="model.gidgrp.rec.expdat != ''">
panziyi committed
68
        <el-form-item
wangna committed
69
          label="保函效期"
panziyi committed
70
          label-width="50px"
wangna committed
71
          prop="gidgrp.rec.expdat"
panziyi committed
72 73 74 75 76 77
        >
          <c-date-picker
            type="date"
            v-model="model.gidgrp.rec.expdat"
            disabled
            style="width: 100%"
wangna committed
78
            placeholder="请选择保函效期"
panziyi committed
79 80 81 82
          ></c-date-picker>
        </el-form-item>
      </c-col>

panziyi committed
83 84
      <c-col :span="24">
        <el-form-item
wangna committed
85
          label="索赔编号"
panziyi committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
          prop="gcdgrp.rec.ownref"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              v-model="model.gcdgrp.rec.ownref"
              placeholder="请输入"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                v-model="model.gctp0.recget.sdamod.seainf"
                style="margin: 0 0 0 10px; padding: 0 12px"
                size="small"
                type="primary"
                @click="onSeainf"
              >
nanrui committed
103
                <i class="el-icon-info"></i>
panziyi committed
104 105 106 107 108 109 110
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>
      <c-col :span="11">
        <c-form-item
wangna committed
111
          label="索赔金额"
panziyi committed
112 113 114
          prop="gcdgrp.cbs.max.cur"
          previewLabel="信用证币种"
        >
panziyi committed
115 116 117 118
          <c-input
            v-model="model.gcdgrp.cbs.max.cur"
            maxlength="3"
            disabled
wangna committed
119
            placeholder="请输入索赔金额"
panziyi committed
120
          ></c-input>
panziyi committed
121 122 123 124 125 126 127 128 129 130 131 132
        </c-form-item>
      </c-col>

      <c-col :span="8">
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gcdgrp.cbs.max.amt"
        >
          <c-input-currency
            v-model="model.gcdgrp.cbs.max.amt"
133
            placeholder="请输入索赔金额"
panziyi committed
134 135 136 137 138 139
            disabled
          ></c-input-currency>
        </c-form-item>
      </c-col>

      <c-col :span="5">
panziyi committed
140 141 142 143 144 145 146 147 148
        <c-checkbox
          v-model="model.gctp0.gctp0"
          style="
            margin-left: 18px;
            height: 32px;
            line-height: 32px;
            padding-bottom: 2px;
          "
          disabled
wangna committed
149
          >附加金额</c-checkbox
panziyi committed
150
        >
panziyi committed
151
      </c-col>
wangna committed
152

panziyi committed
153 154
      <c-col :span="11">
        <c-form-item
wangna committed
155
          label="保函余额"
panziyi committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
          prop="gcdgrp.cbs.opn1.cur"
          previewLabel="信用证币种"
        >
          <c-select
            v-model="model.gcdgrp.cbs.opn1.cur"
            placeholder=""
            style="width: 100%"
            disabled
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </c-form-item>
      </c-col>

      <c-col :span="8">
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gcdgrp.cbs.opn1.amt"
        >
          <c-input-currency
            v-model="model.gcdgrp.cbs.opn1.amt"
185
            placeholder="请输入保函余额"
panziyi committed
186 187 188 189 190 191
            disabled
          ></c-input-currency>
        </c-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
192
        <el-form-item label="保函种类" prop="gidgrp.rec.gartyp">
panziyi committed
193
          <c-select
panziyi committed
194
            disabled
panziyi committed
195 196
            v-model="model.gidgrp.rec.gartyp"
            style="width: 100%"
wangna committed
197
            placeholder="请选择保函种类"
panziyi committed
198
            :code="codes.typgar2"
panziyi committed
199 200 201 202
          >
          </c-select>
        </el-form-item>
      </c-col>
panziyi committed
203

wangna committed
204 205
      <c-col :span="24" v-if="model.gidgrp.rec.liadat == 'X'">
        <el-form-item label="我行责任敞口"> </el-form-item>
panziyi committed
206
      </c-col>
wangna committed
207 208

      <c-col :span="24" v-if="model.gidgrp.rec.liadat != ''">
wangna committed
209
        <el-form-item label="责任截至日" prop="gidgrp.rec.liadat">
wangna committed
210 211 212 213 214 215 216
          <c-date-picker
            type="date"
            v-model="model.gidgrp.rec.liadat"
            disabled
            style="width: 100%"
            placeholder="请选择责任截至日"
          ></c-date-picker>
panziyi committed
217
        </el-form-item>
wangna committed
218
      </c-col>
panziyi committed
219

panziyi committed
220
      <c-col :span="24">
wangna committed
221
        <el-form-item label="索赔日期" prop="gcdgrp.rec.clmdat">
panziyi committed
222 223 224 225
          <c-input
            v-model="model.gcdgrp.rec.clmdat"
            maxlength="40"
            disabled
wangna committed
226
            placeholder="请输入索赔日期"
panziyi committed
227 228 229
          ></c-input>
        </el-form-item>
      </c-col>
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246

      <c-col :span="24">
        <el-form-item label="预订程序" prop="rebkpflg">
          <c-select
            v-model="model.rebkpflg"
            style="width: 100%"
            placeholder="请选择预订程序"
            ><el-option
              v-for="item in codes.rebkpflg2"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>
panziyi committed
247
    </c-col>
248
    <c-col :span="12" style="padding-left: 20px">
panziyi committed
249 250
      <c-col :span="12">
        <c-form-item
wangna committed
251
          label="保函金额余额"
panziyi committed
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
          prop="gidgrp.cbs.opn1.cur"
          previewLabel="信用证币种"
        >
          <c-select
            v-model="model.gidgrp.cbs.opn1.cur"
            placeholder=""
            style="width: 100%"
            disabled
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </c-form-item>
      </c-col>
      <c-col :span="12">
        <c-form-item
          previewLabel="信用证金额"
          style="text-align: left"
          label-width="5px"
          prop="gidgrp.cbs.opn1.amt"
        >
          <c-input-currency
            v-model="model.gidgrp.cbs.opn1.amt"
280
            placeholder="请输入保函金额余额"
panziyi committed
281 282 283 284 285 286
            disabled
          ></c-input-currency>
        </c-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
287
        <el-form-item label="简略信息" prop="gcdgrp.rec.nam">
panziyi committed
288 289 290
          <c-input
            v-model="model.gcdgrp.rec.nam"
            maxlength="40"
wangna committed
291
            placeholder="请输入简略信息"
panziyi committed
292 293 294 295 296 297
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
298
        <el-form-item label="申请人参考号" prop="gcdgrp.apl.pts.ref">
panziyi committed
299 300 301
          <c-input
            v-model="model.gcdgrp.apl.pts.ref"
            maxlength="16"
wangna committed
302
            placeholder="请输入申请人参考号"
panziyi committed
303 304 305 306 307
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
308
        <el-form-item label="当事人姓名" prop="gcdgrp.apl.pts.nam">
panziyi committed
309 310 311
          <c-input
            v-model="model.gcdgrp.apl.pts.nam"
            maxlength="40"
wangna committed
312
            placeholder="请输入"
panziyi committed
313 314 315 316 317
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
wangna committed
318
        <el-form-item label="受益人参考号" prop="gcdgrp.ben.pts.ref">
panziyi committed
319 320 321 322
          <c-input
            v-model="model.gcdgrp.ben.pts.ref"
            maxlength="16"
            disabled
wangna committed
323
            placeholder="请输入受益人参考号"
panziyi committed
324 325 326 327
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
328
        <el-form-item label="受益人姓名" prop="gcdgrp.ben.pts.nam">
panziyi committed
329 330 331 332 333 334 335 336 337
          <c-input
            v-model="model.gcdgrp.ben.pts.nam"
            maxlength="40"
            placeholder="请输入"
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
panziyi committed
338

panziyi committed
339 340 341 342 343 344 345 346 347 348 349 350 351
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gctcan/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
wangna committed
352
    return {};
panziyi committed
353 354 355 356 357 358 359
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>