Gitsetp1.vue 10 KB
Newer Older
panziyi committed
1
<template>
闫泽浩 committed
2
  <div class="eibs">
panziyi committed
3
    <c-col :span="11">
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 26 27 28 29 30 31 32
          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"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </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 56 57 58 59 60 61
          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"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </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 103 104 105 106 107 108 109 110
          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"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </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 133 134 135 136 137 138 139
        </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"
            placeholder="请输入信用证金额"
            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 185 186 187 188 189 190 191
          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"
            placeholder="请输入"
            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 230
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
panziyi committed
231
    <c-col :span="11" :offset="1">
panziyi committed
232 233
      <c-col :span="12">
        <c-form-item
wangna committed
234
          label="保函金额余额"
panziyi committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
          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"
            placeholder="请输入信用证金额"
            disabled
          ></c-input-currency>
        </c-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
270
        <el-form-item label="简略信息" prop="gcdgrp.rec.nam">
panziyi committed
271 272 273
          <c-input
            v-model="model.gcdgrp.rec.nam"
            maxlength="40"
wangna committed
274
            placeholder="请输入简略信息"
panziyi committed
275 276 277 278 279 280
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
281
        <el-form-item label="申请人参考号" prop="gcdgrp.apl.pts.ref">
panziyi committed
282 283 284
          <c-input
            v-model="model.gcdgrp.apl.pts.ref"
            maxlength="16"
wangna committed
285
            placeholder="请输入申请人参考号"
panziyi committed
286 287 288 289 290
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
291
        <el-form-item label="当事人姓名" prop="gcdgrp.apl.pts.nam">
panziyi committed
292 293 294
          <c-input
            v-model="model.gcdgrp.apl.pts.nam"
            maxlength="40"
wangna committed
295
            placeholder="请输入"
panziyi committed
296 297 298 299 300
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
wangna committed
301
        <el-form-item label="受益人参考号" prop="gcdgrp.ben.pts.ref">
panziyi committed
302 303 304 305
          <c-input
            v-model="model.gcdgrp.ben.pts.ref"
            maxlength="16"
            disabled
wangna committed
306
            placeholder="请输入受益人参考号"
panziyi committed
307 308 309 310
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
311
        <el-form-item label="受益人姓名" prop="gcdgrp.ben.pts.nam">
panziyi committed
312 313 314 315 316 317 318 319 320
          <c-input
            v-model="model.gcdgrp.ben.pts.nam"
            maxlength="40"
            placeholder="请输入"
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
panziyi committed
321 322 323 324 325 326

    <c-col :span="24" style="height: 0px">
      <el-divider></el-divider>
    </c-col>
    <c-col :span="11" style="margin-top: 15px">
      <c-col :span="24">
wangna committed
327
        <el-form-item label="预订程序" prop="rebkpflg">
panziyi committed
328 329 330
          <c-select
            v-model="model.rebkpflg"
            style="width: 100%"
wangna committed
331
            placeholder="请选择预订程序"
panziyi committed
332
            ><el-option
panziyi committed
333
              v-for="item in codes.rebkpflg2"
panziyi committed
334 335 336 337 338 339 340 341
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>
panziyi committed
342
    </c-col>
panziyi committed
343 344 345 346 347 348 349 350 351 352 353 354 355
  </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
356
    return {};
panziyi committed
357 358 359 360 361 362 363
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>